diff --git a/init/ksh.in b/init/ksh.in deleted file mode 120000 index fc671d14f..000000000 --- a/init/ksh.in +++ /dev/null @@ -1 +0,0 @@ -bash.in \ No newline at end of file diff --git a/init/ksh.in b/init/ksh.in new file mode 100644 index 000000000..9e3f6c0f8 --- /dev/null +++ b/init/ksh.in @@ -0,0 +1,205 @@ +#!/bin/bash +# -*- shell-script -*- +# +######################################################################## +# Start Lmod BASHENV +######################################################################## + +if [ -z "${LMOD_SH_DBG_ON+x}" ]; then + case "$-" in + *v*x*) __lmod_vx='vx' ;; + *v*) __lmod_vx='v' ;; + *x*) __lmod_vx='x' ;; + esac; +fi + +[ -n "${__lmod_vx:-}" ] && set +$__lmod_vx + +if [ -n "${__lmod_vx:-}" ]; then + echo "Shell debugging temporarily silenced: export LMOD_SH_DBG_ON=1 for this output (@PKGV@/init/@my_shell@)" 1>&2 +fi + +# +# Prepend the FPATH variable for ksh functions when ssh is being used, +# except for zsh as it breaks things there. + + +if [ -n "${ZSH_VERSION+x}" -a -z "${__LMOD_SET_ZSH_FPATH+x}" ]; then + export __LMOD_SET_ZSH_FPATH=1 + zv=${ZSH_VERSION} + orig_zsh_version=@orig_zsh_version@ + zsh_fpath=@zsh_fpath@ + zsh_fpath=$(echo $zsh_fpath | sed -e "s|/$orig_zsh_version/|/$zv/|g" ) + export FPATH=$(@PKGV@/libexec/addto --append FPATH $zsh_fpath @PKGV@/init/ksh_funcs) + unset zv + unset orig_zsh_version + unset zsh_fpath +fi + +if [ -n "${KSH_VERSION+x}" -o -n "${BASH_VERSION+x}" ]; then + if [ -z "${__LMOD_SET_KSH_FPATH:-}" ]; then + export __LMOD_SET_KSH_FPATH=1 + export FPATH=$(@PKGV@/libexec/addto --append FPATH $FPATH @PKGV@/init/ksh_funcs) + fi +fi + +export LMOD_ROOT=@lmod_root@ +export LMOD_PKG=@PKGV@ +export LMOD_DIR=$LMOD_PKG/libexec +export LMOD_CMD=$LMOD_PKG/libexec/lmod +export MODULESHOME=$LMOD_PKG +export LMOD_SETTARG_FULL_SUPPORT=@lmod_settarg_full_support@ + +######################################################################## +# Define the module command: The first line runs the "lmod" command +# to generate text: +# export PATH="..." +# then the "eval" converts the text into changes in the current shell. +# +# The second command is the settarg command. Normally LMOD_SETTARG_CMD +# is undefined or is ":". Either way the eval does nothing. When the +# settarg module is loaded, it defines LMOD_SETTARG_CMD. The settarg +# command knows how to read the ModuleTable that Lmod maintains and +# generates a series of env. vars that describe the current state of +# loaded modules. So if one is on a x86_64 linux computer with gcc/4.7.2 +# and openmpi/1.6.3 loaded, then settarg will assign: +# +# TARG=_x86_64_gcc-4.7.2_openmpi-1.6.3 +# TARG_COMPILER=gcc-4.7.2 +# TARG_COMPILER_FAMILY=gcc +# TARG_MACH=x86_64 +# TARG_MPI=openmpi-1.6.3 +# TARG_MPI_FAMILY=openmpi +# TARG_SUMMARY=x86_64_gcc-4.7.2_openmpi-1.6.3 +# TARG_TITLE_BAR=gcc-4.7.2 O-1.6.3 +# TARG_TITLE_BAR_PAREN=(gcc-4.7.2 O-1.6.3) +# +# unloading openmpi/1.6.3 automatically changes these vars to be: +# +# TARG=_x86_64_gcc-4.6.3 +# TARG_COMPILER=gcc-4.6.3 +# TARG_COMPILER_FAMILY=gcc +# TARG_MACH=x86_64 +# TARG_SUMMARY=x86_64_gcc-4.6.3 +# TARG_TITLE_BAR=gcc-4.6.3 +# TARG_TITLE_BAR_PAREN=(gcc-4.6.3) +# +# See Lmod web site for more details. + + +if [ "@silence_shell_debugging@" = "no" ]; then + module() + { + ############################################################ + # Run Lmod and eval results + eval "$($LMOD_CMD @my_shell@ "$@")" && eval $(${LMOD_SETTARG_CMD:-:} -s sh) + } +else + module() + { + ############################################################ + # Silence shell debug UNLESS $LMOD_SH_DBG_ON has a value + if [ -z "${LMOD_SH_DBG_ON+x}" ]; then + case "$-" in + *v*x*) __lmod_sh_dbg='vx' ;; + *v*) __lmod_sh_dbg='v' ;; + *x*) __lmod_sh_dbg='x' ;; + esac; + fi + + if [ -n "${__lmod_sh_dbg:-}" ]; then + set +$__lmod_sh_dbg + echo "Shell debugging temporarily silenced: export LMOD_SH_DBG_ON=1 for Lmod's output" 1>&2 + fi + + ############################################################ + # Run Lmod and eval results + eval "$($LMOD_CMD shell "$@")" && eval "$(${LMOD_SETTARG_CMD:-:} -s sh)" + __lmod_my_status=$? + + ############################################################ + # Un-silence shell debug after module command + if [ -n "${__lmod_sh_dbg:-}" ]; then + echo "Shell debugging restarted" 1>&2 + set -$__lmod_sh_dbg; + fi; + unset __lmod_sh_dbg + return $__lmod_my_status + } +fi + + +LMOD_VERSION="@lmod_version@" +export LMOD_VERSION + +if [ "${LMOD_SETTARG_CMD:-:}" != ":" ]; then + settarg () { + eval $(${LMOD_SETTARG_CMD:-:} -s sh "$@" ) + } +fi + + +######################################################################## +# ml is a shorthand tool for people who can't type moduel, err, module +# It is also a combination command: +# ml -> module list +# ml gcc -> module load gcc +# ml -gcc intel -> module unload gcc; module load intel +# It does much more. Do: "ml --help" for more information. + + +unalias ml 2> /dev/null || true +ml() +{ + eval "$($LMOD_DIR/ml_cmd "$@")" +} + +if [ -n "${BASH_VERSION:-}" -a "@export_module@" != no ]; then + export -f module + export -f ml +fi +unset export_module + +######################################################################## +# clearMT removes the ModuleTable from your environment. It is rarely +# needed but it useful sometimes. + +clearMT() +{ + eval $($LMOD_DIR/clearLMOD_cmd --shell bash --simple) +} + +clearLmod() +{ + module --force purge + eval $($LMOD_DIR/clearLMOD_cmd --shell bash --full "$@") +} + +xSetTitleLmod() +{ + builtin echo -n -e "\033]2;$1\007"; +} + +######################################################################## +# Make tab completions available to bash users. + +if [ ${BASH_VERSINFO:-0} -ge 3 ] && [ -r @PKGV@/init/lmod_bash_completions ] && [ -n "${PS1:-}" ] && [ -z "${POSIXLY_CORRECT:-}" ]; then + . @PKGV@/init/lmod_bash_completions +fi + + +# Restoring XTRACE and VERBOSE states. +if [ -n "${__lmod_vx:-}" ]; then + echo "Shell debugging restarted" 1>&2 + set -$__lmod_vx; + unset __lmod_vx; +fi; + +######################################################################## +# End Lmod BASHENV +######################################################################## +# +# Local Variables: +# mode: shell-script +# indent-tabs-mode: nil +# End: diff --git a/init/tcsh.in b/init/tcsh.in deleted file mode 120000 index fd3d6ddf9..000000000 --- a/init/tcsh.in +++ /dev/null @@ -1 +0,0 @@ -csh.in \ No newline at end of file diff --git a/init/tcsh.in b/init/tcsh.in new file mode 100644 index 000000000..ee8f47653 --- /dev/null +++ b/init/tcsh.in @@ -0,0 +1,62 @@ +#!/bin/csh +setenv LMOD_ROOT "@lmod_root@" +setenv LMOD_PKG "@PKGV@" +setenv LMOD_CMD "$LMOD_PKG/libexec/lmod" +setenv LMOD_DIR "$LMOD_PKG/libexec" +setenv MODULESHOME "$LMOD_PKG" +setenv TARG_TITLE_BAR_PAREN " " +setenv LMOD_SETTARG_FULL_SUPPORT @lmod_settarg_full_support@ + +if ( ! $?LMOD_SETTARG_CMD ) then + setenv LMOD_SETTARG_CMD : +endif + +set SUPPORT_KSH = "@support_ksh@" + +if ( $SUPPORT_KSH == yes && ! $?__LMOD_SET_FPATH ) then + setenv __LMOD_SET_FPATH 1 + setenv FPATH `@PKGV@/libexec/addto FPATH @PKGV@/init/ksh_funcs` +endif + + +set prefix = "" +set midfix = "" +set postfix = "" +set merge = "&&" + +set histchar = \! +if ( $?histchars) then + set histchar = `echo $histchars | cut -c1` + if ( "$histchar" != '\!' ) then + set _histchars = $histchars + set prefix = 'set _histchars = $histchars; unset histchars;' + set midfix = '--localvar histchars=$_histchars' + set postfix = '&& set histchars = $_histchars' + endif +endif + +if ($?tcsh) then + alias module $prefix'eval `$LMOD_CMD tcsh '$midfix $histchar'*` '$postfix $merge' eval `$LMOD_SETTARG_CMD -s csh`' +else + alias module $prefix'eval `$LMOD_CMD csh '$midfix $histchar'*` '$postfix +endif +alias clearMT 'eval `'$LMOD_DIR/clearLMOD_cmd --shell csh --simple'`' +alias clearLmod module --force purge $merge 'eval `'$LMOD_DIR/clearLMOD_cmd --shell csh --full $histchar'*' '`' + +alias ml 'eval `'$LMOD_DIR/ml_cmd' '$histchar'*`' + +setenv LMOD_VERSION '@lmod_version@' + +unset SUPPORT_KSH +unset prefix +unset midfix +unset postfix +unset histchar +unset merge +set echo_style=both # this variable must be set for precmd in the settarg module to work! + +# Local Variables: +# mode: shell-script +# indent-tabs-mode: nil +# end: + diff --git a/init/zsh.in b/init/zsh.in deleted file mode 120000 index fc671d14f..000000000 --- a/init/zsh.in +++ /dev/null @@ -1 +0,0 @@ -bash.in \ No newline at end of file diff --git a/init/zsh.in b/init/zsh.in new file mode 100644 index 000000000..9e3f6c0f8 --- /dev/null +++ b/init/zsh.in @@ -0,0 +1,205 @@ +#!/bin/bash +# -*- shell-script -*- +# +######################################################################## +# Start Lmod BASHENV +######################################################################## + +if [ -z "${LMOD_SH_DBG_ON+x}" ]; then + case "$-" in + *v*x*) __lmod_vx='vx' ;; + *v*) __lmod_vx='v' ;; + *x*) __lmod_vx='x' ;; + esac; +fi + +[ -n "${__lmod_vx:-}" ] && set +$__lmod_vx + +if [ -n "${__lmod_vx:-}" ]; then + echo "Shell debugging temporarily silenced: export LMOD_SH_DBG_ON=1 for this output (@PKGV@/init/@my_shell@)" 1>&2 +fi + +# +# Prepend the FPATH variable for ksh functions when ssh is being used, +# except for zsh as it breaks things there. + + +if [ -n "${ZSH_VERSION+x}" -a -z "${__LMOD_SET_ZSH_FPATH+x}" ]; then + export __LMOD_SET_ZSH_FPATH=1 + zv=${ZSH_VERSION} + orig_zsh_version=@orig_zsh_version@ + zsh_fpath=@zsh_fpath@ + zsh_fpath=$(echo $zsh_fpath | sed -e "s|/$orig_zsh_version/|/$zv/|g" ) + export FPATH=$(@PKGV@/libexec/addto --append FPATH $zsh_fpath @PKGV@/init/ksh_funcs) + unset zv + unset orig_zsh_version + unset zsh_fpath +fi + +if [ -n "${KSH_VERSION+x}" -o -n "${BASH_VERSION+x}" ]; then + if [ -z "${__LMOD_SET_KSH_FPATH:-}" ]; then + export __LMOD_SET_KSH_FPATH=1 + export FPATH=$(@PKGV@/libexec/addto --append FPATH $FPATH @PKGV@/init/ksh_funcs) + fi +fi + +export LMOD_ROOT=@lmod_root@ +export LMOD_PKG=@PKGV@ +export LMOD_DIR=$LMOD_PKG/libexec +export LMOD_CMD=$LMOD_PKG/libexec/lmod +export MODULESHOME=$LMOD_PKG +export LMOD_SETTARG_FULL_SUPPORT=@lmod_settarg_full_support@ + +######################################################################## +# Define the module command: The first line runs the "lmod" command +# to generate text: +# export PATH="..." +# then the "eval" converts the text into changes in the current shell. +# +# The second command is the settarg command. Normally LMOD_SETTARG_CMD +# is undefined or is ":". Either way the eval does nothing. When the +# settarg module is loaded, it defines LMOD_SETTARG_CMD. The settarg +# command knows how to read the ModuleTable that Lmod maintains and +# generates a series of env. vars that describe the current state of +# loaded modules. So if one is on a x86_64 linux computer with gcc/4.7.2 +# and openmpi/1.6.3 loaded, then settarg will assign: +# +# TARG=_x86_64_gcc-4.7.2_openmpi-1.6.3 +# TARG_COMPILER=gcc-4.7.2 +# TARG_COMPILER_FAMILY=gcc +# TARG_MACH=x86_64 +# TARG_MPI=openmpi-1.6.3 +# TARG_MPI_FAMILY=openmpi +# TARG_SUMMARY=x86_64_gcc-4.7.2_openmpi-1.6.3 +# TARG_TITLE_BAR=gcc-4.7.2 O-1.6.3 +# TARG_TITLE_BAR_PAREN=(gcc-4.7.2 O-1.6.3) +# +# unloading openmpi/1.6.3 automatically changes these vars to be: +# +# TARG=_x86_64_gcc-4.6.3 +# TARG_COMPILER=gcc-4.6.3 +# TARG_COMPILER_FAMILY=gcc +# TARG_MACH=x86_64 +# TARG_SUMMARY=x86_64_gcc-4.6.3 +# TARG_TITLE_BAR=gcc-4.6.3 +# TARG_TITLE_BAR_PAREN=(gcc-4.6.3) +# +# See Lmod web site for more details. + + +if [ "@silence_shell_debugging@" = "no" ]; then + module() + { + ############################################################ + # Run Lmod and eval results + eval "$($LMOD_CMD @my_shell@ "$@")" && eval $(${LMOD_SETTARG_CMD:-:} -s sh) + } +else + module() + { + ############################################################ + # Silence shell debug UNLESS $LMOD_SH_DBG_ON has a value + if [ -z "${LMOD_SH_DBG_ON+x}" ]; then + case "$-" in + *v*x*) __lmod_sh_dbg='vx' ;; + *v*) __lmod_sh_dbg='v' ;; + *x*) __lmod_sh_dbg='x' ;; + esac; + fi + + if [ -n "${__lmod_sh_dbg:-}" ]; then + set +$__lmod_sh_dbg + echo "Shell debugging temporarily silenced: export LMOD_SH_DBG_ON=1 for Lmod's output" 1>&2 + fi + + ############################################################ + # Run Lmod and eval results + eval "$($LMOD_CMD shell "$@")" && eval "$(${LMOD_SETTARG_CMD:-:} -s sh)" + __lmod_my_status=$? + + ############################################################ + # Un-silence shell debug after module command + if [ -n "${__lmod_sh_dbg:-}" ]; then + echo "Shell debugging restarted" 1>&2 + set -$__lmod_sh_dbg; + fi; + unset __lmod_sh_dbg + return $__lmod_my_status + } +fi + + +LMOD_VERSION="@lmod_version@" +export LMOD_VERSION + +if [ "${LMOD_SETTARG_CMD:-:}" != ":" ]; then + settarg () { + eval $(${LMOD_SETTARG_CMD:-:} -s sh "$@" ) + } +fi + + +######################################################################## +# ml is a shorthand tool for people who can't type moduel, err, module +# It is also a combination command: +# ml -> module list +# ml gcc -> module load gcc +# ml -gcc intel -> module unload gcc; module load intel +# It does much more. Do: "ml --help" for more information. + + +unalias ml 2> /dev/null || true +ml() +{ + eval "$($LMOD_DIR/ml_cmd "$@")" +} + +if [ -n "${BASH_VERSION:-}" -a "@export_module@" != no ]; then + export -f module + export -f ml +fi +unset export_module + +######################################################################## +# clearMT removes the ModuleTable from your environment. It is rarely +# needed but it useful sometimes. + +clearMT() +{ + eval $($LMOD_DIR/clearLMOD_cmd --shell bash --simple) +} + +clearLmod() +{ + module --force purge + eval $($LMOD_DIR/clearLMOD_cmd --shell bash --full "$@") +} + +xSetTitleLmod() +{ + builtin echo -n -e "\033]2;$1\007"; +} + +######################################################################## +# Make tab completions available to bash users. + +if [ ${BASH_VERSINFO:-0} -ge 3 ] && [ -r @PKGV@/init/lmod_bash_completions ] && [ -n "${PS1:-}" ] && [ -z "${POSIXLY_CORRECT:-}" ]; then + . @PKGV@/init/lmod_bash_completions +fi + + +# Restoring XTRACE and VERBOSE states. +if [ -n "${__lmod_vx:-}" ]; then + echo "Shell debugging restarted" 1>&2 + set -$__lmod_vx; + unset __lmod_vx; +fi; + +######################################################################## +# End Lmod BASHENV +######################################################################## +# +# Local Variables: +# mode: shell-script +# indent-tabs-mode: nil +# End: diff --git a/my_docs/17/TACC_sysadmin_17/beamercolorthemeTACC.sty b/my_docs/17/TACC_sysadmin_17/beamercolorthemeTACC.sty deleted file mode 120000 index 8d27e673a..000000000 --- a/my_docs/17/TACC_sysadmin_17/beamercolorthemeTACC.sty +++ /dev/null @@ -1 +0,0 @@ -../../beamer/beamercolorthemeTACC.sty \ No newline at end of file diff --git a/my_docs/17/TACC_sysadmin_17/beamercolorthemeTACC.sty b/my_docs/17/TACC_sysadmin_17/beamercolorthemeTACC.sty new file mode 100755 index 000000000..78beb6a4a --- /dev/null +++ b/my_docs/17/TACC_sysadmin_17/beamercolorthemeTACC.sty @@ -0,0 +1,323 @@ +% Copyright 2003 by Till Tantau . +% +% This program can be redistributed and/or modified under the terms +% of the GNU Public License, version 2. + +\mode + +% I downloaded a gimp color palette from +% http://maururu.net/2007/latex-beamer-color-palette/ +% Which provides rgb values (I think) for several of the +% default beamer themes. You can open this in gimp by +% opening the Palettes dialog, right-clicking anywhere and choosing +% 'Import Palette'. A color in there called 'default added blue' +% appeared to be approximately what I wanted. It had the triple +% of values 141 145 208. If you double-click on this in the +% palette editor it gives you a bunch of information. You can't +% use these values directly to set a color...it just comes out white. +% I think definecolor is expecting something normalized by 255. Yes! + + +% bluish colors +\definecolor{defaddedblue}{rgb}{0.5529,.5686,.8157} % 141,145,208 +\definecolor{defblockheader}{rgb}{.1921,.2235,.6824} % 49,57,174 +\definecolor{flyaddedblue}{rgb}{.5961,.6118,.8431} % 152,156,215 + +% bluish-greys +\definecolor{beetleaddedblue1}{rgb}{.3333,.4039,.6196} % 85 103 158, dark +\definecolor{beetleaddedblue2}{rgb}{.4510,.5098,.7020} % 115 130 179, medium +\definecolor{beetleaddedblue3}{rgb}{.7059,.7255,.7961} % 180 185 203, light (greyest) + +% very light blue-greys +\definecolor{deflightouter1}{rgb}{.7608,.7647,.9020} % 194 195 230, dark +\definecolor{deflightouter2}{rgb}{.8 ,.8039,.9176} % 204 205 234, medium +\definecolor{deflightouter3}{rgb}{.8392,.8431,.9373} % 214 215 239, light + +% reddish colors +\definecolor{flyalertblockheader}{rgb}{.7373,.1294,.1333} % 188 33 34 +\definecolor{flyaddedred}{rgb}{.8667,.5647,.5647}% 221 144 144 +\definecolor{beaverouterframe}{rgb}{.5529,.0980,.0980}% 141 25 25 + +% greens (green is used for 'examples' in beamer) +\definecolor{defexblock}{rgb}{.9098,.9333,.9020} % 232 238 230, light +\definecolor{defaddedgreen}{rgb}{.5412,.6510,.4706} % 138 166 120, medium +\definecolor{defexblockheader}{rgb}{.1686,.3647,.0392} % 43 93 10, dark + +\definecolor{lightexblock}{rgb}{.9137,.9451,.9020} % 233 241 230, light +\definecolor{lightexblockheader}{rgb}{.8235,.8980,.8} % 210 229 204, medium +\definecolor{lightexblockheadertext}{rgb}{.2431,.5098,.0745} % 62 130 19, dark + + +%%% +% Set the normal text color +%%% +\setbeamercolor{normal text}{fg=black,bg=white} + +%%% +% Set the alerted text color +%%% +% \setbeamercolor{alerted text}{fg=red} +\setbeamercolor{alerted text}{fg=red!50!black} % half black/half red for green bg +% \setbeamercolor{alerted text}{fg=beaverouterframe} +% \setbeamercolor{alerted text}{fg=defblockheader} % doesn't stand out enough + + +% Set the 'example' text +\setbeamercolor{example text}{fg=green!50!black} + +\setbeamercolor{structure}{fg=black} + +\setbeamercolor{background canvas}{parent=normal text} +\setbeamercolor{background}{parent=background canvas} + +\setbeamercolor{palette primary}{use=structure,fg=structure.fg} +\setbeamercolor{palette secondary}{use=structure,fg=structure.fg!75!black} +\setbeamercolor{palette tertiary}{use=structure,fg=structure.fg!50!black} +\setbeamercolor{palette quaternary}{fg=black} + +\setbeamercolor{palette sidebar primary}{use=normal text,fg=normal text.fg} +\setbeamercolor{palette sidebar secondary}{use=structure,fg=structure.fg} +\setbeamercolor{palette sidebar tertiary}{use=normal text,fg=normal text.fg} +\setbeamercolor{palette sidebar quaternary}{use=structure,fg=structure.fg} + +\setbeamercolor{math text}{} +\setbeamercolor{math text inlined}{parent=math text} +\setbeamercolor{math text displayed}{parent=math text} + +\setbeamercolor{normal text in math text}{} + +\setbeamercolor{local structure}{parent=structure} + +\setbeamercolor{titlelike}{parent=structure} + +\setbeamercolor{title}{parent=titlelike} +\setbeamercolor{title in head/foot}{parent=palette quaternary} +\setbeamercolor{title in sidebar}{parent=palette sidebar quaternary} + +\setbeamercolor{subtitle}{parent=title} + +\setbeamercolor{author}{} +\setbeamercolor{author in head/foot}{parent=palette primary} +\setbeamercolor{author in sidebar}{use=palette sidebar tertiary,fg=palette sidebar tertiary.fg} + +\setbeamercolor{institute}{} +\setbeamercolor{institute in head/foot}{parent=palette tertiary} +\setbeamercolor{institute in sidebar}{use=palette sidebar tertiary,fg=palette sidebar tertiary.fg} + +\setbeamercolor{date}{} +\setbeamercolor{date in head/foot}{parent=palette secondary} +\setbeamercolor{date in sidebar}{use=palette sidebar tertiary,fg=palette sidebar tertiary.fg} + +\setbeamercolor{titlegraphic}{} + +\setbeamercolor{part name}{} +\setbeamercolor{part title}{parent=titlelike} + +\setbeamercolor{section in toc}{parent=structure} +\setbeamercolor{section in toc shaded}{parent=section in toc} +\setbeamercolor{section in head/foot}{parent=palette tertiary} +\setbeamercolor{section in sidebar}{parent=palette sidebar secondary} +\setbeamercolor{section in sidebar shaded}{use=section in sidebar,fg=section in sidebar.fg!40!bg} +\setbeamercolor{section number projected}{parent=item projected} + +\setbeamercolor{subsection in toc}{} +\setbeamercolor{subsection in toc shaded}{parent=subsection in toc} +\setbeamercolor{subsection in head/foot}{parent=palette secondary} +\setbeamercolor{subsection in sidebar}{parent=palette sidebar primary} +\setbeamercolor{subsection in sidebar shaded}{use=subsection in sidebar,fg=subsection in sidebar.fg!40!bg} +\setbeamercolor{subsection number projected}{parent={subitem projected}} + +\setbeamercolor{subsubsection in toc}{parent=subsection in toc} +\setbeamercolor{subsubsection in toc shaded}{parent=subsubsection in toc} +\setbeamercolor{subsubsection in head/foot}{parent=subsection in head/foot} +\setbeamercolor{subsubsection in sidebar}{parent=subsection in sidebar} +\setbeamercolor{subsubsection in sidebar shaded}{parent=subsection in sidebar shaded} +\setbeamercolor{subsubsection number projected}{parent=subsubitem projected} + +\setbeamercolor{headline}{} +\setbeamercolor{footline}{} + +\setbeamercolor{sidebar}{} +\setbeamercolor{sidebar left}{parent=sidebar} +\setbeamercolor{sidebar right}{parent=sidebar} + +\setbeamercolor{logo}{parent=palette secondary} + +\setbeamercolor{frametitle}{parent=titlelike} +\setbeamercolor{framesubtitle}{parent=frametitle} + +\setbeamercolor{frametitle right}{parent=frametitle} + +\setbeamercolor{caption}{} +\setbeamercolor{caption name}{parent=structure} + +\setbeamercolor{button}{use=local structure,bg=local structure.fg!50!bg,fg=white} +\setbeamercolor{button border}{use=button,fg=button.bg} +\setbeamercolor{navigation symbols}{use=structure,fg=structure.fg!40!bg} +\setbeamercolor{navigation symbols dimmed}{use=structure,fg=structure.fg!20!bg} +\setbeamercolor{mini frame}{parent=section in head/foot} + +% Color expressions are defined in the xcolor package +% +% Ex: Mixture of 40% green, 60% yellow: green!40!yellow +% +% The complement of any color can be obtained by prepending +% a minus sign: -green!40!yellow +% +% One can also combine up to three colors (in differing proportions) +% using the rgb command. For example, the following command combines +% 3 parts of the first color, with 2 parts of the second, and one part +% "red" +% +%\color{rgb:-green!40!yellow,3;green!40!yellow,2;red,1} +% Unfortunately, I don't think this works as an argument to setbeamercolor... +% "Orange" bg=green!30!yellow!30!red +% close to burnt orange: red!75!green +% lightgray is a color, but gray!25!white looks better +% +% A nice pair of greens +% (dark, a little too dark to be under black text...) -red!75!green!50!blue!25 +% (light) -red!75!green!50!blue!25!gray +% +% Some colors are only available via options to the xcolor package, eg. +% x11names,DarkOliveGreen4 +% svgnames, Chartreuse +% dvipsnames, ForestGreen +% +% but beamer does not seem to have any of these. +% +% The base color names which are always available are: +% black +% blue +% brown +% cyan +% darkgray +% gray +% green +% lightgray +% lime +% magenta +% olive +% orange +% pink +% purple +% red +% teal +% violet +% white +% yellow + +% From the beamer user guide, pg. 167 +% Inner color themes only specify the colors of elements used in inner +% themes. Most noticably, they specify the colors used for blocks. +% ... + +% Example color definition +% beamercolorthemedefault.sty:\definecolor{beamer@blendedblue}{rgb}{0.2,0.2,0.7} +% beamercolorthemedefault.sty:\setbeamercolor{structure}{fg=beamer@blendedblue} + +% The greens +% \setbeamercolor{block body}{bg=-red!75!green!50!blue!25!gray} +% \setbeamercolor{block title}{parent=structure,bg=-red!75!green!50!blue!25,fg=-red!75!green!50!blue!25!gray} + +%%% +% Set the block body and title background/foreground colors +%%% +% \setbeamercolor{block body}{bg=flyaddedblue} +% \setbeamercolor{block title}{bg=defblockheader,fg=flyaddedblue} + +% Purplish blues, too dark overall +% \setbeamercolor{block body}{bg=beetleaddedblue3} +% \setbeamercolor{block title}{bg=beetleaddedblue2,fg=beetleaddedblue3} + +% Very light blue greys +% 1. Not enough contrast +% \setbeamercolor{block body}{bg=deflightouter3} +% \setbeamercolor{block title}{bg=deflightouter2,fg=deflightouter3} + +% 2. Not enough contrast +% \setbeamercolor{block body}{bg=deflightouter3} +% \setbeamercolor{block title}{bg=deflightouter1,fg=deflightouter3} + +% 3. Combination of deflightouter and fly. The block bg is +% lighter than the all-beetle color scheme I previously thought was best. +% Currently I like this one the best +\setbeamercolor{block body}{bg=deflightouter3} +\setbeamercolor{block title}{bg=beetleaddedblue2,fg=deflightouter3} + +% 4. Greens. Looks like a highlighter. I don't really trust greens +% on projectors... It's almost too bright/hurts your eyes. +% \setbeamercolor{block body}{bg=defexblock} +% \setbeamercolor{block title}{bg=defaddedgreen,fg=defexblock} + +% This looks pretty good ... it's similar to the greens we had before +% but should be lighter. The blocks are just a little too "mint" colored +% though... +% \setbeamercolor{block body}{bg=defexblock} +% \setbeamercolor{block title}{bg=defexblockheader,fg=defexblock} + +% Pea Soup! +%\setbeamercolor{block body}{bg=defaddedgreen} +%\setbeamercolor{block title}{bg=defexblockheader,fg=defaddedgreen} + + +% Changing these didn't seem to do anything...I had to change the +% 'alerted text' color instead +\setbeamercolor{block body alerted}{} +\setbeamercolor{block body example}{} +\setbeamercolor{block title alerted}{parent=alerted text} +\setbeamercolor{block title example}{parent=example text} + +\setbeamercolor{item}{parent=local structure} +\setbeamercolor{subitem}{parent=item} +\setbeamercolor{subsubitem}{parent=subitem} + +\setbeamercolor{item projected}{parent=item,use=item,fg=white,bg=item.fg} +\setbeamercolor{subitem projected}{parent=item projected} +\setbeamercolor{subsubitem projected}{parent=subitem projected} + +\setbeamercolor{enumerate item}{parent=item} +\setbeamercolor{enumerate subitem}{parent=subitem} +\setbeamercolor{enumerate subsubitem}{parent=subsubitem} + +\setbeamercolor{itemize item}{parent=item} +\setbeamercolor{itemize subitem}{parent=subitem} +\setbeamercolor{itemize subsubitem}{parent=subsubitem} + +\setbeamercolor{itemize/enumerate body}{} +\setbeamercolor{itemize/enumerate subbody}{} +\setbeamercolor{itemize/enumerate subsubbody}{} + +\setbeamercolor{description item}{parent=item} + +\setbeamercolor{bibliography item}{parent=item} + +\setbeamercolor{bibliography entry author}{use=structure,fg=structure.fg} +\setbeamercolor{bibliography entry title}{use=normal text,fg=normal text.fg} +\setbeamercolor{bibliography entry location}{use=structure,fg=structure.fg!65!bg} +\setbeamercolor{bibliography entry note}{use=structure,fg=structure.fg!65!bg} + +\setbeamercolor{separation line}{} + +\setbeamercolor{upper separation line head}{parent=separation line} +\setbeamercolor{middle separation line head}{parent=separation line} +\setbeamercolor{lower separation line head}{parent=separation line} + +\setbeamercolor{upper separation line foot}{parent=separation line} +\setbeamercolor{middle separation line foot}{parent=separation line} +\setbeamercolor{lower separation line foot}{parent=separation line} + +\setbeamercolor{abstract}{} +\setbeamercolor{abstract title}{parent=structure} + +\setbeamercolor{verse}{} + +\setbeamercolor{quotation}{} +\setbeamercolor{quote}{parent=quotation} + +\setbeamercolor{page number in head/foot}{fg=fg!50!bg} + +\setbeamercolor{qed symbol}{parent=structure} + +\mode + diff --git a/my_docs/17/TACC_sysadmin_17/beamercolorthemeTACC16.sty b/my_docs/17/TACC_sysadmin_17/beamercolorthemeTACC16.sty deleted file mode 120000 index 58415801b..000000000 --- a/my_docs/17/TACC_sysadmin_17/beamercolorthemeTACC16.sty +++ /dev/null @@ -1 +0,0 @@ -../../beamer/beamercolorthemeTACC16.sty \ No newline at end of file diff --git a/my_docs/17/TACC_sysadmin_17/beamercolorthemeTACC16.sty b/my_docs/17/TACC_sysadmin_17/beamercolorthemeTACC16.sty new file mode 100755 index 000000000..779dde91f --- /dev/null +++ b/my_docs/17/TACC_sysadmin_17/beamercolorthemeTACC16.sty @@ -0,0 +1,192 @@ +% Copyright 2003 by Till Tantau . +% +% This program can be redistributed and/or modified under the terms +% of the GNU Public License, version 2. + +\mode + +\usepackage{textcase,regexpatch} + +\setbeamertemplate{blocks}[rounded][shadow=true] + + +\definecolor{TACCred}{RGB}{180,13,29} +\definecolor{TACCorange}{RGB}{210,104,43} +\definecolor{TACCblue}{RGB}{108, 134, 191} +\definecolor{TACCgreen}{RGB}{23,106,70} + +% I downloaded a gimp color palette from +% http://maururu.net/2007/latex-beamer-color-palette/ +% Which provides rgb values (I think) for several of the +% default beamer themes. You can open this in gimp by +% opening the Palettes dialog, right-clicking anywhere and choosing +% 'Import Palette'. A color in there called 'default added blue' +% appeared to be approximately what I wanted. It had the triple +% of values 141 145 208. If you double-click on this in the +% palette editor it gives you a bunch of information. You can't +% use these values directly to set a color...it just comes out white. +% I think definecolor is expecting something normalized by 255. Yes! + + +%%% +% Set the normal text color +%%% +\setbeamercolor{normal text}{fg=black} %,bg=white} +\setbeamercolor{example text}{fg=TACCgreen} +\setbeamercolor{alerted text}{fg=TACCorange} + + +\setbeamercolor{structure}{fg=black} +%\setbeamercolor{structure}{fg=black} + +\setbeamercolor{background canvas}{parent=normal text} +\setbeamercolor{background}{parent=background canvas} + +\setbeamercolor{palette primary}{use=structure,fg=structure.fg} +\setbeamercolor{palette secondary}{use=structure,fg=structure.fg!75!black} +\setbeamercolor{palette tertiary}{use=structure,fg=structure.fg!50!black} +\setbeamercolor{palette quaternary}{fg=black} + +\setbeamercolor{palette sidebar primary}{use=normal text,fg=normal text.fg} +\setbeamercolor{palette sidebar secondary}{use=structure,fg=structure.fg} +\setbeamercolor{palette sidebar tertiary}{use=normal text,fg=normal text.fg} +\setbeamercolor{palette sidebar quaternary}{use=structure,fg=structure.fg} + +\setbeamercolor{math text}{} +\setbeamercolor{math text inlined}{parent=math text} +\setbeamercolor{math text displayed}{parent=math text} + +\setbeamercolor{normal text in math text}{} + +\setbeamercolor{local structure}{parent=structure} + +\setbeamercolor{titlelike}{parent=structure} + +\setbeamercolor{title}{parent=titlelike} +\setbeamercolor{title in head/foot}{parent=palette quaternary} +\setbeamercolor{title in sidebar}{parent=palette sidebar quaternary} + +\setbeamercolor{subtitle}{parent=title} + +\setbeamercolor{author}{} +\setbeamercolor{author in head/foot}{parent=palette primary} +\setbeamercolor{author in sidebar}{use=palette sidebar tertiary,fg=palette sidebar tertiary.fg} + +\setbeamercolor{institute}{} +\setbeamercolor{institute in head/foot}{parent=palette tertiary} +\setbeamercolor{institute in sidebar}{use=palette sidebar tertiary,fg=palette sidebar tertiary.fg} + +\setbeamercolor{date}{} +\setbeamercolor{date in head/foot}{parent=palette secondary} +\setbeamercolor{date in sidebar}{use=palette sidebar tertiary,fg=palette sidebar tertiary.fg} + +\setbeamercolor{titlegraphic}{} + +\setbeamercolor{part name}{} +\setbeamercolor{part title}{parent=titlelike} + +\setbeamercolor{section in toc}{parent=structure} +\setbeamercolor{section in toc shaded}{parent=section in toc} +\setbeamercolor{section in head/foot}{parent=palette tertiary} +\setbeamercolor{section in sidebar}{parent=palette sidebar secondary} +\setbeamercolor{section in sidebar shaded}{use=section in sidebar,fg=section in sidebar.fg!40!bg} +\setbeamercolor{section number projected}{parent=item projected} + +\setbeamercolor{subsection in toc}{} +\setbeamercolor{subsection in toc shaded}{parent=subsection in toc} +\setbeamercolor{subsection in head/foot}{parent=palette secondary} +\setbeamercolor{subsection in sidebar}{parent=palette sidebar primary} +\setbeamercolor{subsection in sidebar shaded}{use=subsection in sidebar,fg=subsection in sidebar.fg!40!bg} +\setbeamercolor{subsection number projected}{parent={subitem projected}} + +\setbeamercolor{subsubsection in toc}{parent=subsection in toc} +\setbeamercolor{subsubsection in toc shaded}{parent=subsubsection in toc} +\setbeamercolor{subsubsection in head/foot}{parent=subsection in head/foot} +\setbeamercolor{subsubsection in sidebar}{parent=subsection in sidebar} +\setbeamercolor{subsubsection in sidebar shaded}{parent=subsection in sidebar shaded} +\setbeamercolor{subsubsection number projected}{parent=subsubitem projected} + +\setbeamercolor{headline}{} +\setbeamercolor{footline}{} + +\setbeamercolor{sidebar}{} +\setbeamercolor{sidebar left}{parent=sidebar} +\setbeamercolor{sidebar right}{parent=sidebar} + +\setbeamercolor{logo}{parent=palette secondary} + +\setbeamercolor{frametitle}{parent=titlelike} +\setbeamercolor{framesubtitle}{parent=frametitle} + +\setbeamercolor{frametitle right}{parent=frametitle} + +\setbeamercolor{caption}{} +\setbeamercolor{caption name}{parent=structure} + +\setbeamercolor{button}{use=local structure,bg=local structure.fg!50!bg,fg=white} +\setbeamercolor{button border}{use=button,fg=button.bg} +\setbeamercolor{navigation symbols}{use=structure,fg=structure.fg!40!bg} +\setbeamercolor{navigation symbols dimmed}{use=structure,fg=structure.fg!20!bg} +\setbeamercolor{mini frame}{parent=section in head/foot} + +\setbeamercolor{block body}{fg=black} +\setbeamercolor{block body alerted}{fg=black} +\setbeamercolor{block body example}{fg=black} + +\setbeamercolor{block title}{bg=TACCblue,fg=white} +\setbeamercolor{block title alerted}{bg=TACCred,fg=white} +\setbeamercolor{block title example}{bg=TACCgreen,fg=white} + +\setbeamercolor{item}{parent=local structure} +\setbeamercolor{subitem}{parent=item} +\setbeamercolor{subsubitem}{parent=subitem} + +\setbeamercolor{item projected}{parent=item,use=item,fg=black,bg=item.fg} +\setbeamercolor{subitem projected}{parent=item projected} +\setbeamercolor{subsubitem projected}{parent=subitem projected} + +\setbeamercolor{enumerate item}{parent=item} +\setbeamercolor{enumerate subitem}{parent=subitem} +\setbeamercolor{enumerate subsubitem}{parent=subsubitem} + +\setbeamercolor{itemize item}{parent=item} +\setbeamercolor{itemize subitem}{parent=subitem} +\setbeamercolor{itemize subsubitem}{parent=subsubitem} + +\setbeamercolor{itemize/enumerate body}{} +\setbeamercolor{itemize/enumerate subbody}{} +\setbeamercolor{itemize/enumerate subsubbody}{} + +\setbeamercolor{description item}{parent=item} + +\setbeamercolor{bibliography item}{parent=item} + +\setbeamercolor{bibliography entry author}{use=structure,fg=structure.fg} +\setbeamercolor{bibliography entry title}{use=normal text,fg=normal text.fg} +\setbeamercolor{bibliography entry location}{use=structure,fg=structure.fg!65!bg} +\setbeamercolor{bibliography entry note}{use=structure,fg=structure.fg!65!bg} + +\setbeamercolor{separation line}{} + +\setbeamercolor{upper separation line head}{parent=separation line} +\setbeamercolor{middle separation line head}{parent=separation line} +\setbeamercolor{lower separation line head}{parent=separation line} + +\setbeamercolor{upper separation line foot}{parent=separation line} +\setbeamercolor{middle separation line foot}{parent=separation line} +\setbeamercolor{lower separation line foot}{parent=separation line} + +\setbeamercolor{abstract}{} +\setbeamercolor{abstract title}{parent=structure} + +\setbeamercolor{verse}{} + +\setbeamercolor{quotation}{} +\setbeamercolor{quote}{parent=quotation} + +\setbeamercolor{page number in head/foot}{fg=fg!50!bg} + +\setbeamercolor{qed symbol}{parent=structure} + +\mode + diff --git a/my_docs/17/TACC_sysadmin_17/beamerfontthemeTACC.sty b/my_docs/17/TACC_sysadmin_17/beamerfontthemeTACC.sty deleted file mode 120000 index 78e971fb8..000000000 --- a/my_docs/17/TACC_sysadmin_17/beamerfontthemeTACC.sty +++ /dev/null @@ -1 +0,0 @@ -../../beamer/beamerfontthemeTACC.sty \ No newline at end of file diff --git a/my_docs/17/TACC_sysadmin_17/beamerfontthemeTACC.sty b/my_docs/17/TACC_sysadmin_17/beamerfontthemeTACC.sty new file mode 100755 index 000000000..ef9ce1e5e --- /dev/null +++ b/my_docs/17/TACC_sysadmin_17/beamerfontthemeTACC.sty @@ -0,0 +1,12 @@ +% Copyright 2003 by Till Tantau +% +% This program can be redistributed and/or modified under the terms +% of the GNU Public License, version 2. + +\mode + +\setbeamerfont{frametitle}{parent=structure,size=\LARGE,series=\bfseries} +\setbeamerfont{framesubtitle}{parent=frametitle,size=\small} + +\mode + \ No newline at end of file diff --git a/my_docs/17/TACC_sysadmin_17/beamerfontthemeTACC16.sty b/my_docs/17/TACC_sysadmin_17/beamerfontthemeTACC16.sty deleted file mode 120000 index a1f2fa5f9..000000000 --- a/my_docs/17/TACC_sysadmin_17/beamerfontthemeTACC16.sty +++ /dev/null @@ -1 +0,0 @@ -../../beamer/beamerfontthemeTACC16.sty \ No newline at end of file diff --git a/my_docs/17/TACC_sysadmin_17/beamerfontthemeTACC16.sty b/my_docs/17/TACC_sysadmin_17/beamerfontthemeTACC16.sty new file mode 100755 index 000000000..b65271835 --- /dev/null +++ b/my_docs/17/TACC_sysadmin_17/beamerfontthemeTACC16.sty @@ -0,0 +1,21 @@ +% Copyright 2003 by Till Tantau +% +% This program can be redistributed and/or modified under the terms +% of the GNU Public License, version 2. + +\mode +\setbeamerfont{title}{parent=structure,size=\LARGE,series=\bfseries} +\setbeamerfont{author}{parent=structure,size=\large, series=\normalfont} +\setbeamerfont{frametitle}{parent=structure,size=\LARGE,series=\bfseries} +\setbeamerfont{framesubtitle}{parent=frametitle,size=\small} + +%\usefonttheme{professionalfonts} % using non standard fonts for beamer +%\usefonttheme{serif} % default family is serif +%\usepackage{fontspec} +%\setmainfont{Century Gothic} + +\usepackage{fontspec} +\usepackage{libertine} + +\mode + diff --git a/my_docs/17/TACC_sysadmin_17/beamerinnerthemeTACC.sty b/my_docs/17/TACC_sysadmin_17/beamerinnerthemeTACC.sty deleted file mode 120000 index 8d5ae3921..000000000 --- a/my_docs/17/TACC_sysadmin_17/beamerinnerthemeTACC.sty +++ /dev/null @@ -1 +0,0 @@ -../../beamer/beamerinnerthemeTACC.sty \ No newline at end of file diff --git a/my_docs/17/TACC_sysadmin_17/beamerinnerthemeTACC.sty b/my_docs/17/TACC_sysadmin_17/beamerinnerthemeTACC.sty new file mode 100755 index 000000000..29e2bce81 --- /dev/null +++ b/my_docs/17/TACC_sysadmin_17/beamerinnerthemeTACC.sty @@ -0,0 +1,11 @@ +\mode + +\setbeamertemplate{itemize item}[circle] +\setbeamertemplate{itemize subitem}{{}--{}} +\setbeamertemplate{itemize subsubitem}[circle] +\setbeamertemplate{section in toc}{$\bullet$\hskip.5em\inserttocsection} +%\setbeamertemplate{subsection in toc}{} +\setbeamertemplate{subsubsection in toc}{} + +\mode + diff --git a/my_docs/17/TACC_sysadmin_17/beamerinnerthemeTACC16.sty b/my_docs/17/TACC_sysadmin_17/beamerinnerthemeTACC16.sty deleted file mode 120000 index 5955acc99..000000000 --- a/my_docs/17/TACC_sysadmin_17/beamerinnerthemeTACC16.sty +++ /dev/null @@ -1 +0,0 @@ -../../beamer/beamerinnerthemeTACC16.sty \ No newline at end of file diff --git a/my_docs/17/TACC_sysadmin_17/beamerinnerthemeTACC16.sty b/my_docs/17/TACC_sysadmin_17/beamerinnerthemeTACC16.sty new file mode 100755 index 000000000..f7f454e1d --- /dev/null +++ b/my_docs/17/TACC_sysadmin_17/beamerinnerthemeTACC16.sty @@ -0,0 +1,11 @@ +\mode + +\setbeamertemplate{itemize item}[triangle] +\setbeamertemplate{itemize subitem}[triangle] +\setbeamertemplate{itemize subsubitem}[triangle] +\setbeamertemplate{section in toc}{$\bullet$\hskip.5em\inserttocsection} +%\setbeamertemplate{subsection in toc}{} +\setbeamertemplate{subsubsection in toc}{} + +\mode + diff --git a/my_docs/17/TACC_sysadmin_17/beamerouterthemeTACC.sty b/my_docs/17/TACC_sysadmin_17/beamerouterthemeTACC.sty deleted file mode 120000 index da0a45d33..000000000 --- a/my_docs/17/TACC_sysadmin_17/beamerouterthemeTACC.sty +++ /dev/null @@ -1 +0,0 @@ -../../beamer/beamerouterthemeTACC.sty \ No newline at end of file diff --git a/my_docs/17/TACC_sysadmin_17/beamerouterthemeTACC.sty b/my_docs/17/TACC_sysadmin_17/beamerouterthemeTACC.sty new file mode 100755 index 000000000..038580303 --- /dev/null +++ b/my_docs/17/TACC_sysadmin_17/beamerouterthemeTACC.sty @@ -0,0 +1,196 @@ +% Copyright 2003 by Till Tantau +% +% This program can be redistributed and/or modified under the terms +% of the GNU Public License, version 2. + +\mode + +\setbeamertemplate{frametitle}[default][center] +\addtobeamertemplate{frametitle}{\vskip 4ex minus 4ex}{} + +% Here we define what appears at the bottom of each slide: the "footline". +\setbeamertemplate{footline}{% + \leavevmode% + + % Horizontal line dividing the rest of the slide from the footer? + % hrule goes all the way across... + % \hrule height.3pt% + % With \rule, you can specify the thickness + % \rule[raise-height]{width}{thickness} + \hspace{.025\textwidth}\rule{.95\textwidth}{.5pt} + + \hbox{% + % On the left half of the footer, insert the TACC logo + \begin{minipage}{.5\textwidth}% + \hskip .033\textwidth%Give horizontal space else this will set on the left edge of the slide! + % TACC logo with custom viewport! + \includegraphics[viewport=1 -1 135 35, clip=true, width=.4\textwidth]{figures/TACC_logo} + \end{minipage} + % + \begin{minipage}{.5\textwidth}% + \vskip .023\textheight% + \raggedleft% + \setlength{\rightskip}{.033\textwidth} + % + % If we are not on the first page, insert a page number + % For some reason, insertframenumber is buggy when you have fragile + % slides with verbatim environments in them... it tends to skip numbers + % for some reason! On the other hand, the pagenumber is incremented + % for *every* slide, including transition slides... + \ifnum \thepage>1 + % \insertshorttitle + \insertframenumber + % \insertframenumber/\inserttotalframenumber + % \insertpagenumber + \else % Do a phantom of whatever you do on other pages, so spacing matches + %$\phantom{\insertshorttitle}$ + $\phantom{\insertframenumber}$ + %$\phantom{\insertframenumber/\inserttotalframenumber}$ + %$\phantom{\insertpagenumber}$ + \fi + \hfill\includegraphics[width=.5\textwidth]{figures/UT_logo}% + \end{minipage}% + }% + \vskip .023\textheight% +} + + + + +\ifTACCheadernav + +\usesectionheadtemplate +{\hfill\insertsectionhead} +{\hfill\color{fg!50!bg}\insertsectionhead} + +% Head +\ifbeamer@compress + +% Here we define how the top of the frame looks, the "headline". +\setbeamertemplate{headline} +{% + \ifnum \thepage>1 + \leavevmode% + \begin{beamercolorbox}[wd=.5\paperwidth,ht=2.5ex,dp=1.125ex]{% + section in head/foot}% + \insertsectionnavigationhorizontal{.5\paperwidth}{\hskip0pt plus1filll}{}% + \end{beamercolorbox}% + \begin{beamercolorbox}[wd=.5\paperwidth,ht=2.5ex,dp=1.125ex]{% + subsection in head/foot}% + \insertsubsectionnavigationhorizontal{% + .5\paperwidth}{}{\hskip0pt plus1filll}% + \end{beamercolorbox}% + \fi %\thepage>1 +} + +\else% Not compressed + +\setbeamertemplate{headline} +{% + \ifnum \thepage>1 + \leavevmode% + \@tempdimb=2.4375ex% + \ifnum\beamer@subsectionmax<\beamer@sectionmax% + \multiply\@tempdimb by\beamer@sectionmax% + \else% + \multiply\@tempdimb by\beamer@subsectionmax% + \fi% + \ifdim\@tempdimb>0pt% + \advance\@tempdimb by 1.125ex% + \begin{beamercolorbox}[wd=.5\paperwidth,ht=\@tempdimb]{% + section in head/foot}% + \vbox to\@tempdimb{\vfil\insertsectionnavigation{.5\paperwidth}\vfil}% + \end{beamercolorbox}% + \begin{beamercolorbox}[wd=.5\paperwidth,ht=\@tempdimb]{% + subsection in head/foot}% + \vbox to\@tempdimb{\vfil\insertsubsectionnavigation{.5\paperwidth}\vfil}% + \end{beamercolorbox}% + \fi% + \fi % \thepage>1 +} + +\fi % end if compressed +\fi % TACCheadernav + + +\ifTACCheadertree + +\setbeamertemplate{headline} +{ + \begin{beamercolorbox}[wd=\paperwidth,colsep=1.5pt + ]{upper separation line head} + \end{beamercolorbox} + % + % Place short title + % + \begin{beamercolorbox}[wd=\paperwidth,ht=2.5ex,dp=1.125ex,% + leftskip=.3cm,rightskip=.3cm plus1fil]{title in head/foot} + \usebeamerfont{title in head/foot}\insertshorttitle + \end{beamercolorbox} + + % + % Place section + % + \begin{beamercolorbox}[wd=\paperwidth,ht=2.5ex,dp=1.125ex,% + leftskip=.3cm,rightskip=.3cm plus1fil]{section in head/foot} + \usebeamerfont{section in head/foot}% + %\ifbeamer@tree@showhooks + \setbox\beamer@tempbox=\hbox{\insertsectionhead}% + \ifdim\wd\beamer@tempbox>1pt% + \hskip2pt\raise1.9pt\hbox{\vrule width0.4pt height1.875ex\vrule width 5pt height0.4pt}% + \hskip1pt% + \fi% \ifdim + %\else% + %\hskip6pt% + %\fi% \ifbeamer + \insertsectionhead + \end{beamercolorbox} + +% +% Place subsection +% +\begin{beamercolorbox}[wd=\paperwidth,ht=2.5ex,dp=1.125ex,% + leftskip=.3cm,rightskip=.3cm plus1fil]{subsection in head/foot} + \usebeamerfont{subsection in head/foot}% + %\ifbeamer@tree@showhooks + \setbox\beamer@tempbox=\hbox{\insertsubsectionhead}% + \ifdim\wd\beamer@tempbox>1pt% + \hskip9.4pt\raise1.9pt\hbox{\vrule width0.4pt height1.875ex\vrule width 5pt height0.4pt}% + \hskip1pt% + \fi% \ifdim + %\else% + %\hskip12pt% + %\fi% \ifbeamer + \insertsubsectionhead +\end{beamercolorbox} + +% +% Place final separation box +% + \begin{beamercolorbox}[wd=\paperwidth,colsep=1.5pt + ]{lower separation line head} + \end{beamercolorbox} + + % + % Another matching rule which helps to frame the content + % + \hspace{.025\textwidth}\rule{.95\textwidth}{.5pt} +} +\fi % TACCheadertree + + +% The following command suppresses all navigation symbols. This is +% necessary in the TACC theme, since it overlaps where we want the +% logo to be. +\setbeamertemplate{navigation symbols}{} + +% Align the navigation symbols vertically (still overlaps our logo!) +%\setbeamertemplate{navigation symbols}[vertical]{} + +% Only places the slide-forward and slide-back symbol, but yes, +% this still overlaps our logo! +%\setbeamertemplate{navigation symbols}[only frame symbol]{} + + +\mode + diff --git a/my_docs/17/TACC_sysadmin_17/beamerouterthemeTACC16.sty b/my_docs/17/TACC_sysadmin_17/beamerouterthemeTACC16.sty deleted file mode 120000 index 54bd09537..000000000 --- a/my_docs/17/TACC_sysadmin_17/beamerouterthemeTACC16.sty +++ /dev/null @@ -1 +0,0 @@ -../../beamer/beamerouterthemeTACC16.sty \ No newline at end of file diff --git a/my_docs/17/TACC_sysadmin_17/beamerouterthemeTACC16.sty b/my_docs/17/TACC_sysadmin_17/beamerouterthemeTACC16.sty new file mode 100755 index 000000000..d5e6388c7 --- /dev/null +++ b/my_docs/17/TACC_sysadmin_17/beamerouterthemeTACC16.sty @@ -0,0 +1,312 @@ +% Antonio Gomez (agomez@tacc.utexas.edu) +% 4-20-17. Added option to put the footer on the right side + + + +\mode + +\usepackage{xcolor} +\usepackage{graphicx} +\usepackage{etoolbox} + + + +% This theme accepts the "rightfooter" option +% When used, it will put the TACC logo at the bottom of the slide on the right side +% By default, it goes to the left + +\xifaspectratio{ + {169} { + \pgfdeclareimage[width=\paperwidth]{titlebackground}{./figures/master169.jpg} + \if@rightfooterOption + \pgfdeclareimage[width=\paperwidth]{background}{./figures/secondary_right169.jpg} +\else + \pgfdeclareimage[width=\paperwidth]{background}{./figures/secondary169.jpg} +\fi +} +}[ +\pgfdeclareimage[width=\paperwidth]{titlebackground}{./figures/master.jpg} + \if@rightfooterOption + \pgfdeclareimage[width=\paperwidth]{background}{./figures/secondary_right.jpg} +\else + \pgfdeclareimage[width=\paperwidth]{background}{./figures/secondary.jpg} +\fi +] + +\setbeamertemplate{background canvas}{% +\xifaspectratio{ + {169} { + \ifnum\c@framenumber=1 % + \begin{picture}(0,0) + \put(-3,-256){% + \pgfuseimage{titlebackground} + } + \end{picture} + \else% + \begin{picture}(0,0) + \put(-3,-260){% + \pgfuseimage{background} + } + \end{picture} + \fi + } + {43} { + \ifnum\c@framenumber=1 % + \begin{picture}(0,0) + \put(-4,-274){% + \pgfuseimage{titlebackground} + } + \end{picture} + \else% + \begin{picture}(0,0) + \put(-4,-274){% + \pgfuseimage{background} + } + \end{picture} + \fi + } +} +} + + + +%\setbeamertemplate{background canvas}{% +% % On title page +% \ifnum\c@framenumber=1 % +% \begin{picture}(0,0) +% \put(0,-253){% +% \pgfuseimage{titlebackground} +% } +% \end{picture} +% +% \else% +% \xifaspectratio{ +% {169} { +% % Other frames background +% \begin{picture}(0,0) +% \put(-4,-260){% +% \pgfuseimage{background} +% } +% \end{picture} +% } +% }[ +% % Other frames background +% \begin{picture}(0,0) +% \put(-4,-274){% +% \pgfuseimage{background} +% } +% \end{picture} +% ] +% \fi% +%} + + +\setbeamertemplate{title page}{ +\vspace{40pt} +\begin{center} +\usebeamerfont{title} {\huge \inserttitle}\par +\vspace{4ex} +\usebeamerfont{author} { + \insertauthor +}\par +\vspace{2ex} +\usebeamerfont{institute}{ + \insertinstitute +} \par +\vspace{2ex} +\usebeamerfont{date}{ + \insertdate +} +\end{center} +} + + +\setbeamertemplate{frametitle}[default][center] +\setbeamertemplate{frametitle}{ + \makeatletter + \regexpatchcmd{\insertframetitle} + {(\c{usebeamertemplate}.*)\c{fi}} + {\c{NoCaseChange}\cB\{\1\cE\}\c{fi}} + {}{}% + \makeatother + \vskip1ex + \insertframetitle +} + +% Here we define what appears at the bottom of each slide: the "footline". +\setbeamertemplate{footline}{% + \leavevmode% + + % Horizontal line dividing the rest of the slide from the footer? + % hrule goes all the way across... + % \hrule height.3pt% + % With \rule, you can specify the thickness + % \rule[raise-height]{width}{thickness} + % \hspace{.025\textwidth}\rule{.95\textwidth}{.5pt} + + \hbox{% + \ifnum \thepage>1 + \if@rightfooterOption + \begin{minipage}{.2\textwidth}% + \hskip .05\textwidth%Give horizontal space else this will set on the left edge of the slide! + \end{minipage} + \else + \begin{minipage}{.4\textwidth}% + \hskip .05\textwidth%Give horizontal space else this will set on the left edge of the slide! + \end{minipage} + \fi + + + \begin{minipage}{\textwidth}% + % \vskip .023\textheight% + \raggedleft% + \setlength{\rightskip}{\textwidth} + \if@rightfooterOption + \hbox{% + \begin{beamercolorbox}[wd=0.7\textwidth,ht=2.25ex,dp=1ex,left]{author in head/foot}% + \insertshorttitle{} \hskip .01\textwidth | \hskip .01\textwidth \insertdate{} \hskip .01\textwidth | \hskip .01\textwidth \insertframenumber{} + \end{beamercolorbox}% + } + \else + \hbox{% + \begin{beamercolorbox}[wd=0.5\textwidth,ht=2.25ex,dp=1ex,left]{author in head/foot}% + \insertshorttitle{} \hskip .01\textwidth | \hskip .01\textwidth \insertdate{} \hskip .01\textwidth | \hskip .01\textwidth \insertframenumber{} + \end{beamercolorbox}% + } + \fi + + \end{minipage}% + \begin{minipage}{.05\textwidth}% + \end{minipage}% + \fi %\thepage>1 + }% + \vskip .023\textheight% + +} + + + + +\ifTACCheadernav + +\usesectionheadtemplate +{\hfill\insertsectionhead} +{\hfill\color{fg!50!bg}\insertsectionhead} + +% Head +\ifbeamer@compress + +% Here we define how the top of the frame looks, the "headline". +\setbeamertemplate{headline} +{% + \ifnum \thepage>1 + \leavevmode% + \begin{beamercolorbox}[wd=.5\paperwidth,ht=2.5ex,dp=1.125ex]{% + section in head/foot}% + \insertsectionnavigationhorizontal{.5\paperwidth}{\hskip0pt plus1filll}{}% + \end{beamercolorbox}% + \begin{beamercolorbox}[wd=.5\paperwidth,ht=2.5ex,dp=1.125ex]{% + subsection in head/foot}% + \insertsubsectionnavigationhorizontal{% + .5\paperwidth}{}{\hskip0pt plus1filll}% + \end{beamercolorbox}% + \fi %\thepage>1 +} + +\else% Not compressed + +\setbeamertemplate{headline} +{% + \ifnum \thepage>1 + \leavevmode% + \@tempdimb=2.4375ex% + \ifnum\beamer@subsectionmax<\beamer@sectionmax% + \multiply\@tempdimb by\beamer@sectionmax% + \else% + \multiply\@tempdimb by\beamer@subsectionmax% + \fi% + \ifdim\@tempdimb>0pt% + \advance\@tempdimb by 1.125ex% + \begin{beamercolorbox}[wd=.5\paperwidth,ht=\@tempdimb]{% + section in head/foot}% + \vbox to\@tempdimb{\vfil\insertsectionnavigation{.5\paperwidth}\vfil}% + \end{beamercolorbox}% + \begin{beamercolorbox}[wd=.5\paperwidth,ht=\@tempdimb]{% + subsection in head/foot}% + \vbox to\@tempdimb{\vfil\insertsubsectionnavigation{.5\paperwidth}\vfil}% + \end{beamercolorbox}% + \fi% + \fi % \thepage>1 +} + +\fi % end if compressed +\fi % TACCheadernav + + +\ifTACCheadertree + +\setbeamertemplate{headline} +{ + \begin{beamercolorbox}[wd=\paperwidth,colsep=1.5pt]{upper separation line head} + \end{beamercolorbox} + % + % Place short title + % + \begin{beamercolorbox}[wd=\paperwidth,ht=2.5ex,dp=1.125ex,% + leftskip=.3cm,rightskip=.3cm plus1fil]{title in head/foot} + \usebeamerfont{title in head/foot}\insertshorttitle + \end{beamercolorbox} + + % + % Place section + % + \begin{beamercolorbox}[wd=\paperwidth,ht=2.5ex,dp=1.125ex,% + leftskip=.3cm,rightskip=.3cm plus1fil]{section in head/foot} + \usebeamerfont{section in head/foot}% + %\ifbeamer@tree@showhooks + \setbox\beamer@tempbox=\hbox{\insertsectionhead}% + \ifdim\wd\beamer@tempbox>1pt% + \hskip2pt\raise1.9pt\hbox{\vrule width0.4pt height1.875ex\vrule width 5pt height0.4pt}% + \hskip1pt% + \fi + \insertsectionhead + \end{beamercolorbox} + +% +% Place subsection +% +\begin{beamercolorbox}[wd=\paperwidth,ht=2.5ex,dp=1.125ex,% + leftskip=.3cm,rightskip=.3cm plus1fil]{subsection in head/foot} + \usebeamerfont{subsection in head/foot}% + %\ifbeamer@tree@showhooks + \setbox\beamer@tempbox=\hbox{\insertsubsectionhead}% + \ifdim\wd\beamer@tempbox>1pt% + \hskip9.4pt\raise1.9pt\hbox{\vrule width0.4pt height1.875ex\vrule width 5pt height0.4pt}% + \hskip1pt% + \fi + \insertsubsectionhead +\end{beamercolorbox} + +% +% Place final separation box +% + \begin{beamercolorbox}[wd=\paperwidth,colsep=1.5pt + ]{lower separation line head} + \end{beamercolorbox} + + % + % Another matching rule which helps to frame the content + % + \hspace{.025\textwidth}\rule{.95\textwidth}{.5pt} +} +\fi % TACCheadertree + + +% The following command suppresses all navigation symbols. This is +% necessary in the TACC theme, since it overlaps where we want the +% logo to be. +\setbeamertemplate{navigation symbols}{} + + +\mode + diff --git a/my_docs/17/TACC_sysadmin_17/beamerthemeTACC.sty b/my_docs/17/TACC_sysadmin_17/beamerthemeTACC.sty deleted file mode 120000 index 5c339abd4..000000000 --- a/my_docs/17/TACC_sysadmin_17/beamerthemeTACC.sty +++ /dev/null @@ -1 +0,0 @@ -../../beamer/beamerthemeTACC.sty \ No newline at end of file diff --git a/my_docs/17/TACC_sysadmin_17/beamerthemeTACC.sty b/my_docs/17/TACC_sysadmin_17/beamerthemeTACC.sty new file mode 100755 index 000000000..c6a1b1269 --- /dev/null +++ b/my_docs/17/TACC_sysadmin_17/beamerthemeTACC.sty @@ -0,0 +1,26 @@ +%% TACC theme for beamer + +\newif\ifTACCheadernav +\DeclareOption{headernav}{\global\TACCheadernavtrue} + +\newif\ifTACCheadertree +\DeclareOption{headertree}{\global\TACCheadertreetrue} +\ProcessOptions + +\mode + +\usefonttheme{TACC} +\usecolortheme{TACC} +\useinnertheme{TACC} +\useoutertheme{TACC} + +\mode + + +\newcommand{\event}[1]{% + \makeatletter% + \def\TACC@eventname{#1}% + \makeatother} + +\newcommand{\sectionframe}[1]{\section{#1}\frame{\Large\textbf{#1}}} +\newcommand{\subsectionframe}[1]{\subsection{#1}\frame{\large\textbf{#1}}} diff --git a/my_docs/17/TACC_sysadmin_17/beamerthemeTACC16.sty b/my_docs/17/TACC_sysadmin_17/beamerthemeTACC16.sty deleted file mode 120000 index 7a9d4d296..000000000 --- a/my_docs/17/TACC_sysadmin_17/beamerthemeTACC16.sty +++ /dev/null @@ -1 +0,0 @@ -../../beamer/beamerthemeTACC16.sty \ No newline at end of file diff --git a/my_docs/17/TACC_sysadmin_17/beamerthemeTACC16.sty b/my_docs/17/TACC_sysadmin_17/beamerthemeTACC16.sty new file mode 100755 index 000000000..b522d0207 --- /dev/null +++ b/my_docs/17/TACC_sysadmin_17/beamerthemeTACC16.sty @@ -0,0 +1,61 @@ +%% TACC theme for beamer + + +\newif\if@rightfooterOption +\@rightfooterOptionfalse +\DeclareOption{rightfooter}{\@rightfooterOptiontrue} +\ProcessOptions + + +\newif\ifTACCheadernav +\DeclareOption{headernav}{\global\TACCheadernavtrue} + +\newif\ifTACCheadertree +\DeclareOption{headertree}{\global\TACCheadertreetrue} +\ProcessOptions + +\usepackage{xparse} +\ExplSyntaxOn +\NewDocumentCommand{\ifaspectratio}{mmm} + { + % Recover the option from those passed to the class + \keys_set:nf { zunbeltz/beameroptions } { \use:c { opt@beamer.cls } } + \str_if_eq:nVTF { #1 } \l_zunbeltz_aspectratio_tl { #2 } { #3 } + } +\NewDocumentCommand{\xifaspectratio}{mO{}} + { + % Recover the option from those passed to the class + \keys_set:nf { zunbeltz/beameroptions } { \use:c { opt@beamer.cls } } + \str_case:VnF \l_zunbeltz_aspectratio_tl { #1 } { #2 } + } +% We need to define only one key, the other are treated as `unknown' +\keys_define:nn { zunbeltz/beameroptions } + { + aspectratio .tl_set:N = \l_zunbeltz_aspectratio_tl, + aspectratio .initial:n = 43, + unknown .code:n = {}, + } + +% Generate the variants we need +\cs_generate_variant:Nn \keys_set:nn { nf } +\cs_generate_variant:Nn \str_if_eq:nnTF { nV } +\cs_generate_variant:Nn \str_case:nnF { V } +\ExplSyntaxOff + +\mode + +\usefonttheme{TACC16} +\useinnertheme{TACC16} +\useoutertheme{TACC16} +\usecolortheme{TACC16} + +\mode + + +\newcommand{\event}[1]{% + \makeatletter% + \def\TACC@eventname{#1}% + \makeatother} + +\newcommand{\sectionframe}[1]{\section{#1}\frame{\Large\textbf{#1}}} +\newcommand{\subsectionframe}[1]{\subsection{#1}\frame{\large\textbf{#1}}} diff --git a/my_docs/17/TACC_sysadmin_17/figures b/my_docs/17/TACC_sysadmin_17/figures deleted file mode 120000 index ddafd8974..000000000 --- a/my_docs/17/TACC_sysadmin_17/figures +++ /dev/null @@ -1 +0,0 @@ -../../beamer/figures \ No newline at end of file diff --git a/my_docs/17/TACC_sysadmin_17/figures/TACC_logo.pdf b/my_docs/17/TACC_sysadmin_17/figures/TACC_logo.pdf new file mode 100755 index 000000000..c018a20cb Binary files /dev/null and b/my_docs/17/TACC_sysadmin_17/figures/TACC_logo.pdf differ diff --git a/my_docs/17/TACC_sysadmin_17/figures/UT_logo.pdf b/my_docs/17/TACC_sysadmin_17/figures/UT_logo.pdf new file mode 100755 index 000000000..d5b42e752 Binary files /dev/null and b/my_docs/17/TACC_sysadmin_17/figures/UT_logo.pdf differ diff --git a/my_docs/17/TACC_sysadmin_17/figures/cc.png b/my_docs/17/TACC_sysadmin_17/figures/cc.png new file mode 100644 index 000000000..8a532ff8f Binary files /dev/null and b/my_docs/17/TACC_sysadmin_17/figures/cc.png differ diff --git a/my_docs/17/TACC_sysadmin_17/figures/isa.png b/my_docs/17/TACC_sysadmin_17/figures/isa.png new file mode 100644 index 000000000..f95d985e7 Binary files /dev/null and b/my_docs/17/TACC_sysadmin_17/figures/isa.png differ diff --git a/my_docs/17/TACC_sysadmin_17/figures/master.jpg b/my_docs/17/TACC_sysadmin_17/figures/master.jpg new file mode 100644 index 000000000..f5c56c04a Binary files /dev/null and b/my_docs/17/TACC_sysadmin_17/figures/master.jpg differ diff --git a/my_docs/17/TACC_sysadmin_17/figures/master169.jpg b/my_docs/17/TACC_sysadmin_17/figures/master169.jpg new file mode 100644 index 000000000..b215776eb Binary files /dev/null and b/my_docs/17/TACC_sysadmin_17/figures/master169.jpg differ diff --git a/my_docs/17/TACC_sysadmin_17/figures/master169.png b/my_docs/17/TACC_sysadmin_17/figures/master169.png new file mode 100644 index 000000000..bc5c0ed12 Binary files /dev/null and b/my_docs/17/TACC_sysadmin_17/figures/master169.png differ diff --git a/my_docs/17/TACC_sysadmin_17/figures/secondary.jpg b/my_docs/17/TACC_sysadmin_17/figures/secondary.jpg new file mode 100644 index 000000000..d905a95c9 Binary files /dev/null and b/my_docs/17/TACC_sysadmin_17/figures/secondary.jpg differ diff --git a/my_docs/17/TACC_sysadmin_17/figures/secondary169.jpg b/my_docs/17/TACC_sysadmin_17/figures/secondary169.jpg new file mode 100644 index 000000000..4eb017957 Binary files /dev/null and b/my_docs/17/TACC_sysadmin_17/figures/secondary169.jpg differ diff --git a/my_docs/17/TACC_sysadmin_17/figures/secondary169.png b/my_docs/17/TACC_sysadmin_17/figures/secondary169.png new file mode 100644 index 000000000..cb9060a56 Binary files /dev/null and b/my_docs/17/TACC_sysadmin_17/figures/secondary169.png differ diff --git a/my_docs/17/TACC_sysadmin_17/figures/secondary_right.jpg b/my_docs/17/TACC_sysadmin_17/figures/secondary_right.jpg new file mode 100644 index 000000000..f25f93a58 Binary files /dev/null and b/my_docs/17/TACC_sysadmin_17/figures/secondary_right.jpg differ diff --git a/my_docs/17/TACC_sysadmin_17/figures/secondary_right169.jpg b/my_docs/17/TACC_sysadmin_17/figures/secondary_right169.jpg new file mode 100644 index 000000000..567a1078f Binary files /dev/null and b/my_docs/17/TACC_sysadmin_17/figures/secondary_right169.jpg differ diff --git a/my_docs/17/TACC_sysadmin_17/themes b/my_docs/17/TACC_sysadmin_17/themes deleted file mode 120000 index a98530730..000000000 --- a/my_docs/17/TACC_sysadmin_17/themes +++ /dev/null @@ -1 +0,0 @@ -../../beamer/themes \ No newline at end of file diff --git a/my_docs/17/TACC_sysadmin_17/themes/beamercolorthemeTACC16.sty b/my_docs/17/TACC_sysadmin_17/themes/beamercolorthemeTACC16.sty new file mode 100644 index 000000000..248ae8cb6 --- /dev/null +++ b/my_docs/17/TACC_sysadmin_17/themes/beamercolorthemeTACC16.sty @@ -0,0 +1,193 @@ +% Copyright 2003 by Till Tantau . +% +% This program can be redistributed and/or modified under the terms +% of the GNU Public License, version 2. + +\mode + +\usepackage{textcase,regexpatch} + +\setbeamertemplate{blocks}[rounded][shadow=true] + + +\definecolor{TACCred}{RGB}{180,13,29} +\definecolor{TACCorange}{RGB}{210,104,43} +\definecolor{TACCblue}{RGB}{21,77,122} +%\definecolor{TACCgreen}{RGB}{30,134,104} +\definecolor{TACCgreen}{RGB}{49,168,51} + +% I downloaded a gimp color palette from +% http://maururu.net/2007/latex-beamer-color-palette/ +% Which provides rgb values (I think) for several of the +% default beamer themes. You can open this in gimp by +% opening the Palettes dialog, right-clicking anywhere and choosing +% 'Import Palette'. A color in there called 'default added blue' +% appeared to be approximately what I wanted. It had the triple +% of values 141 145 208. If you double-click on this in the +% palette editor it gives you a bunch of information. You can't +% use these values directly to set a color...it just comes out white. +% I think definecolor is expecting something normalized by 255. Yes! + + +%%% +% Set the normal text color +%%% +\setbeamercolor{normal text}{fg=black} %,bg=white} +\setbeamercolor{example text}{fg=TACCgreen} +\setbeamercolor{alerted text}{fg=TACCorange} + + +\setbeamercolor{structure}{fg=black} +%\setbeamercolor{structure}{fg=black} + +\setbeamercolor{background canvas}{parent=normal text} +\setbeamercolor{background}{parent=background canvas} + +\setbeamercolor{palette primary}{use=structure,fg=structure.fg} +\setbeamercolor{palette secondary}{use=structure,fg=structure.fg!75!black} +\setbeamercolor{palette tertiary}{use=structure,fg=structure.fg!50!black} +\setbeamercolor{palette quaternary}{fg=black} + +\setbeamercolor{palette sidebar primary}{use=normal text,fg=normal text.fg} +\setbeamercolor{palette sidebar secondary}{use=structure,fg=structure.fg} +\setbeamercolor{palette sidebar tertiary}{use=normal text,fg=normal text.fg} +\setbeamercolor{palette sidebar quaternary}{use=structure,fg=structure.fg} + +\setbeamercolor{math text}{} +\setbeamercolor{math text inlined}{parent=math text} +\setbeamercolor{math text displayed}{parent=math text} + +\setbeamercolor{normal text in math text}{} + +\setbeamercolor{local structure}{parent=structure} + +\setbeamercolor{titlelike}{parent=structure} + +\setbeamercolor{title}{parent=titlelike} +\setbeamercolor{title in head/foot}{parent=palette quaternary} +\setbeamercolor{title in sidebar}{parent=palette sidebar quaternary} + +\setbeamercolor{subtitle}{parent=title} + +\setbeamercolor{author}{} +\setbeamercolor{author in head/foot}{parent=palette primary} +\setbeamercolor{author in sidebar}{use=palette sidebar tertiary,fg=palette sidebar tertiary.fg} + +\setbeamercolor{institute}{} +\setbeamercolor{institute in head/foot}{parent=palette tertiary} +\setbeamercolor{institute in sidebar}{use=palette sidebar tertiary,fg=palette sidebar tertiary.fg} + +\setbeamercolor{date}{} +\setbeamercolor{date in head/foot}{parent=palette secondary} +\setbeamercolor{date in sidebar}{use=palette sidebar tertiary,fg=palette sidebar tertiary.fg} + +\setbeamercolor{titlegraphic}{} + +\setbeamercolor{part name}{} +\setbeamercolor{part title}{parent=titlelike} + +\setbeamercolor{section in toc}{parent=structure} +\setbeamercolor{section in toc shaded}{parent=section in toc} +\setbeamercolor{section in head/foot}{parent=palette tertiary} +\setbeamercolor{section in sidebar}{parent=palette sidebar secondary} +\setbeamercolor{section in sidebar shaded}{use=section in sidebar,fg=section in sidebar.fg!40!bg} +\setbeamercolor{section number projected}{parent=item projected} + +\setbeamercolor{subsection in toc}{} +\setbeamercolor{subsection in toc shaded}{parent=subsection in toc} +\setbeamercolor{subsection in head/foot}{parent=palette secondary} +\setbeamercolor{subsection in sidebar}{parent=palette sidebar primary} +\setbeamercolor{subsection in sidebar shaded}{use=subsection in sidebar,fg=subsection in sidebar.fg!40!bg} +\setbeamercolor{subsection number projected}{parent={subitem projected}} + +\setbeamercolor{subsubsection in toc}{parent=subsection in toc} +\setbeamercolor{subsubsection in toc shaded}{parent=subsubsection in toc} +\setbeamercolor{subsubsection in head/foot}{parent=subsection in head/foot} +\setbeamercolor{subsubsection in sidebar}{parent=subsection in sidebar} +\setbeamercolor{subsubsection in sidebar shaded}{parent=subsection in sidebar shaded} +\setbeamercolor{subsubsection number projected}{parent=subsubitem projected} + +\setbeamercolor{headline}{} +\setbeamercolor{footline}{} + +\setbeamercolor{sidebar}{} +\setbeamercolor{sidebar left}{parent=sidebar} +\setbeamercolor{sidebar right}{parent=sidebar} + +\setbeamercolor{logo}{parent=palette secondary} + +\setbeamercolor{frametitle}{parent=titlelike} +\setbeamercolor{framesubtitle}{parent=frametitle} + +\setbeamercolor{frametitle right}{parent=frametitle} + +\setbeamercolor{caption}{} +\setbeamercolor{caption name}{parent=structure} + +\setbeamercolor{button}{use=local structure,bg=local structure.fg!50!bg,fg=white} +\setbeamercolor{button border}{use=button,fg=button.bg} +\setbeamercolor{navigation symbols}{use=structure,fg=structure.fg!40!bg} +\setbeamercolor{navigation symbols dimmed}{use=structure,fg=structure.fg!20!bg} +\setbeamercolor{mini frame}{parent=section in head/foot} + +\setbeamercolor{block body}{fg=black} +\setbeamercolor{block body alerted}{fg=black} +\setbeamercolor{block body example}{fg=black} + +\setbeamercolor{block title}{bg=TACCblue,fg=white} +\setbeamercolor{block title alerted}{bg=TACCred,fg=white} +\setbeamercolor{block title example}{bg=TACCgreen,fg=white} + +\setbeamercolor{item}{parent=local structure} +\setbeamercolor{subitem}{parent=item} +\setbeamercolor{subsubitem}{parent=subitem} + +\setbeamercolor{item projected}{parent=item,use=item,fg=black,bg=item.fg} +\setbeamercolor{subitem projected}{parent=item projected} +\setbeamercolor{subsubitem projected}{parent=subitem projected} + +\setbeamercolor{enumerate item}{parent=item} +\setbeamercolor{enumerate subitem}{parent=subitem} +\setbeamercolor{enumerate subsubitem}{parent=subsubitem} + +\setbeamercolor{itemize item}{parent=item} +\setbeamercolor{itemize subitem}{parent=subitem} +\setbeamercolor{itemize subsubitem}{parent=subsubitem} + +\setbeamercolor{itemize/enumerate body}{} +\setbeamercolor{itemize/enumerate subbody}{} +\setbeamercolor{itemize/enumerate subsubbody}{} + +\setbeamercolor{description item}{parent=item} + +\setbeamercolor{bibliography item}{parent=item} + +\setbeamercolor{bibliography entry author}{use=structure,fg=structure.fg} +\setbeamercolor{bibliography entry title}{use=normal text,fg=normal text.fg} +\setbeamercolor{bibliography entry location}{use=structure,fg=structure.fg!65!bg} +\setbeamercolor{bibliography entry note}{use=structure,fg=structure.fg!65!bg} + +\setbeamercolor{separation line}{} + +\setbeamercolor{upper separation line head}{parent=separation line} +\setbeamercolor{middle separation line head}{parent=separation line} +\setbeamercolor{lower separation line head}{parent=separation line} + +\setbeamercolor{upper separation line foot}{parent=separation line} +\setbeamercolor{middle separation line foot}{parent=separation line} +\setbeamercolor{lower separation line foot}{parent=separation line} + +\setbeamercolor{abstract}{} +\setbeamercolor{abstract title}{parent=structure} + +\setbeamercolor{verse}{} + +\setbeamercolor{quotation}{} +\setbeamercolor{quote}{parent=quotation} + +\setbeamercolor{page number in head/foot}{fg=fg!50!bg} + +\setbeamercolor{qed symbol}{parent=structure} + +\mode + diff --git a/my_docs/17/TACC_sysadmin_17/themes/beamerfontthemeTACC16.sty b/my_docs/17/TACC_sysadmin_17/themes/beamerfontthemeTACC16.sty new file mode 100644 index 000000000..d0fc325cc --- /dev/null +++ b/my_docs/17/TACC_sysadmin_17/themes/beamerfontthemeTACC16.sty @@ -0,0 +1,21 @@ +% Copyright 2003 by Till Tantau +% +% This program can be redistributed and/or modified under the terms +% of the GNU Public License, version 2. + +\mode +\setbeamerfont{title}{parent=structure,size=\LARGE,series=\bfseries} +\setbeamerfont{author}{parent=structure,size=\large, series=\normalfont} +\setbeamerfont{frametitle}{parent=structure,size=\LARGE,series=\bfseries} +\setbeamerfont{framesubtitle}{parent=frametitle,size=\small} + +%\usefonttheme{professionalfonts} % using non standard fonts for beamer +%\usefonttheme{serif} % default family is serif +%\usepackage{fontspec} +%\setmainfont{Century Gothic} + +%\usepackage{fontspec} +\usepackage{libertine} + +\mode + diff --git a/my_docs/17/TACC_sysadmin_17/themes/beamerinnerthemeTACC16.sty b/my_docs/17/TACC_sysadmin_17/themes/beamerinnerthemeTACC16.sty new file mode 100644 index 000000000..f7f454e1d --- /dev/null +++ b/my_docs/17/TACC_sysadmin_17/themes/beamerinnerthemeTACC16.sty @@ -0,0 +1,11 @@ +\mode + +\setbeamertemplate{itemize item}[triangle] +\setbeamertemplate{itemize subitem}[triangle] +\setbeamertemplate{itemize subsubitem}[triangle] +\setbeamertemplate{section in toc}{$\bullet$\hskip.5em\inserttocsection} +%\setbeamertemplate{subsection in toc}{} +\setbeamertemplate{subsubsection in toc}{} + +\mode + diff --git a/my_docs/17/TACC_sysadmin_17/themes/beamerouterthemeTACC16-169.sty b/my_docs/17/TACC_sysadmin_17/themes/beamerouterthemeTACC16-169.sty new file mode 100644 index 000000000..c62f9ed04 --- /dev/null +++ b/my_docs/17/TACC_sysadmin_17/themes/beamerouterthemeTACC16-169.sty @@ -0,0 +1,247 @@ +% Copyright 2003 by Till Tantau +% +% This program can be redistributed and/or modified under the terms +% of the GNU Public License, version 2. + +\mode + +\usepackage{xcolor} +\usepackage{graphicx} +\usepackage{etoolbox} + +\pgfdeclareimage[width=\paperwidth]{titlebackground}{./figures/master169.png} +\pgfdeclareimage[width=\paperwidth]{background}{./figures/secondary169.png} + +\setbeamertemplate{background canvas}{% + \ifnum\c@framenumber=1% + \begin{picture}(0,0) + \put(-0.15,-250){% + \pgfuseimage{titlebackground} + } + %\put(0,-130.7){% + + %\begin{minipage}[b][45mm][t]{\textwidth}%{226mm} + %\begin{center} + % \usebeamerfont{title}{\MakeTextUppercase{\inserttitle}\par} + %\vspace{2ex} + %\usebeamerfont{author}{\insertauthor} + % \end{center} + %\end{minipage} + %} + \end{picture} + % On title page + \else% + % Other frames background + \begin{picture}(0,0) + \put(-0.15,-255.55){% + \pgfuseimage{background} + } + \end{picture} + \fi% +} + + +\setbeamertemplate{title page}{ +\vspace{40pt} +\begin{center} +\usebeamerfont{title} {\huge \inserttitle}\par +\vspace{4ex} +\usebeamerfont{author} { + \insertauthor +}\par +\vspace{2ex} +\usebeamerfont{institute}{ + \insertinstitute +} \par +\vspace{2ex} +\usebeamerfont{date}{ + \insertdate +} +\end{center} +} + + +\setbeamertemplate{frametitle}[default][center] +\setbeamertemplate{frametitle}{ + \makeatletter + \regexpatchcmd{\insertframetitle} + {(\c{usebeamertemplate}.*)\c{fi}} + {\c{NoCaseChange}\cB\{\1\cE\}\c{fi}} + {}{}% + \makeatother + \vskip1ex + \insertframetitle +} + +% Here we define what appears at the bottom of each slide: the "footline". +\setbeamertemplate{footline}{% + \leavevmode% + + % Horizontal line dividing the rest of the slide from the footer? + % hrule goes all the way across... + % \hrule height.3pt% + % With \rule, you can specify the thickness + % \rule[raise-height]{width}{thickness} + % \hspace{.025\textwidth}\rule{.95\textwidth}{.5pt} + + \hbox{% + \ifnum \thepage>1 + % On the left half of the footer, insert the TACC of + \begin{minipage}{.2\textwidth}% + \hskip .05\textwidth%Give horizontal space else this will set on the left edge of the slide! + % \includegraphics[width=.8\textwidth]{TACC_logo.png} + \end{minipage} + + + \begin{minipage}{\textwidth}% + % \vskip .023\textheight% + \raggedleft% + \setlength{\rightskip}{\textwidth} + \hbox{% + \begin{beamercolorbox}[wd=0.7\textwidth,ht=2.25ex,dp=1ex,left]{author in head/foot}% + \insertshorttitle{} \hskip .01\textwidth | \hskip .01\textwidth \insertdate{} \hskip .01\textwidth | \hskip .01\textwidth \insertframenumber{} + \end{beamercolorbox}% + } + + % + % If we are not on the first page, insert a page number + % For some reason, insertframenumber is buggy when you have fragile + % slides with verbatim environments in them... it tends to skip numbers + % for some reason! On the other hand, the pagenumber is incremented + % for *every* slide, including transition slides... + % \hfill\includegraphics[width=\textwidth]{tacc_ut.png} + \end{minipage}% + \begin{minipage}{.05\textwidth}% + \end{minipage}% + \fi %\thepage>1 + }% + \vskip .023\textheight% + +} + + + + +\ifTACCheadernav + +\usesectionheadtemplate +{\hfill\insertsectionhead} +{\hfill\color{fg!50!bg}\insertsectionhead} + +% Head +\ifbeamer@compress + +% Here we define how the top of the frame looks, the "headline". +\setbeamertemplate{headline} +{% + \ifnum \thepage>1 + \leavevmode% + \begin{beamercolorbox}[wd=.5\paperwidth,ht=2.5ex,dp=1.125ex]{% + section in head/foot}% + \insertsectionnavigationhorizontal{.5\paperwidth}{\hskip0pt plus1filll}{}% + \end{beamercolorbox}% + \begin{beamercolorbox}[wd=.5\paperwidth,ht=2.5ex,dp=1.125ex]{% + subsection in head/foot}% + \insertsubsectionnavigationhorizontal{% + .5\paperwidth}{}{\hskip0pt plus1filll}% + \end{beamercolorbox}% + \fi %\thepage>1 +} + +\else% Not compressed + +\setbeamertemplate{headline} +{% + \ifnum \thepage>1 + \leavevmode% + \@tempdimb=2.4375ex% + \ifnum\beamer@subsectionmax<\beamer@sectionmax% + \multiply\@tempdimb by\beamer@sectionmax% + \else% + \multiply\@tempdimb by\beamer@subsectionmax% + \fi% + \ifdim\@tempdimb>0pt% + \advance\@tempdimb by 1.125ex% + \begin{beamercolorbox}[wd=.5\paperwidth,ht=\@tempdimb]{% + section in head/foot}% + \vbox to\@tempdimb{\vfil\insertsectionnavigation{.5\paperwidth}\vfil}% + \end{beamercolorbox}% + \begin{beamercolorbox}[wd=.5\paperwidth,ht=\@tempdimb]{% + subsection in head/foot}% + \vbox to\@tempdimb{\vfil\insertsubsectionnavigation{.5\paperwidth}\vfil}% + \end{beamercolorbox}% + \fi% + \fi % \thepage>1 +} + +\fi % end if compressed +\fi % TACCheadernav + + +\ifTACCheadertree + +\setbeamertemplate{headline} +{ + \begin{beamercolorbox}[wd=\paperwidth,colsep=1.5pt]{upper separation line head} + \end{beamercolorbox} + % + % Place short title + % + \begin{beamercolorbox}[wd=\paperwidth,ht=2.5ex,dp=1.125ex,% + leftskip=.3cm,rightskip=.3cm plus1fil]{title in head/foot} + \usebeamerfont{title in head/foot}\insertshorttitle + \end{beamercolorbox} + + % + % Place section + % + \begin{beamercolorbox}[wd=\paperwidth,ht=2.5ex,dp=1.125ex,% + leftskip=.3cm,rightskip=.3cm plus1fil]{section in head/foot} + \usebeamerfont{section in head/foot}% + %\ifbeamer@tree@showhooks + \setbox\beamer@tempbox=\hbox{\insertsectionhead}% + \ifdim\wd\beamer@tempbox>1pt% + \hskip2pt\raise1.9pt\hbox{\vrule width0.4pt height1.875ex\vrule width 5pt height0.4pt}% + \hskip1pt% + \fi + \insertsectionhead + \end{beamercolorbox} + +% +% Place subsection +% +\begin{beamercolorbox}[wd=\paperwidth,ht=2.5ex,dp=1.125ex,% + leftskip=.3cm,rightskip=.3cm plus1fil]{subsection in head/foot} + \usebeamerfont{subsection in head/foot}% + %\ifbeamer@tree@showhooks + \setbox\beamer@tempbox=\hbox{\insertsubsectionhead}% + \ifdim\wd\beamer@tempbox>1pt% + \hskip9.4pt\raise1.9pt\hbox{\vrule width0.4pt height1.875ex\vrule width 5pt height0.4pt}% + \hskip1pt% + \fi + \insertsubsectionhead +\end{beamercolorbox} + +% +% Place final separation box +% + \begin{beamercolorbox}[wd=\paperwidth,colsep=1.5pt + ]{lower separation line head} + \end{beamercolorbox} + + % + % Another matching rule which helps to frame the content + % + \hspace{.025\textwidth}\rule{.95\textwidth}{.5pt} +} +\fi % TACCheadertree + + +% The following command suppresses all navigation symbols. This is +% necessary in the TACC theme, since it overlaps where we want the +% logo to be. +\setbeamertemplate{navigation symbols}{} + + +\mode + diff --git a/my_docs/17/TACC_sysadmin_17/themes/beamerouterthemeTACC16.sty b/my_docs/17/TACC_sysadmin_17/themes/beamerouterthemeTACC16.sty new file mode 100644 index 000000000..c5b178018 --- /dev/null +++ b/my_docs/17/TACC_sysadmin_17/themes/beamerouterthemeTACC16.sty @@ -0,0 +1,247 @@ +% Copyright 2003 by Till Tantau +% +% This program can be redistributed and/or modified under the terms +% of the GNU Public License, version 2. + +\mode + +\usepackage{xcolor} +\usepackage{graphicx} +\usepackage{etoolbox} + +\pgfdeclareimage[width=\paperwidth]{titlebackground}{master.jpg} +\pgfdeclareimage[width=\paperwidth]{background}{secondary.jpg} + +\setbeamertemplate{background canvas}{% + \ifnum\c@framenumber=1% + \begin{picture}(0,0) + \put(0,-273){% + \pgfuseimage{titlebackground} + } + %\put(0,-130.7){% + + %\begin{minipage}[b][45mm][t]{\textwidth}%{226mm} + %\begin{center} + % \usebeamerfont{title}{\MakeTextUppercase{\inserttitle}\par} + %\vspace{2ex} + %\usebeamerfont{author}{\insertauthor} + % \end{center} + %\end{minipage} + %} + \end{picture} + % On title page + \else% + % Other frames background + \begin{picture}(0,0) + \put(0,-273){% + \pgfuseimage{background} + } + \end{picture} + \fi% +} + + +\setbeamertemplate{title page}{ +\vspace{40pt} +\begin{center} +\usebeamerfont{title} {\huge \inserttitle}\par +\vspace{4ex} +\usebeamerfont{author} { + \insertauthor +}\par +\vspace{2ex} +\usebeamerfont{institute}{ + \insertinstitute +} \par +\vspace{2ex} +\usebeamerfont{date}{ + \insertdate +} +\end{center} +} + + +\setbeamertemplate{frametitle}[default][center] +\setbeamertemplate{frametitle}{ + \makeatletter + \regexpatchcmd{\insertframetitle} + {(\c{usebeamertemplate}.*)\c{fi}} + {\c{NoCaseChange}\cB\{\1\cE\}\c{fi}} + {}{}% + \makeatother + \vskip1ex + \insertframetitle +} + +% Here we define what appears at the bottom of each slide: the "footline". +\setbeamertemplate{footline}{% + \leavevmode% + + % Horizontal line dividing the rest of the slide from the footer? + % hrule goes all the way across... + % \hrule height.3pt% + % With \rule, you can specify the thickness + % \rule[raise-height]{width}{thickness} + % \hspace{.025\textwidth}\rule{.95\textwidth}{.5pt} + + \hbox{% + \ifnum \thepage>1 + % On the left half of the footer, insert the TACC of + \begin{minipage}{.2\textwidth}% + \hskip .05\textwidth%Give horizontal space else this will set on the left edge of the slide! + % \includegraphics[width=.8\textwidth]{figures/TACC_logo.png} + \end{minipage} + + + \begin{minipage}{\textwidth}% + % \vskip .023\textheight% + \raggedleft% + \setlength{\rightskip}{\textwidth} + \hbox{% + \begin{beamercolorbox}[wd=0.7\textwidth,ht=2.25ex,dp=1ex,left]{author in head/foot}% + \insertshorttitle{} \hskip .01\textwidth | \hskip .01\textwidth \insertdate{} \hskip .01\textwidth | \hskip .01\textwidth \insertframenumber{} + \end{beamercolorbox}% + } + + % + % If we are not on the first page, insert a page number + % For some reason, insertframenumber is buggy when you have fragile + % slides with verbatim environments in them... it tends to skip numbers + % for some reason! On the other hand, the pagenumber is incremented + % for *every* slide, including transition slides... + % \hfill\includegraphics[width=\textwidth]{figures/tacc_ut.png} + \end{minipage}% + \begin{minipage}{.05\textwidth}% + \end{minipage}% + \fi %\thepage>1 + }% + \vskip .023\textheight% + +} + + + + +\ifTACCheadernav + +\usesectionheadtemplate +{\hfill\insertsectionhead} +{\hfill\color{fg!50!bg}\insertsectionhead} + +% Head +\ifbeamer@compress + +% Here we define how the top of the frame looks, the "headline". +\setbeamertemplate{headline} +{% + \ifnum \thepage>1 + \leavevmode% + \begin{beamercolorbox}[wd=.5\paperwidth,ht=2.5ex,dp=1.125ex]{% + section in head/foot}% + \insertsectionnavigationhorizontal{.5\paperwidth}{\hskip0pt plus1filll}{}% + \end{beamercolorbox}% + \begin{beamercolorbox}[wd=.5\paperwidth,ht=2.5ex,dp=1.125ex]{% + subsection in head/foot}% + \insertsubsectionnavigationhorizontal{% + .5\paperwidth}{}{\hskip0pt plus1filll}% + \end{beamercolorbox}% + \fi %\thepage>1 +} + +\else% Not compressed + +\setbeamertemplate{headline} +{% + \ifnum \thepage>1 + \leavevmode% + \@tempdimb=2.4375ex% + \ifnum\beamer@subsectionmax<\beamer@sectionmax% + \multiply\@tempdimb by\beamer@sectionmax% + \else% + \multiply\@tempdimb by\beamer@subsectionmax% + \fi% + \ifdim\@tempdimb>0pt% + \advance\@tempdimb by 1.125ex% + \begin{beamercolorbox}[wd=.5\paperwidth,ht=\@tempdimb]{% + section in head/foot}% + \vbox to\@tempdimb{\vfil\insertsectionnavigation{.5\paperwidth}\vfil}% + \end{beamercolorbox}% + \begin{beamercolorbox}[wd=.5\paperwidth,ht=\@tempdimb]{% + subsection in head/foot}% + \vbox to\@tempdimb{\vfil\insertsubsectionnavigation{.5\paperwidth}\vfil}% + \end{beamercolorbox}% + \fi% + \fi % \thepage>1 +} + +\fi % end if compressed +\fi % TACCheadernav + + +\ifTACCheadertree + +\setbeamertemplate{headline} +{ + \begin{beamercolorbox}[wd=\paperwidth,colsep=1.5pt]{upper separation line head} + \end{beamercolorbox} + % + % Place short title + % + \begin{beamercolorbox}[wd=\paperwidth,ht=2.5ex,dp=1.125ex,% + leftskip=.3cm,rightskip=.3cm plus1fil]{title in head/foot} + \usebeamerfont{title in head/foot}\insertshorttitle + \end{beamercolorbox} + + % + % Place section + % + \begin{beamercolorbox}[wd=\paperwidth,ht=2.5ex,dp=1.125ex,% + leftskip=.3cm,rightskip=.3cm plus1fil]{section in head/foot} + \usebeamerfont{section in head/foot}% + %\ifbeamer@tree@showhooks + \setbox\beamer@tempbox=\hbox{\insertsectionhead}% + \ifdim\wd\beamer@tempbox>1pt% + \hskip2pt\raise1.9pt\hbox{\vrule width0.4pt height1.875ex\vrule width 5pt height0.4pt}% + \hskip1pt% + \fi + \insertsectionhead + \end{beamercolorbox} + +% +% Place subsection +% +\begin{beamercolorbox}[wd=\paperwidth,ht=2.5ex,dp=1.125ex,% + leftskip=.3cm,rightskip=.3cm plus1fil]{subsection in head/foot} + \usebeamerfont{subsection in head/foot}% + %\ifbeamer@tree@showhooks + \setbox\beamer@tempbox=\hbox{\insertsubsectionhead}% + \ifdim\wd\beamer@tempbox>1pt% + \hskip9.4pt\raise1.9pt\hbox{\vrule width0.4pt height1.875ex\vrule width 5pt height0.4pt}% + \hskip1pt% + \fi + \insertsubsectionhead +\end{beamercolorbox} + +% +% Place final separation box +% + \begin{beamercolorbox}[wd=\paperwidth,colsep=1.5pt + ]{lower separation line head} + \end{beamercolorbox} + + % + % Another matching rule which helps to frame the content + % + \hspace{.025\textwidth}\rule{.95\textwidth}{.5pt} +} +\fi % TACCheadertree + + +% The following command suppresses all navigation symbols. This is +% necessary in the TACC theme, since it overlaps where we want the +% logo to be. +\setbeamertemplate{navigation symbols}{} + + +\mode + diff --git a/my_docs/17/TACC_sysadmin_17/themes/beamerthemeTACC16-169.sty b/my_docs/17/TACC_sysadmin_17/themes/beamerthemeTACC16-169.sty new file mode 100644 index 000000000..22caf9a05 --- /dev/null +++ b/my_docs/17/TACC_sysadmin_17/themes/beamerthemeTACC16-169.sty @@ -0,0 +1,38 @@ +%% TACC theme for beamer + +\newif\ifTACCheadernav +\DeclareOption{headernav}{\global\TACCheadernavtrue} + +\newif\ifTACCheadertree +\DeclareOption{headertree}{\global\TACCheadertreetrue} +\ProcessOptions + +\mode + +\makeatletter + \def\beamer@calltheme#1#2#3{% + \def\beamer@themelist{#2} + \@for\beamer@themename:=\beamer@themelist\do + {\usepackage[{#1}]{\beamer@themelocation/#3\beamer@themename}}} + + \def\usefolder#1{ + \def\beamer@themelocation{#1} + } + \def\beamer@themelocation{} + +\usefolder{themes} +\usefonttheme{TACC16} +\useinnertheme{TACC16} +\useoutertheme{TACC16-169} +\usecolortheme{TACC16} + +\mode + + +\newcommand{\event}[1]{% + \makeatletter% + \def\TACC@eventname{#1}% + \makeatother} + +\newcommand{\sectionframe}[1]{\section{#1}\frame{\Large\textbf{#1}}} +\newcommand{\subsectionframe}[1]{\subsection{#1}\frame{\large\textbf{#1}}} diff --git a/my_docs/17/TACC_sysadmin_17/themes/beamerthemeTACC16.sty b/my_docs/17/TACC_sysadmin_17/themes/beamerthemeTACC16.sty new file mode 100644 index 000000000..750bdd388 --- /dev/null +++ b/my_docs/17/TACC_sysadmin_17/themes/beamerthemeTACC16.sty @@ -0,0 +1,26 @@ +%% TACC theme for beamer + +\newif\ifTACCheadernav +\DeclareOption{headernav}{\global\TACCheadernavtrue} + +\newif\ifTACCheadertree +\DeclareOption{headertree}{\global\TACCheadertreetrue} +\ProcessOptions + +\mode + +\usefonttheme{TACC16} +\useinnertheme{TACC16} +\useoutertheme{TACC16} +\usecolortheme{TACC16} + +\mode + + +\newcommand{\event}[1]{% + \makeatletter% + \def\TACC@eventname{#1}% + \makeatother} + +\newcommand{\sectionframe}[1]{\section{#1}\frame{\Large\textbf{#1}}} +\newcommand{\subsectionframe}[1]{\subsection{#1}\frame{\large\textbf{#1}}} diff --git a/my_docs/17/TACC_sysadmin_17/themes/example.pdf b/my_docs/17/TACC_sysadmin_17/themes/example.pdf new file mode 100644 index 000000000..add373eee Binary files /dev/null and b/my_docs/17/TACC_sysadmin_17/themes/example.pdf differ diff --git a/my_docs/17/TACC_sysadmin_17/themes/license.tex b/my_docs/17/TACC_sysadmin_17/themes/license.tex new file mode 100644 index 000000000..74ff86759 --- /dev/null +++ b/my_docs/17/TACC_sysadmin_17/themes/license.tex @@ -0,0 +1,14 @@ + +\begin{frame}{License} +\footnotesize +\textcopyright The University of Texas at Austin, \the\year\\ +\vspace{0.5 cm} +This work is licensed under the Creative Commons Attribution Non-Commercial 3.0 Unported License. To view a copy of this license, +visit http://creativecommons.org/licenses/by-nc/3.0/\\ +\vspace{0.5 cm} +When attributing this work, please use the following text: +"Designing and Administering Large-scale Systems", Texas Advanced Computing Center, \the\year. Available under a Creative Commons Attribution Non-Commercial 3.0 Unported License. +\newline +\newline +\includegraphics[width=1cm]{./figures/cc.png} +\end{frame} \ No newline at end of file diff --git a/my_docs/17/hpckp_17/beamercolorthemeTACC.sty b/my_docs/17/hpckp_17/beamercolorthemeTACC.sty deleted file mode 120000 index 8d27e673a..000000000 --- a/my_docs/17/hpckp_17/beamercolorthemeTACC.sty +++ /dev/null @@ -1 +0,0 @@ -../../beamer/beamercolorthemeTACC.sty \ No newline at end of file diff --git a/my_docs/17/hpckp_17/beamercolorthemeTACC.sty b/my_docs/17/hpckp_17/beamercolorthemeTACC.sty new file mode 100755 index 000000000..78beb6a4a --- /dev/null +++ b/my_docs/17/hpckp_17/beamercolorthemeTACC.sty @@ -0,0 +1,323 @@ +% Copyright 2003 by Till Tantau . +% +% This program can be redistributed and/or modified under the terms +% of the GNU Public License, version 2. + +\mode + +% I downloaded a gimp color palette from +% http://maururu.net/2007/latex-beamer-color-palette/ +% Which provides rgb values (I think) for several of the +% default beamer themes. You can open this in gimp by +% opening the Palettes dialog, right-clicking anywhere and choosing +% 'Import Palette'. A color in there called 'default added blue' +% appeared to be approximately what I wanted. It had the triple +% of values 141 145 208. If you double-click on this in the +% palette editor it gives you a bunch of information. You can't +% use these values directly to set a color...it just comes out white. +% I think definecolor is expecting something normalized by 255. Yes! + + +% bluish colors +\definecolor{defaddedblue}{rgb}{0.5529,.5686,.8157} % 141,145,208 +\definecolor{defblockheader}{rgb}{.1921,.2235,.6824} % 49,57,174 +\definecolor{flyaddedblue}{rgb}{.5961,.6118,.8431} % 152,156,215 + +% bluish-greys +\definecolor{beetleaddedblue1}{rgb}{.3333,.4039,.6196} % 85 103 158, dark +\definecolor{beetleaddedblue2}{rgb}{.4510,.5098,.7020} % 115 130 179, medium +\definecolor{beetleaddedblue3}{rgb}{.7059,.7255,.7961} % 180 185 203, light (greyest) + +% very light blue-greys +\definecolor{deflightouter1}{rgb}{.7608,.7647,.9020} % 194 195 230, dark +\definecolor{deflightouter2}{rgb}{.8 ,.8039,.9176} % 204 205 234, medium +\definecolor{deflightouter3}{rgb}{.8392,.8431,.9373} % 214 215 239, light + +% reddish colors +\definecolor{flyalertblockheader}{rgb}{.7373,.1294,.1333} % 188 33 34 +\definecolor{flyaddedred}{rgb}{.8667,.5647,.5647}% 221 144 144 +\definecolor{beaverouterframe}{rgb}{.5529,.0980,.0980}% 141 25 25 + +% greens (green is used for 'examples' in beamer) +\definecolor{defexblock}{rgb}{.9098,.9333,.9020} % 232 238 230, light +\definecolor{defaddedgreen}{rgb}{.5412,.6510,.4706} % 138 166 120, medium +\definecolor{defexblockheader}{rgb}{.1686,.3647,.0392} % 43 93 10, dark + +\definecolor{lightexblock}{rgb}{.9137,.9451,.9020} % 233 241 230, light +\definecolor{lightexblockheader}{rgb}{.8235,.8980,.8} % 210 229 204, medium +\definecolor{lightexblockheadertext}{rgb}{.2431,.5098,.0745} % 62 130 19, dark + + +%%% +% Set the normal text color +%%% +\setbeamercolor{normal text}{fg=black,bg=white} + +%%% +% Set the alerted text color +%%% +% \setbeamercolor{alerted text}{fg=red} +\setbeamercolor{alerted text}{fg=red!50!black} % half black/half red for green bg +% \setbeamercolor{alerted text}{fg=beaverouterframe} +% \setbeamercolor{alerted text}{fg=defblockheader} % doesn't stand out enough + + +% Set the 'example' text +\setbeamercolor{example text}{fg=green!50!black} + +\setbeamercolor{structure}{fg=black} + +\setbeamercolor{background canvas}{parent=normal text} +\setbeamercolor{background}{parent=background canvas} + +\setbeamercolor{palette primary}{use=structure,fg=structure.fg} +\setbeamercolor{palette secondary}{use=structure,fg=structure.fg!75!black} +\setbeamercolor{palette tertiary}{use=structure,fg=structure.fg!50!black} +\setbeamercolor{palette quaternary}{fg=black} + +\setbeamercolor{palette sidebar primary}{use=normal text,fg=normal text.fg} +\setbeamercolor{palette sidebar secondary}{use=structure,fg=structure.fg} +\setbeamercolor{palette sidebar tertiary}{use=normal text,fg=normal text.fg} +\setbeamercolor{palette sidebar quaternary}{use=structure,fg=structure.fg} + +\setbeamercolor{math text}{} +\setbeamercolor{math text inlined}{parent=math text} +\setbeamercolor{math text displayed}{parent=math text} + +\setbeamercolor{normal text in math text}{} + +\setbeamercolor{local structure}{parent=structure} + +\setbeamercolor{titlelike}{parent=structure} + +\setbeamercolor{title}{parent=titlelike} +\setbeamercolor{title in head/foot}{parent=palette quaternary} +\setbeamercolor{title in sidebar}{parent=palette sidebar quaternary} + +\setbeamercolor{subtitle}{parent=title} + +\setbeamercolor{author}{} +\setbeamercolor{author in head/foot}{parent=palette primary} +\setbeamercolor{author in sidebar}{use=palette sidebar tertiary,fg=palette sidebar tertiary.fg} + +\setbeamercolor{institute}{} +\setbeamercolor{institute in head/foot}{parent=palette tertiary} +\setbeamercolor{institute in sidebar}{use=palette sidebar tertiary,fg=palette sidebar tertiary.fg} + +\setbeamercolor{date}{} +\setbeamercolor{date in head/foot}{parent=palette secondary} +\setbeamercolor{date in sidebar}{use=palette sidebar tertiary,fg=palette sidebar tertiary.fg} + +\setbeamercolor{titlegraphic}{} + +\setbeamercolor{part name}{} +\setbeamercolor{part title}{parent=titlelike} + +\setbeamercolor{section in toc}{parent=structure} +\setbeamercolor{section in toc shaded}{parent=section in toc} +\setbeamercolor{section in head/foot}{parent=palette tertiary} +\setbeamercolor{section in sidebar}{parent=palette sidebar secondary} +\setbeamercolor{section in sidebar shaded}{use=section in sidebar,fg=section in sidebar.fg!40!bg} +\setbeamercolor{section number projected}{parent=item projected} + +\setbeamercolor{subsection in toc}{} +\setbeamercolor{subsection in toc shaded}{parent=subsection in toc} +\setbeamercolor{subsection in head/foot}{parent=palette secondary} +\setbeamercolor{subsection in sidebar}{parent=palette sidebar primary} +\setbeamercolor{subsection in sidebar shaded}{use=subsection in sidebar,fg=subsection in sidebar.fg!40!bg} +\setbeamercolor{subsection number projected}{parent={subitem projected}} + +\setbeamercolor{subsubsection in toc}{parent=subsection in toc} +\setbeamercolor{subsubsection in toc shaded}{parent=subsubsection in toc} +\setbeamercolor{subsubsection in head/foot}{parent=subsection in head/foot} +\setbeamercolor{subsubsection in sidebar}{parent=subsection in sidebar} +\setbeamercolor{subsubsection in sidebar shaded}{parent=subsection in sidebar shaded} +\setbeamercolor{subsubsection number projected}{parent=subsubitem projected} + +\setbeamercolor{headline}{} +\setbeamercolor{footline}{} + +\setbeamercolor{sidebar}{} +\setbeamercolor{sidebar left}{parent=sidebar} +\setbeamercolor{sidebar right}{parent=sidebar} + +\setbeamercolor{logo}{parent=palette secondary} + +\setbeamercolor{frametitle}{parent=titlelike} +\setbeamercolor{framesubtitle}{parent=frametitle} + +\setbeamercolor{frametitle right}{parent=frametitle} + +\setbeamercolor{caption}{} +\setbeamercolor{caption name}{parent=structure} + +\setbeamercolor{button}{use=local structure,bg=local structure.fg!50!bg,fg=white} +\setbeamercolor{button border}{use=button,fg=button.bg} +\setbeamercolor{navigation symbols}{use=structure,fg=structure.fg!40!bg} +\setbeamercolor{navigation symbols dimmed}{use=structure,fg=structure.fg!20!bg} +\setbeamercolor{mini frame}{parent=section in head/foot} + +% Color expressions are defined in the xcolor package +% +% Ex: Mixture of 40% green, 60% yellow: green!40!yellow +% +% The complement of any color can be obtained by prepending +% a minus sign: -green!40!yellow +% +% One can also combine up to three colors (in differing proportions) +% using the rgb command. For example, the following command combines +% 3 parts of the first color, with 2 parts of the second, and one part +% "red" +% +%\color{rgb:-green!40!yellow,3;green!40!yellow,2;red,1} +% Unfortunately, I don't think this works as an argument to setbeamercolor... +% "Orange" bg=green!30!yellow!30!red +% close to burnt orange: red!75!green +% lightgray is a color, but gray!25!white looks better +% +% A nice pair of greens +% (dark, a little too dark to be under black text...) -red!75!green!50!blue!25 +% (light) -red!75!green!50!blue!25!gray +% +% Some colors are only available via options to the xcolor package, eg. +% x11names,DarkOliveGreen4 +% svgnames, Chartreuse +% dvipsnames, ForestGreen +% +% but beamer does not seem to have any of these. +% +% The base color names which are always available are: +% black +% blue +% brown +% cyan +% darkgray +% gray +% green +% lightgray +% lime +% magenta +% olive +% orange +% pink +% purple +% red +% teal +% violet +% white +% yellow + +% From the beamer user guide, pg. 167 +% Inner color themes only specify the colors of elements used in inner +% themes. Most noticably, they specify the colors used for blocks. +% ... + +% Example color definition +% beamercolorthemedefault.sty:\definecolor{beamer@blendedblue}{rgb}{0.2,0.2,0.7} +% beamercolorthemedefault.sty:\setbeamercolor{structure}{fg=beamer@blendedblue} + +% The greens +% \setbeamercolor{block body}{bg=-red!75!green!50!blue!25!gray} +% \setbeamercolor{block title}{parent=structure,bg=-red!75!green!50!blue!25,fg=-red!75!green!50!blue!25!gray} + +%%% +% Set the block body and title background/foreground colors +%%% +% \setbeamercolor{block body}{bg=flyaddedblue} +% \setbeamercolor{block title}{bg=defblockheader,fg=flyaddedblue} + +% Purplish blues, too dark overall +% \setbeamercolor{block body}{bg=beetleaddedblue3} +% \setbeamercolor{block title}{bg=beetleaddedblue2,fg=beetleaddedblue3} + +% Very light blue greys +% 1. Not enough contrast +% \setbeamercolor{block body}{bg=deflightouter3} +% \setbeamercolor{block title}{bg=deflightouter2,fg=deflightouter3} + +% 2. Not enough contrast +% \setbeamercolor{block body}{bg=deflightouter3} +% \setbeamercolor{block title}{bg=deflightouter1,fg=deflightouter3} + +% 3. Combination of deflightouter and fly. The block bg is +% lighter than the all-beetle color scheme I previously thought was best. +% Currently I like this one the best +\setbeamercolor{block body}{bg=deflightouter3} +\setbeamercolor{block title}{bg=beetleaddedblue2,fg=deflightouter3} + +% 4. Greens. Looks like a highlighter. I don't really trust greens +% on projectors... It's almost too bright/hurts your eyes. +% \setbeamercolor{block body}{bg=defexblock} +% \setbeamercolor{block title}{bg=defaddedgreen,fg=defexblock} + +% This looks pretty good ... it's similar to the greens we had before +% but should be lighter. The blocks are just a little too "mint" colored +% though... +% \setbeamercolor{block body}{bg=defexblock} +% \setbeamercolor{block title}{bg=defexblockheader,fg=defexblock} + +% Pea Soup! +%\setbeamercolor{block body}{bg=defaddedgreen} +%\setbeamercolor{block title}{bg=defexblockheader,fg=defaddedgreen} + + +% Changing these didn't seem to do anything...I had to change the +% 'alerted text' color instead +\setbeamercolor{block body alerted}{} +\setbeamercolor{block body example}{} +\setbeamercolor{block title alerted}{parent=alerted text} +\setbeamercolor{block title example}{parent=example text} + +\setbeamercolor{item}{parent=local structure} +\setbeamercolor{subitem}{parent=item} +\setbeamercolor{subsubitem}{parent=subitem} + +\setbeamercolor{item projected}{parent=item,use=item,fg=white,bg=item.fg} +\setbeamercolor{subitem projected}{parent=item projected} +\setbeamercolor{subsubitem projected}{parent=subitem projected} + +\setbeamercolor{enumerate item}{parent=item} +\setbeamercolor{enumerate subitem}{parent=subitem} +\setbeamercolor{enumerate subsubitem}{parent=subsubitem} + +\setbeamercolor{itemize item}{parent=item} +\setbeamercolor{itemize subitem}{parent=subitem} +\setbeamercolor{itemize subsubitem}{parent=subsubitem} + +\setbeamercolor{itemize/enumerate body}{} +\setbeamercolor{itemize/enumerate subbody}{} +\setbeamercolor{itemize/enumerate subsubbody}{} + +\setbeamercolor{description item}{parent=item} + +\setbeamercolor{bibliography item}{parent=item} + +\setbeamercolor{bibliography entry author}{use=structure,fg=structure.fg} +\setbeamercolor{bibliography entry title}{use=normal text,fg=normal text.fg} +\setbeamercolor{bibliography entry location}{use=structure,fg=structure.fg!65!bg} +\setbeamercolor{bibliography entry note}{use=structure,fg=structure.fg!65!bg} + +\setbeamercolor{separation line}{} + +\setbeamercolor{upper separation line head}{parent=separation line} +\setbeamercolor{middle separation line head}{parent=separation line} +\setbeamercolor{lower separation line head}{parent=separation line} + +\setbeamercolor{upper separation line foot}{parent=separation line} +\setbeamercolor{middle separation line foot}{parent=separation line} +\setbeamercolor{lower separation line foot}{parent=separation line} + +\setbeamercolor{abstract}{} +\setbeamercolor{abstract title}{parent=structure} + +\setbeamercolor{verse}{} + +\setbeamercolor{quotation}{} +\setbeamercolor{quote}{parent=quotation} + +\setbeamercolor{page number in head/foot}{fg=fg!50!bg} + +\setbeamercolor{qed symbol}{parent=structure} + +\mode + diff --git a/my_docs/17/hpckp_17/beamercolorthemeTACC16.sty b/my_docs/17/hpckp_17/beamercolorthemeTACC16.sty deleted file mode 120000 index 58415801b..000000000 --- a/my_docs/17/hpckp_17/beamercolorthemeTACC16.sty +++ /dev/null @@ -1 +0,0 @@ -../../beamer/beamercolorthemeTACC16.sty \ No newline at end of file diff --git a/my_docs/17/hpckp_17/beamercolorthemeTACC16.sty b/my_docs/17/hpckp_17/beamercolorthemeTACC16.sty new file mode 100755 index 000000000..779dde91f --- /dev/null +++ b/my_docs/17/hpckp_17/beamercolorthemeTACC16.sty @@ -0,0 +1,192 @@ +% Copyright 2003 by Till Tantau . +% +% This program can be redistributed and/or modified under the terms +% of the GNU Public License, version 2. + +\mode + +\usepackage{textcase,regexpatch} + +\setbeamertemplate{blocks}[rounded][shadow=true] + + +\definecolor{TACCred}{RGB}{180,13,29} +\definecolor{TACCorange}{RGB}{210,104,43} +\definecolor{TACCblue}{RGB}{108, 134, 191} +\definecolor{TACCgreen}{RGB}{23,106,70} + +% I downloaded a gimp color palette from +% http://maururu.net/2007/latex-beamer-color-palette/ +% Which provides rgb values (I think) for several of the +% default beamer themes. You can open this in gimp by +% opening the Palettes dialog, right-clicking anywhere and choosing +% 'Import Palette'. A color in there called 'default added blue' +% appeared to be approximately what I wanted. It had the triple +% of values 141 145 208. If you double-click on this in the +% palette editor it gives you a bunch of information. You can't +% use these values directly to set a color...it just comes out white. +% I think definecolor is expecting something normalized by 255. Yes! + + +%%% +% Set the normal text color +%%% +\setbeamercolor{normal text}{fg=black} %,bg=white} +\setbeamercolor{example text}{fg=TACCgreen} +\setbeamercolor{alerted text}{fg=TACCorange} + + +\setbeamercolor{structure}{fg=black} +%\setbeamercolor{structure}{fg=black} + +\setbeamercolor{background canvas}{parent=normal text} +\setbeamercolor{background}{parent=background canvas} + +\setbeamercolor{palette primary}{use=structure,fg=structure.fg} +\setbeamercolor{palette secondary}{use=structure,fg=structure.fg!75!black} +\setbeamercolor{palette tertiary}{use=structure,fg=structure.fg!50!black} +\setbeamercolor{palette quaternary}{fg=black} + +\setbeamercolor{palette sidebar primary}{use=normal text,fg=normal text.fg} +\setbeamercolor{palette sidebar secondary}{use=structure,fg=structure.fg} +\setbeamercolor{palette sidebar tertiary}{use=normal text,fg=normal text.fg} +\setbeamercolor{palette sidebar quaternary}{use=structure,fg=structure.fg} + +\setbeamercolor{math text}{} +\setbeamercolor{math text inlined}{parent=math text} +\setbeamercolor{math text displayed}{parent=math text} + +\setbeamercolor{normal text in math text}{} + +\setbeamercolor{local structure}{parent=structure} + +\setbeamercolor{titlelike}{parent=structure} + +\setbeamercolor{title}{parent=titlelike} +\setbeamercolor{title in head/foot}{parent=palette quaternary} +\setbeamercolor{title in sidebar}{parent=palette sidebar quaternary} + +\setbeamercolor{subtitle}{parent=title} + +\setbeamercolor{author}{} +\setbeamercolor{author in head/foot}{parent=palette primary} +\setbeamercolor{author in sidebar}{use=palette sidebar tertiary,fg=palette sidebar tertiary.fg} + +\setbeamercolor{institute}{} +\setbeamercolor{institute in head/foot}{parent=palette tertiary} +\setbeamercolor{institute in sidebar}{use=palette sidebar tertiary,fg=palette sidebar tertiary.fg} + +\setbeamercolor{date}{} +\setbeamercolor{date in head/foot}{parent=palette secondary} +\setbeamercolor{date in sidebar}{use=palette sidebar tertiary,fg=palette sidebar tertiary.fg} + +\setbeamercolor{titlegraphic}{} + +\setbeamercolor{part name}{} +\setbeamercolor{part title}{parent=titlelike} + +\setbeamercolor{section in toc}{parent=structure} +\setbeamercolor{section in toc shaded}{parent=section in toc} +\setbeamercolor{section in head/foot}{parent=palette tertiary} +\setbeamercolor{section in sidebar}{parent=palette sidebar secondary} +\setbeamercolor{section in sidebar shaded}{use=section in sidebar,fg=section in sidebar.fg!40!bg} +\setbeamercolor{section number projected}{parent=item projected} + +\setbeamercolor{subsection in toc}{} +\setbeamercolor{subsection in toc shaded}{parent=subsection in toc} +\setbeamercolor{subsection in head/foot}{parent=palette secondary} +\setbeamercolor{subsection in sidebar}{parent=palette sidebar primary} +\setbeamercolor{subsection in sidebar shaded}{use=subsection in sidebar,fg=subsection in sidebar.fg!40!bg} +\setbeamercolor{subsection number projected}{parent={subitem projected}} + +\setbeamercolor{subsubsection in toc}{parent=subsection in toc} +\setbeamercolor{subsubsection in toc shaded}{parent=subsubsection in toc} +\setbeamercolor{subsubsection in head/foot}{parent=subsection in head/foot} +\setbeamercolor{subsubsection in sidebar}{parent=subsection in sidebar} +\setbeamercolor{subsubsection in sidebar shaded}{parent=subsection in sidebar shaded} +\setbeamercolor{subsubsection number projected}{parent=subsubitem projected} + +\setbeamercolor{headline}{} +\setbeamercolor{footline}{} + +\setbeamercolor{sidebar}{} +\setbeamercolor{sidebar left}{parent=sidebar} +\setbeamercolor{sidebar right}{parent=sidebar} + +\setbeamercolor{logo}{parent=palette secondary} + +\setbeamercolor{frametitle}{parent=titlelike} +\setbeamercolor{framesubtitle}{parent=frametitle} + +\setbeamercolor{frametitle right}{parent=frametitle} + +\setbeamercolor{caption}{} +\setbeamercolor{caption name}{parent=structure} + +\setbeamercolor{button}{use=local structure,bg=local structure.fg!50!bg,fg=white} +\setbeamercolor{button border}{use=button,fg=button.bg} +\setbeamercolor{navigation symbols}{use=structure,fg=structure.fg!40!bg} +\setbeamercolor{navigation symbols dimmed}{use=structure,fg=structure.fg!20!bg} +\setbeamercolor{mini frame}{parent=section in head/foot} + +\setbeamercolor{block body}{fg=black} +\setbeamercolor{block body alerted}{fg=black} +\setbeamercolor{block body example}{fg=black} + +\setbeamercolor{block title}{bg=TACCblue,fg=white} +\setbeamercolor{block title alerted}{bg=TACCred,fg=white} +\setbeamercolor{block title example}{bg=TACCgreen,fg=white} + +\setbeamercolor{item}{parent=local structure} +\setbeamercolor{subitem}{parent=item} +\setbeamercolor{subsubitem}{parent=subitem} + +\setbeamercolor{item projected}{parent=item,use=item,fg=black,bg=item.fg} +\setbeamercolor{subitem projected}{parent=item projected} +\setbeamercolor{subsubitem projected}{parent=subitem projected} + +\setbeamercolor{enumerate item}{parent=item} +\setbeamercolor{enumerate subitem}{parent=subitem} +\setbeamercolor{enumerate subsubitem}{parent=subsubitem} + +\setbeamercolor{itemize item}{parent=item} +\setbeamercolor{itemize subitem}{parent=subitem} +\setbeamercolor{itemize subsubitem}{parent=subsubitem} + +\setbeamercolor{itemize/enumerate body}{} +\setbeamercolor{itemize/enumerate subbody}{} +\setbeamercolor{itemize/enumerate subsubbody}{} + +\setbeamercolor{description item}{parent=item} + +\setbeamercolor{bibliography item}{parent=item} + +\setbeamercolor{bibliography entry author}{use=structure,fg=structure.fg} +\setbeamercolor{bibliography entry title}{use=normal text,fg=normal text.fg} +\setbeamercolor{bibliography entry location}{use=structure,fg=structure.fg!65!bg} +\setbeamercolor{bibliography entry note}{use=structure,fg=structure.fg!65!bg} + +\setbeamercolor{separation line}{} + +\setbeamercolor{upper separation line head}{parent=separation line} +\setbeamercolor{middle separation line head}{parent=separation line} +\setbeamercolor{lower separation line head}{parent=separation line} + +\setbeamercolor{upper separation line foot}{parent=separation line} +\setbeamercolor{middle separation line foot}{parent=separation line} +\setbeamercolor{lower separation line foot}{parent=separation line} + +\setbeamercolor{abstract}{} +\setbeamercolor{abstract title}{parent=structure} + +\setbeamercolor{verse}{} + +\setbeamercolor{quotation}{} +\setbeamercolor{quote}{parent=quotation} + +\setbeamercolor{page number in head/foot}{fg=fg!50!bg} + +\setbeamercolor{qed symbol}{parent=structure} + +\mode + diff --git a/my_docs/17/hpckp_17/beamerfontthemeTACC.sty b/my_docs/17/hpckp_17/beamerfontthemeTACC.sty deleted file mode 120000 index 78e971fb8..000000000 --- a/my_docs/17/hpckp_17/beamerfontthemeTACC.sty +++ /dev/null @@ -1 +0,0 @@ -../../beamer/beamerfontthemeTACC.sty \ No newline at end of file diff --git a/my_docs/17/hpckp_17/beamerfontthemeTACC.sty b/my_docs/17/hpckp_17/beamerfontthemeTACC.sty new file mode 100755 index 000000000..ef9ce1e5e --- /dev/null +++ b/my_docs/17/hpckp_17/beamerfontthemeTACC.sty @@ -0,0 +1,12 @@ +% Copyright 2003 by Till Tantau +% +% This program can be redistributed and/or modified under the terms +% of the GNU Public License, version 2. + +\mode + +\setbeamerfont{frametitle}{parent=structure,size=\LARGE,series=\bfseries} +\setbeamerfont{framesubtitle}{parent=frametitle,size=\small} + +\mode + \ No newline at end of file diff --git a/my_docs/17/hpckp_17/beamerfontthemeTACC16.sty b/my_docs/17/hpckp_17/beamerfontthemeTACC16.sty deleted file mode 120000 index a1f2fa5f9..000000000 --- a/my_docs/17/hpckp_17/beamerfontthemeTACC16.sty +++ /dev/null @@ -1 +0,0 @@ -../../beamer/beamerfontthemeTACC16.sty \ No newline at end of file diff --git a/my_docs/17/hpckp_17/beamerfontthemeTACC16.sty b/my_docs/17/hpckp_17/beamerfontthemeTACC16.sty new file mode 100755 index 000000000..b65271835 --- /dev/null +++ b/my_docs/17/hpckp_17/beamerfontthemeTACC16.sty @@ -0,0 +1,21 @@ +% Copyright 2003 by Till Tantau +% +% This program can be redistributed and/or modified under the terms +% of the GNU Public License, version 2. + +\mode +\setbeamerfont{title}{parent=structure,size=\LARGE,series=\bfseries} +\setbeamerfont{author}{parent=structure,size=\large, series=\normalfont} +\setbeamerfont{frametitle}{parent=structure,size=\LARGE,series=\bfseries} +\setbeamerfont{framesubtitle}{parent=frametitle,size=\small} + +%\usefonttheme{professionalfonts} % using non standard fonts for beamer +%\usefonttheme{serif} % default family is serif +%\usepackage{fontspec} +%\setmainfont{Century Gothic} + +\usepackage{fontspec} +\usepackage{libertine} + +\mode + diff --git a/my_docs/17/hpckp_17/beamerinnerthemeTACC.sty b/my_docs/17/hpckp_17/beamerinnerthemeTACC.sty deleted file mode 120000 index 8d5ae3921..000000000 --- a/my_docs/17/hpckp_17/beamerinnerthemeTACC.sty +++ /dev/null @@ -1 +0,0 @@ -../../beamer/beamerinnerthemeTACC.sty \ No newline at end of file diff --git a/my_docs/17/hpckp_17/beamerinnerthemeTACC.sty b/my_docs/17/hpckp_17/beamerinnerthemeTACC.sty new file mode 100755 index 000000000..29e2bce81 --- /dev/null +++ b/my_docs/17/hpckp_17/beamerinnerthemeTACC.sty @@ -0,0 +1,11 @@ +\mode + +\setbeamertemplate{itemize item}[circle] +\setbeamertemplate{itemize subitem}{{}--{}} +\setbeamertemplate{itemize subsubitem}[circle] +\setbeamertemplate{section in toc}{$\bullet$\hskip.5em\inserttocsection} +%\setbeamertemplate{subsection in toc}{} +\setbeamertemplate{subsubsection in toc}{} + +\mode + diff --git a/my_docs/17/hpckp_17/beamerinnerthemeTACC16.sty b/my_docs/17/hpckp_17/beamerinnerthemeTACC16.sty deleted file mode 120000 index 5955acc99..000000000 --- a/my_docs/17/hpckp_17/beamerinnerthemeTACC16.sty +++ /dev/null @@ -1 +0,0 @@ -../../beamer/beamerinnerthemeTACC16.sty \ No newline at end of file diff --git a/my_docs/17/hpckp_17/beamerinnerthemeTACC16.sty b/my_docs/17/hpckp_17/beamerinnerthemeTACC16.sty new file mode 100755 index 000000000..f7f454e1d --- /dev/null +++ b/my_docs/17/hpckp_17/beamerinnerthemeTACC16.sty @@ -0,0 +1,11 @@ +\mode + +\setbeamertemplate{itemize item}[triangle] +\setbeamertemplate{itemize subitem}[triangle] +\setbeamertemplate{itemize subsubitem}[triangle] +\setbeamertemplate{section in toc}{$\bullet$\hskip.5em\inserttocsection} +%\setbeamertemplate{subsection in toc}{} +\setbeamertemplate{subsubsection in toc}{} + +\mode + diff --git a/my_docs/17/hpckp_17/beamerouterthemeTACC.sty b/my_docs/17/hpckp_17/beamerouterthemeTACC.sty deleted file mode 120000 index da0a45d33..000000000 --- a/my_docs/17/hpckp_17/beamerouterthemeTACC.sty +++ /dev/null @@ -1 +0,0 @@ -../../beamer/beamerouterthemeTACC.sty \ No newline at end of file diff --git a/my_docs/17/hpckp_17/beamerouterthemeTACC.sty b/my_docs/17/hpckp_17/beamerouterthemeTACC.sty new file mode 100755 index 000000000..038580303 --- /dev/null +++ b/my_docs/17/hpckp_17/beamerouterthemeTACC.sty @@ -0,0 +1,196 @@ +% Copyright 2003 by Till Tantau +% +% This program can be redistributed and/or modified under the terms +% of the GNU Public License, version 2. + +\mode + +\setbeamertemplate{frametitle}[default][center] +\addtobeamertemplate{frametitle}{\vskip 4ex minus 4ex}{} + +% Here we define what appears at the bottom of each slide: the "footline". +\setbeamertemplate{footline}{% + \leavevmode% + + % Horizontal line dividing the rest of the slide from the footer? + % hrule goes all the way across... + % \hrule height.3pt% + % With \rule, you can specify the thickness + % \rule[raise-height]{width}{thickness} + \hspace{.025\textwidth}\rule{.95\textwidth}{.5pt} + + \hbox{% + % On the left half of the footer, insert the TACC logo + \begin{minipage}{.5\textwidth}% + \hskip .033\textwidth%Give horizontal space else this will set on the left edge of the slide! + % TACC logo with custom viewport! + \includegraphics[viewport=1 -1 135 35, clip=true, width=.4\textwidth]{figures/TACC_logo} + \end{minipage} + % + \begin{minipage}{.5\textwidth}% + \vskip .023\textheight% + \raggedleft% + \setlength{\rightskip}{.033\textwidth} + % + % If we are not on the first page, insert a page number + % For some reason, insertframenumber is buggy when you have fragile + % slides with verbatim environments in them... it tends to skip numbers + % for some reason! On the other hand, the pagenumber is incremented + % for *every* slide, including transition slides... + \ifnum \thepage>1 + % \insertshorttitle + \insertframenumber + % \insertframenumber/\inserttotalframenumber + % \insertpagenumber + \else % Do a phantom of whatever you do on other pages, so spacing matches + %$\phantom{\insertshorttitle}$ + $\phantom{\insertframenumber}$ + %$\phantom{\insertframenumber/\inserttotalframenumber}$ + %$\phantom{\insertpagenumber}$ + \fi + \hfill\includegraphics[width=.5\textwidth]{figures/UT_logo}% + \end{minipage}% + }% + \vskip .023\textheight% +} + + + + +\ifTACCheadernav + +\usesectionheadtemplate +{\hfill\insertsectionhead} +{\hfill\color{fg!50!bg}\insertsectionhead} + +% Head +\ifbeamer@compress + +% Here we define how the top of the frame looks, the "headline". +\setbeamertemplate{headline} +{% + \ifnum \thepage>1 + \leavevmode% + \begin{beamercolorbox}[wd=.5\paperwidth,ht=2.5ex,dp=1.125ex]{% + section in head/foot}% + \insertsectionnavigationhorizontal{.5\paperwidth}{\hskip0pt plus1filll}{}% + \end{beamercolorbox}% + \begin{beamercolorbox}[wd=.5\paperwidth,ht=2.5ex,dp=1.125ex]{% + subsection in head/foot}% + \insertsubsectionnavigationhorizontal{% + .5\paperwidth}{}{\hskip0pt plus1filll}% + \end{beamercolorbox}% + \fi %\thepage>1 +} + +\else% Not compressed + +\setbeamertemplate{headline} +{% + \ifnum \thepage>1 + \leavevmode% + \@tempdimb=2.4375ex% + \ifnum\beamer@subsectionmax<\beamer@sectionmax% + \multiply\@tempdimb by\beamer@sectionmax% + \else% + \multiply\@tempdimb by\beamer@subsectionmax% + \fi% + \ifdim\@tempdimb>0pt% + \advance\@tempdimb by 1.125ex% + \begin{beamercolorbox}[wd=.5\paperwidth,ht=\@tempdimb]{% + section in head/foot}% + \vbox to\@tempdimb{\vfil\insertsectionnavigation{.5\paperwidth}\vfil}% + \end{beamercolorbox}% + \begin{beamercolorbox}[wd=.5\paperwidth,ht=\@tempdimb]{% + subsection in head/foot}% + \vbox to\@tempdimb{\vfil\insertsubsectionnavigation{.5\paperwidth}\vfil}% + \end{beamercolorbox}% + \fi% + \fi % \thepage>1 +} + +\fi % end if compressed +\fi % TACCheadernav + + +\ifTACCheadertree + +\setbeamertemplate{headline} +{ + \begin{beamercolorbox}[wd=\paperwidth,colsep=1.5pt + ]{upper separation line head} + \end{beamercolorbox} + % + % Place short title + % + \begin{beamercolorbox}[wd=\paperwidth,ht=2.5ex,dp=1.125ex,% + leftskip=.3cm,rightskip=.3cm plus1fil]{title in head/foot} + \usebeamerfont{title in head/foot}\insertshorttitle + \end{beamercolorbox} + + % + % Place section + % + \begin{beamercolorbox}[wd=\paperwidth,ht=2.5ex,dp=1.125ex,% + leftskip=.3cm,rightskip=.3cm plus1fil]{section in head/foot} + \usebeamerfont{section in head/foot}% + %\ifbeamer@tree@showhooks + \setbox\beamer@tempbox=\hbox{\insertsectionhead}% + \ifdim\wd\beamer@tempbox>1pt% + \hskip2pt\raise1.9pt\hbox{\vrule width0.4pt height1.875ex\vrule width 5pt height0.4pt}% + \hskip1pt% + \fi% \ifdim + %\else% + %\hskip6pt% + %\fi% \ifbeamer + \insertsectionhead + \end{beamercolorbox} + +% +% Place subsection +% +\begin{beamercolorbox}[wd=\paperwidth,ht=2.5ex,dp=1.125ex,% + leftskip=.3cm,rightskip=.3cm plus1fil]{subsection in head/foot} + \usebeamerfont{subsection in head/foot}% + %\ifbeamer@tree@showhooks + \setbox\beamer@tempbox=\hbox{\insertsubsectionhead}% + \ifdim\wd\beamer@tempbox>1pt% + \hskip9.4pt\raise1.9pt\hbox{\vrule width0.4pt height1.875ex\vrule width 5pt height0.4pt}% + \hskip1pt% + \fi% \ifdim + %\else% + %\hskip12pt% + %\fi% \ifbeamer + \insertsubsectionhead +\end{beamercolorbox} + +% +% Place final separation box +% + \begin{beamercolorbox}[wd=\paperwidth,colsep=1.5pt + ]{lower separation line head} + \end{beamercolorbox} + + % + % Another matching rule which helps to frame the content + % + \hspace{.025\textwidth}\rule{.95\textwidth}{.5pt} +} +\fi % TACCheadertree + + +% The following command suppresses all navigation symbols. This is +% necessary in the TACC theme, since it overlaps where we want the +% logo to be. +\setbeamertemplate{navigation symbols}{} + +% Align the navigation symbols vertically (still overlaps our logo!) +%\setbeamertemplate{navigation symbols}[vertical]{} + +% Only places the slide-forward and slide-back symbol, but yes, +% this still overlaps our logo! +%\setbeamertemplate{navigation symbols}[only frame symbol]{} + + +\mode + diff --git a/my_docs/17/hpckp_17/beamerouterthemeTACC16.sty b/my_docs/17/hpckp_17/beamerouterthemeTACC16.sty deleted file mode 120000 index 54bd09537..000000000 --- a/my_docs/17/hpckp_17/beamerouterthemeTACC16.sty +++ /dev/null @@ -1 +0,0 @@ -../../beamer/beamerouterthemeTACC16.sty \ No newline at end of file diff --git a/my_docs/17/hpckp_17/beamerouterthemeTACC16.sty b/my_docs/17/hpckp_17/beamerouterthemeTACC16.sty new file mode 100755 index 000000000..d5e6388c7 --- /dev/null +++ b/my_docs/17/hpckp_17/beamerouterthemeTACC16.sty @@ -0,0 +1,312 @@ +% Antonio Gomez (agomez@tacc.utexas.edu) +% 4-20-17. Added option to put the footer on the right side + + + +\mode + +\usepackage{xcolor} +\usepackage{graphicx} +\usepackage{etoolbox} + + + +% This theme accepts the "rightfooter" option +% When used, it will put the TACC logo at the bottom of the slide on the right side +% By default, it goes to the left + +\xifaspectratio{ + {169} { + \pgfdeclareimage[width=\paperwidth]{titlebackground}{./figures/master169.jpg} + \if@rightfooterOption + \pgfdeclareimage[width=\paperwidth]{background}{./figures/secondary_right169.jpg} +\else + \pgfdeclareimage[width=\paperwidth]{background}{./figures/secondary169.jpg} +\fi +} +}[ +\pgfdeclareimage[width=\paperwidth]{titlebackground}{./figures/master.jpg} + \if@rightfooterOption + \pgfdeclareimage[width=\paperwidth]{background}{./figures/secondary_right.jpg} +\else + \pgfdeclareimage[width=\paperwidth]{background}{./figures/secondary.jpg} +\fi +] + +\setbeamertemplate{background canvas}{% +\xifaspectratio{ + {169} { + \ifnum\c@framenumber=1 % + \begin{picture}(0,0) + \put(-3,-256){% + \pgfuseimage{titlebackground} + } + \end{picture} + \else% + \begin{picture}(0,0) + \put(-3,-260){% + \pgfuseimage{background} + } + \end{picture} + \fi + } + {43} { + \ifnum\c@framenumber=1 % + \begin{picture}(0,0) + \put(-4,-274){% + \pgfuseimage{titlebackground} + } + \end{picture} + \else% + \begin{picture}(0,0) + \put(-4,-274){% + \pgfuseimage{background} + } + \end{picture} + \fi + } +} +} + + + +%\setbeamertemplate{background canvas}{% +% % On title page +% \ifnum\c@framenumber=1 % +% \begin{picture}(0,0) +% \put(0,-253){% +% \pgfuseimage{titlebackground} +% } +% \end{picture} +% +% \else% +% \xifaspectratio{ +% {169} { +% % Other frames background +% \begin{picture}(0,0) +% \put(-4,-260){% +% \pgfuseimage{background} +% } +% \end{picture} +% } +% }[ +% % Other frames background +% \begin{picture}(0,0) +% \put(-4,-274){% +% \pgfuseimage{background} +% } +% \end{picture} +% ] +% \fi% +%} + + +\setbeamertemplate{title page}{ +\vspace{40pt} +\begin{center} +\usebeamerfont{title} {\huge \inserttitle}\par +\vspace{4ex} +\usebeamerfont{author} { + \insertauthor +}\par +\vspace{2ex} +\usebeamerfont{institute}{ + \insertinstitute +} \par +\vspace{2ex} +\usebeamerfont{date}{ + \insertdate +} +\end{center} +} + + +\setbeamertemplate{frametitle}[default][center] +\setbeamertemplate{frametitle}{ + \makeatletter + \regexpatchcmd{\insertframetitle} + {(\c{usebeamertemplate}.*)\c{fi}} + {\c{NoCaseChange}\cB\{\1\cE\}\c{fi}} + {}{}% + \makeatother + \vskip1ex + \insertframetitle +} + +% Here we define what appears at the bottom of each slide: the "footline". +\setbeamertemplate{footline}{% + \leavevmode% + + % Horizontal line dividing the rest of the slide from the footer? + % hrule goes all the way across... + % \hrule height.3pt% + % With \rule, you can specify the thickness + % \rule[raise-height]{width}{thickness} + % \hspace{.025\textwidth}\rule{.95\textwidth}{.5pt} + + \hbox{% + \ifnum \thepage>1 + \if@rightfooterOption + \begin{minipage}{.2\textwidth}% + \hskip .05\textwidth%Give horizontal space else this will set on the left edge of the slide! + \end{minipage} + \else + \begin{minipage}{.4\textwidth}% + \hskip .05\textwidth%Give horizontal space else this will set on the left edge of the slide! + \end{minipage} + \fi + + + \begin{minipage}{\textwidth}% + % \vskip .023\textheight% + \raggedleft% + \setlength{\rightskip}{\textwidth} + \if@rightfooterOption + \hbox{% + \begin{beamercolorbox}[wd=0.7\textwidth,ht=2.25ex,dp=1ex,left]{author in head/foot}% + \insertshorttitle{} \hskip .01\textwidth | \hskip .01\textwidth \insertdate{} \hskip .01\textwidth | \hskip .01\textwidth \insertframenumber{} + \end{beamercolorbox}% + } + \else + \hbox{% + \begin{beamercolorbox}[wd=0.5\textwidth,ht=2.25ex,dp=1ex,left]{author in head/foot}% + \insertshorttitle{} \hskip .01\textwidth | \hskip .01\textwidth \insertdate{} \hskip .01\textwidth | \hskip .01\textwidth \insertframenumber{} + \end{beamercolorbox}% + } + \fi + + \end{minipage}% + \begin{minipage}{.05\textwidth}% + \end{minipage}% + \fi %\thepage>1 + }% + \vskip .023\textheight% + +} + + + + +\ifTACCheadernav + +\usesectionheadtemplate +{\hfill\insertsectionhead} +{\hfill\color{fg!50!bg}\insertsectionhead} + +% Head +\ifbeamer@compress + +% Here we define how the top of the frame looks, the "headline". +\setbeamertemplate{headline} +{% + \ifnum \thepage>1 + \leavevmode% + \begin{beamercolorbox}[wd=.5\paperwidth,ht=2.5ex,dp=1.125ex]{% + section in head/foot}% + \insertsectionnavigationhorizontal{.5\paperwidth}{\hskip0pt plus1filll}{}% + \end{beamercolorbox}% + \begin{beamercolorbox}[wd=.5\paperwidth,ht=2.5ex,dp=1.125ex]{% + subsection in head/foot}% + \insertsubsectionnavigationhorizontal{% + .5\paperwidth}{}{\hskip0pt plus1filll}% + \end{beamercolorbox}% + \fi %\thepage>1 +} + +\else% Not compressed + +\setbeamertemplate{headline} +{% + \ifnum \thepage>1 + \leavevmode% + \@tempdimb=2.4375ex% + \ifnum\beamer@subsectionmax<\beamer@sectionmax% + \multiply\@tempdimb by\beamer@sectionmax% + \else% + \multiply\@tempdimb by\beamer@subsectionmax% + \fi% + \ifdim\@tempdimb>0pt% + \advance\@tempdimb by 1.125ex% + \begin{beamercolorbox}[wd=.5\paperwidth,ht=\@tempdimb]{% + section in head/foot}% + \vbox to\@tempdimb{\vfil\insertsectionnavigation{.5\paperwidth}\vfil}% + \end{beamercolorbox}% + \begin{beamercolorbox}[wd=.5\paperwidth,ht=\@tempdimb]{% + subsection in head/foot}% + \vbox to\@tempdimb{\vfil\insertsubsectionnavigation{.5\paperwidth}\vfil}% + \end{beamercolorbox}% + \fi% + \fi % \thepage>1 +} + +\fi % end if compressed +\fi % TACCheadernav + + +\ifTACCheadertree + +\setbeamertemplate{headline} +{ + \begin{beamercolorbox}[wd=\paperwidth,colsep=1.5pt]{upper separation line head} + \end{beamercolorbox} + % + % Place short title + % + \begin{beamercolorbox}[wd=\paperwidth,ht=2.5ex,dp=1.125ex,% + leftskip=.3cm,rightskip=.3cm plus1fil]{title in head/foot} + \usebeamerfont{title in head/foot}\insertshorttitle + \end{beamercolorbox} + + % + % Place section + % + \begin{beamercolorbox}[wd=\paperwidth,ht=2.5ex,dp=1.125ex,% + leftskip=.3cm,rightskip=.3cm plus1fil]{section in head/foot} + \usebeamerfont{section in head/foot}% + %\ifbeamer@tree@showhooks + \setbox\beamer@tempbox=\hbox{\insertsectionhead}% + \ifdim\wd\beamer@tempbox>1pt% + \hskip2pt\raise1.9pt\hbox{\vrule width0.4pt height1.875ex\vrule width 5pt height0.4pt}% + \hskip1pt% + \fi + \insertsectionhead + \end{beamercolorbox} + +% +% Place subsection +% +\begin{beamercolorbox}[wd=\paperwidth,ht=2.5ex,dp=1.125ex,% + leftskip=.3cm,rightskip=.3cm plus1fil]{subsection in head/foot} + \usebeamerfont{subsection in head/foot}% + %\ifbeamer@tree@showhooks + \setbox\beamer@tempbox=\hbox{\insertsubsectionhead}% + \ifdim\wd\beamer@tempbox>1pt% + \hskip9.4pt\raise1.9pt\hbox{\vrule width0.4pt height1.875ex\vrule width 5pt height0.4pt}% + \hskip1pt% + \fi + \insertsubsectionhead +\end{beamercolorbox} + +% +% Place final separation box +% + \begin{beamercolorbox}[wd=\paperwidth,colsep=1.5pt + ]{lower separation line head} + \end{beamercolorbox} + + % + % Another matching rule which helps to frame the content + % + \hspace{.025\textwidth}\rule{.95\textwidth}{.5pt} +} +\fi % TACCheadertree + + +% The following command suppresses all navigation symbols. This is +% necessary in the TACC theme, since it overlaps where we want the +% logo to be. +\setbeamertemplate{navigation symbols}{} + + +\mode + diff --git a/my_docs/17/hpckp_17/beamerthemeTACC.sty b/my_docs/17/hpckp_17/beamerthemeTACC.sty deleted file mode 120000 index 5c339abd4..000000000 --- a/my_docs/17/hpckp_17/beamerthemeTACC.sty +++ /dev/null @@ -1 +0,0 @@ -../../beamer/beamerthemeTACC.sty \ No newline at end of file diff --git a/my_docs/17/hpckp_17/beamerthemeTACC.sty b/my_docs/17/hpckp_17/beamerthemeTACC.sty new file mode 100755 index 000000000..c6a1b1269 --- /dev/null +++ b/my_docs/17/hpckp_17/beamerthemeTACC.sty @@ -0,0 +1,26 @@ +%% TACC theme for beamer + +\newif\ifTACCheadernav +\DeclareOption{headernav}{\global\TACCheadernavtrue} + +\newif\ifTACCheadertree +\DeclareOption{headertree}{\global\TACCheadertreetrue} +\ProcessOptions + +\mode + +\usefonttheme{TACC} +\usecolortheme{TACC} +\useinnertheme{TACC} +\useoutertheme{TACC} + +\mode + + +\newcommand{\event}[1]{% + \makeatletter% + \def\TACC@eventname{#1}% + \makeatother} + +\newcommand{\sectionframe}[1]{\section{#1}\frame{\Large\textbf{#1}}} +\newcommand{\subsectionframe}[1]{\subsection{#1}\frame{\large\textbf{#1}}} diff --git a/my_docs/17/hpckp_17/beamerthemeTACC16.sty b/my_docs/17/hpckp_17/beamerthemeTACC16.sty deleted file mode 120000 index 7a9d4d296..000000000 --- a/my_docs/17/hpckp_17/beamerthemeTACC16.sty +++ /dev/null @@ -1 +0,0 @@ -../../beamer/beamerthemeTACC16.sty \ No newline at end of file diff --git a/my_docs/17/hpckp_17/beamerthemeTACC16.sty b/my_docs/17/hpckp_17/beamerthemeTACC16.sty new file mode 100755 index 000000000..b522d0207 --- /dev/null +++ b/my_docs/17/hpckp_17/beamerthemeTACC16.sty @@ -0,0 +1,61 @@ +%% TACC theme for beamer + + +\newif\if@rightfooterOption +\@rightfooterOptionfalse +\DeclareOption{rightfooter}{\@rightfooterOptiontrue} +\ProcessOptions + + +\newif\ifTACCheadernav +\DeclareOption{headernav}{\global\TACCheadernavtrue} + +\newif\ifTACCheadertree +\DeclareOption{headertree}{\global\TACCheadertreetrue} +\ProcessOptions + +\usepackage{xparse} +\ExplSyntaxOn +\NewDocumentCommand{\ifaspectratio}{mmm} + { + % Recover the option from those passed to the class + \keys_set:nf { zunbeltz/beameroptions } { \use:c { opt@beamer.cls } } + \str_if_eq:nVTF { #1 } \l_zunbeltz_aspectratio_tl { #2 } { #3 } + } +\NewDocumentCommand{\xifaspectratio}{mO{}} + { + % Recover the option from those passed to the class + \keys_set:nf { zunbeltz/beameroptions } { \use:c { opt@beamer.cls } } + \str_case:VnF \l_zunbeltz_aspectratio_tl { #1 } { #2 } + } +% We need to define only one key, the other are treated as `unknown' +\keys_define:nn { zunbeltz/beameroptions } + { + aspectratio .tl_set:N = \l_zunbeltz_aspectratio_tl, + aspectratio .initial:n = 43, + unknown .code:n = {}, + } + +% Generate the variants we need +\cs_generate_variant:Nn \keys_set:nn { nf } +\cs_generate_variant:Nn \str_if_eq:nnTF { nV } +\cs_generate_variant:Nn \str_case:nnF { V } +\ExplSyntaxOff + +\mode + +\usefonttheme{TACC16} +\useinnertheme{TACC16} +\useoutertheme{TACC16} +\usecolortheme{TACC16} + +\mode + + +\newcommand{\event}[1]{% + \makeatletter% + \def\TACC@eventname{#1}% + \makeatother} + +\newcommand{\sectionframe}[1]{\section{#1}\frame{\Large\textbf{#1}}} +\newcommand{\subsectionframe}[1]{\subsection{#1}\frame{\large\textbf{#1}}} diff --git a/my_docs/17/hpckp_17/figures b/my_docs/17/hpckp_17/figures deleted file mode 120000 index ddafd8974..000000000 --- a/my_docs/17/hpckp_17/figures +++ /dev/null @@ -1 +0,0 @@ -../../beamer/figures \ No newline at end of file diff --git a/my_docs/17/hpckp_17/figures/TACC_logo.pdf b/my_docs/17/hpckp_17/figures/TACC_logo.pdf new file mode 100755 index 000000000..c018a20cb Binary files /dev/null and b/my_docs/17/hpckp_17/figures/TACC_logo.pdf differ diff --git a/my_docs/17/hpckp_17/figures/UT_logo.pdf b/my_docs/17/hpckp_17/figures/UT_logo.pdf new file mode 100755 index 000000000..d5b42e752 Binary files /dev/null and b/my_docs/17/hpckp_17/figures/UT_logo.pdf differ diff --git a/my_docs/17/hpckp_17/figures/cc.png b/my_docs/17/hpckp_17/figures/cc.png new file mode 100644 index 000000000..8a532ff8f Binary files /dev/null and b/my_docs/17/hpckp_17/figures/cc.png differ diff --git a/my_docs/17/hpckp_17/figures/isa.png b/my_docs/17/hpckp_17/figures/isa.png new file mode 100644 index 000000000..f95d985e7 Binary files /dev/null and b/my_docs/17/hpckp_17/figures/isa.png differ diff --git a/my_docs/17/hpckp_17/figures/master.jpg b/my_docs/17/hpckp_17/figures/master.jpg new file mode 100644 index 000000000..f5c56c04a Binary files /dev/null and b/my_docs/17/hpckp_17/figures/master.jpg differ diff --git a/my_docs/17/hpckp_17/figures/master169.jpg b/my_docs/17/hpckp_17/figures/master169.jpg new file mode 100644 index 000000000..b215776eb Binary files /dev/null and b/my_docs/17/hpckp_17/figures/master169.jpg differ diff --git a/my_docs/17/hpckp_17/figures/master169.png b/my_docs/17/hpckp_17/figures/master169.png new file mode 100644 index 000000000..bc5c0ed12 Binary files /dev/null and b/my_docs/17/hpckp_17/figures/master169.png differ diff --git a/my_docs/17/hpckp_17/figures/secondary.jpg b/my_docs/17/hpckp_17/figures/secondary.jpg new file mode 100644 index 000000000..d905a95c9 Binary files /dev/null and b/my_docs/17/hpckp_17/figures/secondary.jpg differ diff --git a/my_docs/17/hpckp_17/figures/secondary169.jpg b/my_docs/17/hpckp_17/figures/secondary169.jpg new file mode 100644 index 000000000..4eb017957 Binary files /dev/null and b/my_docs/17/hpckp_17/figures/secondary169.jpg differ diff --git a/my_docs/17/hpckp_17/figures/secondary169.png b/my_docs/17/hpckp_17/figures/secondary169.png new file mode 100644 index 000000000..cb9060a56 Binary files /dev/null and b/my_docs/17/hpckp_17/figures/secondary169.png differ diff --git a/my_docs/17/hpckp_17/figures/secondary_right.jpg b/my_docs/17/hpckp_17/figures/secondary_right.jpg new file mode 100644 index 000000000..f25f93a58 Binary files /dev/null and b/my_docs/17/hpckp_17/figures/secondary_right.jpg differ diff --git a/my_docs/17/hpckp_17/figures/secondary_right169.jpg b/my_docs/17/hpckp_17/figures/secondary_right169.jpg new file mode 100644 index 000000000..567a1078f Binary files /dev/null and b/my_docs/17/hpckp_17/figures/secondary_right169.jpg differ diff --git a/my_docs/17/hpckp_17/themes b/my_docs/17/hpckp_17/themes deleted file mode 120000 index a98530730..000000000 --- a/my_docs/17/hpckp_17/themes +++ /dev/null @@ -1 +0,0 @@ -../../beamer/themes \ No newline at end of file diff --git a/my_docs/17/hpckp_17/themes/beamercolorthemeTACC16.sty b/my_docs/17/hpckp_17/themes/beamercolorthemeTACC16.sty new file mode 100644 index 000000000..248ae8cb6 --- /dev/null +++ b/my_docs/17/hpckp_17/themes/beamercolorthemeTACC16.sty @@ -0,0 +1,193 @@ +% Copyright 2003 by Till Tantau . +% +% This program can be redistributed and/or modified under the terms +% of the GNU Public License, version 2. + +\mode + +\usepackage{textcase,regexpatch} + +\setbeamertemplate{blocks}[rounded][shadow=true] + + +\definecolor{TACCred}{RGB}{180,13,29} +\definecolor{TACCorange}{RGB}{210,104,43} +\definecolor{TACCblue}{RGB}{21,77,122} +%\definecolor{TACCgreen}{RGB}{30,134,104} +\definecolor{TACCgreen}{RGB}{49,168,51} + +% I downloaded a gimp color palette from +% http://maururu.net/2007/latex-beamer-color-palette/ +% Which provides rgb values (I think) for several of the +% default beamer themes. You can open this in gimp by +% opening the Palettes dialog, right-clicking anywhere and choosing +% 'Import Palette'. A color in there called 'default added blue' +% appeared to be approximately what I wanted. It had the triple +% of values 141 145 208. If you double-click on this in the +% palette editor it gives you a bunch of information. You can't +% use these values directly to set a color...it just comes out white. +% I think definecolor is expecting something normalized by 255. Yes! + + +%%% +% Set the normal text color +%%% +\setbeamercolor{normal text}{fg=black} %,bg=white} +\setbeamercolor{example text}{fg=TACCgreen} +\setbeamercolor{alerted text}{fg=TACCorange} + + +\setbeamercolor{structure}{fg=black} +%\setbeamercolor{structure}{fg=black} + +\setbeamercolor{background canvas}{parent=normal text} +\setbeamercolor{background}{parent=background canvas} + +\setbeamercolor{palette primary}{use=structure,fg=structure.fg} +\setbeamercolor{palette secondary}{use=structure,fg=structure.fg!75!black} +\setbeamercolor{palette tertiary}{use=structure,fg=structure.fg!50!black} +\setbeamercolor{palette quaternary}{fg=black} + +\setbeamercolor{palette sidebar primary}{use=normal text,fg=normal text.fg} +\setbeamercolor{palette sidebar secondary}{use=structure,fg=structure.fg} +\setbeamercolor{palette sidebar tertiary}{use=normal text,fg=normal text.fg} +\setbeamercolor{palette sidebar quaternary}{use=structure,fg=structure.fg} + +\setbeamercolor{math text}{} +\setbeamercolor{math text inlined}{parent=math text} +\setbeamercolor{math text displayed}{parent=math text} + +\setbeamercolor{normal text in math text}{} + +\setbeamercolor{local structure}{parent=structure} + +\setbeamercolor{titlelike}{parent=structure} + +\setbeamercolor{title}{parent=titlelike} +\setbeamercolor{title in head/foot}{parent=palette quaternary} +\setbeamercolor{title in sidebar}{parent=palette sidebar quaternary} + +\setbeamercolor{subtitle}{parent=title} + +\setbeamercolor{author}{} +\setbeamercolor{author in head/foot}{parent=palette primary} +\setbeamercolor{author in sidebar}{use=palette sidebar tertiary,fg=palette sidebar tertiary.fg} + +\setbeamercolor{institute}{} +\setbeamercolor{institute in head/foot}{parent=palette tertiary} +\setbeamercolor{institute in sidebar}{use=palette sidebar tertiary,fg=palette sidebar tertiary.fg} + +\setbeamercolor{date}{} +\setbeamercolor{date in head/foot}{parent=palette secondary} +\setbeamercolor{date in sidebar}{use=palette sidebar tertiary,fg=palette sidebar tertiary.fg} + +\setbeamercolor{titlegraphic}{} + +\setbeamercolor{part name}{} +\setbeamercolor{part title}{parent=titlelike} + +\setbeamercolor{section in toc}{parent=structure} +\setbeamercolor{section in toc shaded}{parent=section in toc} +\setbeamercolor{section in head/foot}{parent=palette tertiary} +\setbeamercolor{section in sidebar}{parent=palette sidebar secondary} +\setbeamercolor{section in sidebar shaded}{use=section in sidebar,fg=section in sidebar.fg!40!bg} +\setbeamercolor{section number projected}{parent=item projected} + +\setbeamercolor{subsection in toc}{} +\setbeamercolor{subsection in toc shaded}{parent=subsection in toc} +\setbeamercolor{subsection in head/foot}{parent=palette secondary} +\setbeamercolor{subsection in sidebar}{parent=palette sidebar primary} +\setbeamercolor{subsection in sidebar shaded}{use=subsection in sidebar,fg=subsection in sidebar.fg!40!bg} +\setbeamercolor{subsection number projected}{parent={subitem projected}} + +\setbeamercolor{subsubsection in toc}{parent=subsection in toc} +\setbeamercolor{subsubsection in toc shaded}{parent=subsubsection in toc} +\setbeamercolor{subsubsection in head/foot}{parent=subsection in head/foot} +\setbeamercolor{subsubsection in sidebar}{parent=subsection in sidebar} +\setbeamercolor{subsubsection in sidebar shaded}{parent=subsection in sidebar shaded} +\setbeamercolor{subsubsection number projected}{parent=subsubitem projected} + +\setbeamercolor{headline}{} +\setbeamercolor{footline}{} + +\setbeamercolor{sidebar}{} +\setbeamercolor{sidebar left}{parent=sidebar} +\setbeamercolor{sidebar right}{parent=sidebar} + +\setbeamercolor{logo}{parent=palette secondary} + +\setbeamercolor{frametitle}{parent=titlelike} +\setbeamercolor{framesubtitle}{parent=frametitle} + +\setbeamercolor{frametitle right}{parent=frametitle} + +\setbeamercolor{caption}{} +\setbeamercolor{caption name}{parent=structure} + +\setbeamercolor{button}{use=local structure,bg=local structure.fg!50!bg,fg=white} +\setbeamercolor{button border}{use=button,fg=button.bg} +\setbeamercolor{navigation symbols}{use=structure,fg=structure.fg!40!bg} +\setbeamercolor{navigation symbols dimmed}{use=structure,fg=structure.fg!20!bg} +\setbeamercolor{mini frame}{parent=section in head/foot} + +\setbeamercolor{block body}{fg=black} +\setbeamercolor{block body alerted}{fg=black} +\setbeamercolor{block body example}{fg=black} + +\setbeamercolor{block title}{bg=TACCblue,fg=white} +\setbeamercolor{block title alerted}{bg=TACCred,fg=white} +\setbeamercolor{block title example}{bg=TACCgreen,fg=white} + +\setbeamercolor{item}{parent=local structure} +\setbeamercolor{subitem}{parent=item} +\setbeamercolor{subsubitem}{parent=subitem} + +\setbeamercolor{item projected}{parent=item,use=item,fg=black,bg=item.fg} +\setbeamercolor{subitem projected}{parent=item projected} +\setbeamercolor{subsubitem projected}{parent=subitem projected} + +\setbeamercolor{enumerate item}{parent=item} +\setbeamercolor{enumerate subitem}{parent=subitem} +\setbeamercolor{enumerate subsubitem}{parent=subsubitem} + +\setbeamercolor{itemize item}{parent=item} +\setbeamercolor{itemize subitem}{parent=subitem} +\setbeamercolor{itemize subsubitem}{parent=subsubitem} + +\setbeamercolor{itemize/enumerate body}{} +\setbeamercolor{itemize/enumerate subbody}{} +\setbeamercolor{itemize/enumerate subsubbody}{} + +\setbeamercolor{description item}{parent=item} + +\setbeamercolor{bibliography item}{parent=item} + +\setbeamercolor{bibliography entry author}{use=structure,fg=structure.fg} +\setbeamercolor{bibliography entry title}{use=normal text,fg=normal text.fg} +\setbeamercolor{bibliography entry location}{use=structure,fg=structure.fg!65!bg} +\setbeamercolor{bibliography entry note}{use=structure,fg=structure.fg!65!bg} + +\setbeamercolor{separation line}{} + +\setbeamercolor{upper separation line head}{parent=separation line} +\setbeamercolor{middle separation line head}{parent=separation line} +\setbeamercolor{lower separation line head}{parent=separation line} + +\setbeamercolor{upper separation line foot}{parent=separation line} +\setbeamercolor{middle separation line foot}{parent=separation line} +\setbeamercolor{lower separation line foot}{parent=separation line} + +\setbeamercolor{abstract}{} +\setbeamercolor{abstract title}{parent=structure} + +\setbeamercolor{verse}{} + +\setbeamercolor{quotation}{} +\setbeamercolor{quote}{parent=quotation} + +\setbeamercolor{page number in head/foot}{fg=fg!50!bg} + +\setbeamercolor{qed symbol}{parent=structure} + +\mode + diff --git a/my_docs/17/hpckp_17/themes/beamerfontthemeTACC16.sty b/my_docs/17/hpckp_17/themes/beamerfontthemeTACC16.sty new file mode 100644 index 000000000..d0fc325cc --- /dev/null +++ b/my_docs/17/hpckp_17/themes/beamerfontthemeTACC16.sty @@ -0,0 +1,21 @@ +% Copyright 2003 by Till Tantau +% +% This program can be redistributed and/or modified under the terms +% of the GNU Public License, version 2. + +\mode +\setbeamerfont{title}{parent=structure,size=\LARGE,series=\bfseries} +\setbeamerfont{author}{parent=structure,size=\large, series=\normalfont} +\setbeamerfont{frametitle}{parent=structure,size=\LARGE,series=\bfseries} +\setbeamerfont{framesubtitle}{parent=frametitle,size=\small} + +%\usefonttheme{professionalfonts} % using non standard fonts for beamer +%\usefonttheme{serif} % default family is serif +%\usepackage{fontspec} +%\setmainfont{Century Gothic} + +%\usepackage{fontspec} +\usepackage{libertine} + +\mode + diff --git a/my_docs/17/hpckp_17/themes/beamerinnerthemeTACC16.sty b/my_docs/17/hpckp_17/themes/beamerinnerthemeTACC16.sty new file mode 100644 index 000000000..f7f454e1d --- /dev/null +++ b/my_docs/17/hpckp_17/themes/beamerinnerthemeTACC16.sty @@ -0,0 +1,11 @@ +\mode + +\setbeamertemplate{itemize item}[triangle] +\setbeamertemplate{itemize subitem}[triangle] +\setbeamertemplate{itemize subsubitem}[triangle] +\setbeamertemplate{section in toc}{$\bullet$\hskip.5em\inserttocsection} +%\setbeamertemplate{subsection in toc}{} +\setbeamertemplate{subsubsection in toc}{} + +\mode + diff --git a/my_docs/17/hpckp_17/themes/beamerouterthemeTACC16-169.sty b/my_docs/17/hpckp_17/themes/beamerouterthemeTACC16-169.sty new file mode 100644 index 000000000..c62f9ed04 --- /dev/null +++ b/my_docs/17/hpckp_17/themes/beamerouterthemeTACC16-169.sty @@ -0,0 +1,247 @@ +% Copyright 2003 by Till Tantau +% +% This program can be redistributed and/or modified under the terms +% of the GNU Public License, version 2. + +\mode + +\usepackage{xcolor} +\usepackage{graphicx} +\usepackage{etoolbox} + +\pgfdeclareimage[width=\paperwidth]{titlebackground}{./figures/master169.png} +\pgfdeclareimage[width=\paperwidth]{background}{./figures/secondary169.png} + +\setbeamertemplate{background canvas}{% + \ifnum\c@framenumber=1% + \begin{picture}(0,0) + \put(-0.15,-250){% + \pgfuseimage{titlebackground} + } + %\put(0,-130.7){% + + %\begin{minipage}[b][45mm][t]{\textwidth}%{226mm} + %\begin{center} + % \usebeamerfont{title}{\MakeTextUppercase{\inserttitle}\par} + %\vspace{2ex} + %\usebeamerfont{author}{\insertauthor} + % \end{center} + %\end{minipage} + %} + \end{picture} + % On title page + \else% + % Other frames background + \begin{picture}(0,0) + \put(-0.15,-255.55){% + \pgfuseimage{background} + } + \end{picture} + \fi% +} + + +\setbeamertemplate{title page}{ +\vspace{40pt} +\begin{center} +\usebeamerfont{title} {\huge \inserttitle}\par +\vspace{4ex} +\usebeamerfont{author} { + \insertauthor +}\par +\vspace{2ex} +\usebeamerfont{institute}{ + \insertinstitute +} \par +\vspace{2ex} +\usebeamerfont{date}{ + \insertdate +} +\end{center} +} + + +\setbeamertemplate{frametitle}[default][center] +\setbeamertemplate{frametitle}{ + \makeatletter + \regexpatchcmd{\insertframetitle} + {(\c{usebeamertemplate}.*)\c{fi}} + {\c{NoCaseChange}\cB\{\1\cE\}\c{fi}} + {}{}% + \makeatother + \vskip1ex + \insertframetitle +} + +% Here we define what appears at the bottom of each slide: the "footline". +\setbeamertemplate{footline}{% + \leavevmode% + + % Horizontal line dividing the rest of the slide from the footer? + % hrule goes all the way across... + % \hrule height.3pt% + % With \rule, you can specify the thickness + % \rule[raise-height]{width}{thickness} + % \hspace{.025\textwidth}\rule{.95\textwidth}{.5pt} + + \hbox{% + \ifnum \thepage>1 + % On the left half of the footer, insert the TACC of + \begin{minipage}{.2\textwidth}% + \hskip .05\textwidth%Give horizontal space else this will set on the left edge of the slide! + % \includegraphics[width=.8\textwidth]{TACC_logo.png} + \end{minipage} + + + \begin{minipage}{\textwidth}% + % \vskip .023\textheight% + \raggedleft% + \setlength{\rightskip}{\textwidth} + \hbox{% + \begin{beamercolorbox}[wd=0.7\textwidth,ht=2.25ex,dp=1ex,left]{author in head/foot}% + \insertshorttitle{} \hskip .01\textwidth | \hskip .01\textwidth \insertdate{} \hskip .01\textwidth | \hskip .01\textwidth \insertframenumber{} + \end{beamercolorbox}% + } + + % + % If we are not on the first page, insert a page number + % For some reason, insertframenumber is buggy when you have fragile + % slides with verbatim environments in them... it tends to skip numbers + % for some reason! On the other hand, the pagenumber is incremented + % for *every* slide, including transition slides... + % \hfill\includegraphics[width=\textwidth]{tacc_ut.png} + \end{minipage}% + \begin{minipage}{.05\textwidth}% + \end{minipage}% + \fi %\thepage>1 + }% + \vskip .023\textheight% + +} + + + + +\ifTACCheadernav + +\usesectionheadtemplate +{\hfill\insertsectionhead} +{\hfill\color{fg!50!bg}\insertsectionhead} + +% Head +\ifbeamer@compress + +% Here we define how the top of the frame looks, the "headline". +\setbeamertemplate{headline} +{% + \ifnum \thepage>1 + \leavevmode% + \begin{beamercolorbox}[wd=.5\paperwidth,ht=2.5ex,dp=1.125ex]{% + section in head/foot}% + \insertsectionnavigationhorizontal{.5\paperwidth}{\hskip0pt plus1filll}{}% + \end{beamercolorbox}% + \begin{beamercolorbox}[wd=.5\paperwidth,ht=2.5ex,dp=1.125ex]{% + subsection in head/foot}% + \insertsubsectionnavigationhorizontal{% + .5\paperwidth}{}{\hskip0pt plus1filll}% + \end{beamercolorbox}% + \fi %\thepage>1 +} + +\else% Not compressed + +\setbeamertemplate{headline} +{% + \ifnum \thepage>1 + \leavevmode% + \@tempdimb=2.4375ex% + \ifnum\beamer@subsectionmax<\beamer@sectionmax% + \multiply\@tempdimb by\beamer@sectionmax% + \else% + \multiply\@tempdimb by\beamer@subsectionmax% + \fi% + \ifdim\@tempdimb>0pt% + \advance\@tempdimb by 1.125ex% + \begin{beamercolorbox}[wd=.5\paperwidth,ht=\@tempdimb]{% + section in head/foot}% + \vbox to\@tempdimb{\vfil\insertsectionnavigation{.5\paperwidth}\vfil}% + \end{beamercolorbox}% + \begin{beamercolorbox}[wd=.5\paperwidth,ht=\@tempdimb]{% + subsection in head/foot}% + \vbox to\@tempdimb{\vfil\insertsubsectionnavigation{.5\paperwidth}\vfil}% + \end{beamercolorbox}% + \fi% + \fi % \thepage>1 +} + +\fi % end if compressed +\fi % TACCheadernav + + +\ifTACCheadertree + +\setbeamertemplate{headline} +{ + \begin{beamercolorbox}[wd=\paperwidth,colsep=1.5pt]{upper separation line head} + \end{beamercolorbox} + % + % Place short title + % + \begin{beamercolorbox}[wd=\paperwidth,ht=2.5ex,dp=1.125ex,% + leftskip=.3cm,rightskip=.3cm plus1fil]{title in head/foot} + \usebeamerfont{title in head/foot}\insertshorttitle + \end{beamercolorbox} + + % + % Place section + % + \begin{beamercolorbox}[wd=\paperwidth,ht=2.5ex,dp=1.125ex,% + leftskip=.3cm,rightskip=.3cm plus1fil]{section in head/foot} + \usebeamerfont{section in head/foot}% + %\ifbeamer@tree@showhooks + \setbox\beamer@tempbox=\hbox{\insertsectionhead}% + \ifdim\wd\beamer@tempbox>1pt% + \hskip2pt\raise1.9pt\hbox{\vrule width0.4pt height1.875ex\vrule width 5pt height0.4pt}% + \hskip1pt% + \fi + \insertsectionhead + \end{beamercolorbox} + +% +% Place subsection +% +\begin{beamercolorbox}[wd=\paperwidth,ht=2.5ex,dp=1.125ex,% + leftskip=.3cm,rightskip=.3cm plus1fil]{subsection in head/foot} + \usebeamerfont{subsection in head/foot}% + %\ifbeamer@tree@showhooks + \setbox\beamer@tempbox=\hbox{\insertsubsectionhead}% + \ifdim\wd\beamer@tempbox>1pt% + \hskip9.4pt\raise1.9pt\hbox{\vrule width0.4pt height1.875ex\vrule width 5pt height0.4pt}% + \hskip1pt% + \fi + \insertsubsectionhead +\end{beamercolorbox} + +% +% Place final separation box +% + \begin{beamercolorbox}[wd=\paperwidth,colsep=1.5pt + ]{lower separation line head} + \end{beamercolorbox} + + % + % Another matching rule which helps to frame the content + % + \hspace{.025\textwidth}\rule{.95\textwidth}{.5pt} +} +\fi % TACCheadertree + + +% The following command suppresses all navigation symbols. This is +% necessary in the TACC theme, since it overlaps where we want the +% logo to be. +\setbeamertemplate{navigation symbols}{} + + +\mode + diff --git a/my_docs/17/hpckp_17/themes/beamerouterthemeTACC16.sty b/my_docs/17/hpckp_17/themes/beamerouterthemeTACC16.sty new file mode 100644 index 000000000..c5b178018 --- /dev/null +++ b/my_docs/17/hpckp_17/themes/beamerouterthemeTACC16.sty @@ -0,0 +1,247 @@ +% Copyright 2003 by Till Tantau +% +% This program can be redistributed and/or modified under the terms +% of the GNU Public License, version 2. + +\mode + +\usepackage{xcolor} +\usepackage{graphicx} +\usepackage{etoolbox} + +\pgfdeclareimage[width=\paperwidth]{titlebackground}{master.jpg} +\pgfdeclareimage[width=\paperwidth]{background}{secondary.jpg} + +\setbeamertemplate{background canvas}{% + \ifnum\c@framenumber=1% + \begin{picture}(0,0) + \put(0,-273){% + \pgfuseimage{titlebackground} + } + %\put(0,-130.7){% + + %\begin{minipage}[b][45mm][t]{\textwidth}%{226mm} + %\begin{center} + % \usebeamerfont{title}{\MakeTextUppercase{\inserttitle}\par} + %\vspace{2ex} + %\usebeamerfont{author}{\insertauthor} + % \end{center} + %\end{minipage} + %} + \end{picture} + % On title page + \else% + % Other frames background + \begin{picture}(0,0) + \put(0,-273){% + \pgfuseimage{background} + } + \end{picture} + \fi% +} + + +\setbeamertemplate{title page}{ +\vspace{40pt} +\begin{center} +\usebeamerfont{title} {\huge \inserttitle}\par +\vspace{4ex} +\usebeamerfont{author} { + \insertauthor +}\par +\vspace{2ex} +\usebeamerfont{institute}{ + \insertinstitute +} \par +\vspace{2ex} +\usebeamerfont{date}{ + \insertdate +} +\end{center} +} + + +\setbeamertemplate{frametitle}[default][center] +\setbeamertemplate{frametitle}{ + \makeatletter + \regexpatchcmd{\insertframetitle} + {(\c{usebeamertemplate}.*)\c{fi}} + {\c{NoCaseChange}\cB\{\1\cE\}\c{fi}} + {}{}% + \makeatother + \vskip1ex + \insertframetitle +} + +% Here we define what appears at the bottom of each slide: the "footline". +\setbeamertemplate{footline}{% + \leavevmode% + + % Horizontal line dividing the rest of the slide from the footer? + % hrule goes all the way across... + % \hrule height.3pt% + % With \rule, you can specify the thickness + % \rule[raise-height]{width}{thickness} + % \hspace{.025\textwidth}\rule{.95\textwidth}{.5pt} + + \hbox{% + \ifnum \thepage>1 + % On the left half of the footer, insert the TACC of + \begin{minipage}{.2\textwidth}% + \hskip .05\textwidth%Give horizontal space else this will set on the left edge of the slide! + % \includegraphics[width=.8\textwidth]{figures/TACC_logo.png} + \end{minipage} + + + \begin{minipage}{\textwidth}% + % \vskip .023\textheight% + \raggedleft% + \setlength{\rightskip}{\textwidth} + \hbox{% + \begin{beamercolorbox}[wd=0.7\textwidth,ht=2.25ex,dp=1ex,left]{author in head/foot}% + \insertshorttitle{} \hskip .01\textwidth | \hskip .01\textwidth \insertdate{} \hskip .01\textwidth | \hskip .01\textwidth \insertframenumber{} + \end{beamercolorbox}% + } + + % + % If we are not on the first page, insert a page number + % For some reason, insertframenumber is buggy when you have fragile + % slides with verbatim environments in them... it tends to skip numbers + % for some reason! On the other hand, the pagenumber is incremented + % for *every* slide, including transition slides... + % \hfill\includegraphics[width=\textwidth]{figures/tacc_ut.png} + \end{minipage}% + \begin{minipage}{.05\textwidth}% + \end{minipage}% + \fi %\thepage>1 + }% + \vskip .023\textheight% + +} + + + + +\ifTACCheadernav + +\usesectionheadtemplate +{\hfill\insertsectionhead} +{\hfill\color{fg!50!bg}\insertsectionhead} + +% Head +\ifbeamer@compress + +% Here we define how the top of the frame looks, the "headline". +\setbeamertemplate{headline} +{% + \ifnum \thepage>1 + \leavevmode% + \begin{beamercolorbox}[wd=.5\paperwidth,ht=2.5ex,dp=1.125ex]{% + section in head/foot}% + \insertsectionnavigationhorizontal{.5\paperwidth}{\hskip0pt plus1filll}{}% + \end{beamercolorbox}% + \begin{beamercolorbox}[wd=.5\paperwidth,ht=2.5ex,dp=1.125ex]{% + subsection in head/foot}% + \insertsubsectionnavigationhorizontal{% + .5\paperwidth}{}{\hskip0pt plus1filll}% + \end{beamercolorbox}% + \fi %\thepage>1 +} + +\else% Not compressed + +\setbeamertemplate{headline} +{% + \ifnum \thepage>1 + \leavevmode% + \@tempdimb=2.4375ex% + \ifnum\beamer@subsectionmax<\beamer@sectionmax% + \multiply\@tempdimb by\beamer@sectionmax% + \else% + \multiply\@tempdimb by\beamer@subsectionmax% + \fi% + \ifdim\@tempdimb>0pt% + \advance\@tempdimb by 1.125ex% + \begin{beamercolorbox}[wd=.5\paperwidth,ht=\@tempdimb]{% + section in head/foot}% + \vbox to\@tempdimb{\vfil\insertsectionnavigation{.5\paperwidth}\vfil}% + \end{beamercolorbox}% + \begin{beamercolorbox}[wd=.5\paperwidth,ht=\@tempdimb]{% + subsection in head/foot}% + \vbox to\@tempdimb{\vfil\insertsubsectionnavigation{.5\paperwidth}\vfil}% + \end{beamercolorbox}% + \fi% + \fi % \thepage>1 +} + +\fi % end if compressed +\fi % TACCheadernav + + +\ifTACCheadertree + +\setbeamertemplate{headline} +{ + \begin{beamercolorbox}[wd=\paperwidth,colsep=1.5pt]{upper separation line head} + \end{beamercolorbox} + % + % Place short title + % + \begin{beamercolorbox}[wd=\paperwidth,ht=2.5ex,dp=1.125ex,% + leftskip=.3cm,rightskip=.3cm plus1fil]{title in head/foot} + \usebeamerfont{title in head/foot}\insertshorttitle + \end{beamercolorbox} + + % + % Place section + % + \begin{beamercolorbox}[wd=\paperwidth,ht=2.5ex,dp=1.125ex,% + leftskip=.3cm,rightskip=.3cm plus1fil]{section in head/foot} + \usebeamerfont{section in head/foot}% + %\ifbeamer@tree@showhooks + \setbox\beamer@tempbox=\hbox{\insertsectionhead}% + \ifdim\wd\beamer@tempbox>1pt% + \hskip2pt\raise1.9pt\hbox{\vrule width0.4pt height1.875ex\vrule width 5pt height0.4pt}% + \hskip1pt% + \fi + \insertsectionhead + \end{beamercolorbox} + +% +% Place subsection +% +\begin{beamercolorbox}[wd=\paperwidth,ht=2.5ex,dp=1.125ex,% + leftskip=.3cm,rightskip=.3cm plus1fil]{subsection in head/foot} + \usebeamerfont{subsection in head/foot}% + %\ifbeamer@tree@showhooks + \setbox\beamer@tempbox=\hbox{\insertsubsectionhead}% + \ifdim\wd\beamer@tempbox>1pt% + \hskip9.4pt\raise1.9pt\hbox{\vrule width0.4pt height1.875ex\vrule width 5pt height0.4pt}% + \hskip1pt% + \fi + \insertsubsectionhead +\end{beamercolorbox} + +% +% Place final separation box +% + \begin{beamercolorbox}[wd=\paperwidth,colsep=1.5pt + ]{lower separation line head} + \end{beamercolorbox} + + % + % Another matching rule which helps to frame the content + % + \hspace{.025\textwidth}\rule{.95\textwidth}{.5pt} +} +\fi % TACCheadertree + + +% The following command suppresses all navigation symbols. This is +% necessary in the TACC theme, since it overlaps where we want the +% logo to be. +\setbeamertemplate{navigation symbols}{} + + +\mode + diff --git a/my_docs/17/hpckp_17/themes/beamerthemeTACC16-169.sty b/my_docs/17/hpckp_17/themes/beamerthemeTACC16-169.sty new file mode 100644 index 000000000..22caf9a05 --- /dev/null +++ b/my_docs/17/hpckp_17/themes/beamerthemeTACC16-169.sty @@ -0,0 +1,38 @@ +%% TACC theme for beamer + +\newif\ifTACCheadernav +\DeclareOption{headernav}{\global\TACCheadernavtrue} + +\newif\ifTACCheadertree +\DeclareOption{headertree}{\global\TACCheadertreetrue} +\ProcessOptions + +\mode + +\makeatletter + \def\beamer@calltheme#1#2#3{% + \def\beamer@themelist{#2} + \@for\beamer@themename:=\beamer@themelist\do + {\usepackage[{#1}]{\beamer@themelocation/#3\beamer@themename}}} + + \def\usefolder#1{ + \def\beamer@themelocation{#1} + } + \def\beamer@themelocation{} + +\usefolder{themes} +\usefonttheme{TACC16} +\useinnertheme{TACC16} +\useoutertheme{TACC16-169} +\usecolortheme{TACC16} + +\mode + + +\newcommand{\event}[1]{% + \makeatletter% + \def\TACC@eventname{#1}% + \makeatother} + +\newcommand{\sectionframe}[1]{\section{#1}\frame{\Large\textbf{#1}}} +\newcommand{\subsectionframe}[1]{\subsection{#1}\frame{\large\textbf{#1}}} diff --git a/my_docs/17/hpckp_17/themes/beamerthemeTACC16.sty b/my_docs/17/hpckp_17/themes/beamerthemeTACC16.sty new file mode 100644 index 000000000..750bdd388 --- /dev/null +++ b/my_docs/17/hpckp_17/themes/beamerthemeTACC16.sty @@ -0,0 +1,26 @@ +%% TACC theme for beamer + +\newif\ifTACCheadernav +\DeclareOption{headernav}{\global\TACCheadernavtrue} + +\newif\ifTACCheadertree +\DeclareOption{headertree}{\global\TACCheadertreetrue} +\ProcessOptions + +\mode + +\usefonttheme{TACC16} +\useinnertheme{TACC16} +\useoutertheme{TACC16} +\usecolortheme{TACC16} + +\mode + + +\newcommand{\event}[1]{% + \makeatletter% + \def\TACC@eventname{#1}% + \makeatother} + +\newcommand{\sectionframe}[1]{\section{#1}\frame{\Large\textbf{#1}}} +\newcommand{\subsectionframe}[1]{\subsection{#1}\frame{\large\textbf{#1}}} diff --git a/my_docs/17/hpckp_17/themes/example.pdf b/my_docs/17/hpckp_17/themes/example.pdf new file mode 100644 index 000000000..add373eee Binary files /dev/null and b/my_docs/17/hpckp_17/themes/example.pdf differ diff --git a/my_docs/17/hpckp_17/themes/license.tex b/my_docs/17/hpckp_17/themes/license.tex new file mode 100644 index 000000000..74ff86759 --- /dev/null +++ b/my_docs/17/hpckp_17/themes/license.tex @@ -0,0 +1,14 @@ + +\begin{frame}{License} +\footnotesize +\textcopyright The University of Texas at Austin, \the\year\\ +\vspace{0.5 cm} +This work is licensed under the Creative Commons Attribution Non-Commercial 3.0 Unported License. To view a copy of this license, +visit http://creativecommons.org/licenses/by-nc/3.0/\\ +\vspace{0.5 cm} +When attributing this work, please use the following text: +"Designing and Administering Large-scale Systems", Texas Advanced Computing Center, \the\year. Available under a Creative Commons Attribution Non-Commercial 3.0 Unported License. +\newline +\newline +\includegraphics[width=1cm]{./figures/cc.png} +\end{frame} \ No newline at end of file diff --git a/my_docs/17/pearc_17/beamercolorthemeTACC.sty b/my_docs/17/pearc_17/beamercolorthemeTACC.sty deleted file mode 120000 index 8d27e673a..000000000 --- a/my_docs/17/pearc_17/beamercolorthemeTACC.sty +++ /dev/null @@ -1 +0,0 @@ -../../beamer/beamercolorthemeTACC.sty \ No newline at end of file diff --git a/my_docs/17/pearc_17/beamercolorthemeTACC.sty b/my_docs/17/pearc_17/beamercolorthemeTACC.sty new file mode 100755 index 000000000..78beb6a4a --- /dev/null +++ b/my_docs/17/pearc_17/beamercolorthemeTACC.sty @@ -0,0 +1,323 @@ +% Copyright 2003 by Till Tantau . +% +% This program can be redistributed and/or modified under the terms +% of the GNU Public License, version 2. + +\mode + +% I downloaded a gimp color palette from +% http://maururu.net/2007/latex-beamer-color-palette/ +% Which provides rgb values (I think) for several of the +% default beamer themes. You can open this in gimp by +% opening the Palettes dialog, right-clicking anywhere and choosing +% 'Import Palette'. A color in there called 'default added blue' +% appeared to be approximately what I wanted. It had the triple +% of values 141 145 208. If you double-click on this in the +% palette editor it gives you a bunch of information. You can't +% use these values directly to set a color...it just comes out white. +% I think definecolor is expecting something normalized by 255. Yes! + + +% bluish colors +\definecolor{defaddedblue}{rgb}{0.5529,.5686,.8157} % 141,145,208 +\definecolor{defblockheader}{rgb}{.1921,.2235,.6824} % 49,57,174 +\definecolor{flyaddedblue}{rgb}{.5961,.6118,.8431} % 152,156,215 + +% bluish-greys +\definecolor{beetleaddedblue1}{rgb}{.3333,.4039,.6196} % 85 103 158, dark +\definecolor{beetleaddedblue2}{rgb}{.4510,.5098,.7020} % 115 130 179, medium +\definecolor{beetleaddedblue3}{rgb}{.7059,.7255,.7961} % 180 185 203, light (greyest) + +% very light blue-greys +\definecolor{deflightouter1}{rgb}{.7608,.7647,.9020} % 194 195 230, dark +\definecolor{deflightouter2}{rgb}{.8 ,.8039,.9176} % 204 205 234, medium +\definecolor{deflightouter3}{rgb}{.8392,.8431,.9373} % 214 215 239, light + +% reddish colors +\definecolor{flyalertblockheader}{rgb}{.7373,.1294,.1333} % 188 33 34 +\definecolor{flyaddedred}{rgb}{.8667,.5647,.5647}% 221 144 144 +\definecolor{beaverouterframe}{rgb}{.5529,.0980,.0980}% 141 25 25 + +% greens (green is used for 'examples' in beamer) +\definecolor{defexblock}{rgb}{.9098,.9333,.9020} % 232 238 230, light +\definecolor{defaddedgreen}{rgb}{.5412,.6510,.4706} % 138 166 120, medium +\definecolor{defexblockheader}{rgb}{.1686,.3647,.0392} % 43 93 10, dark + +\definecolor{lightexblock}{rgb}{.9137,.9451,.9020} % 233 241 230, light +\definecolor{lightexblockheader}{rgb}{.8235,.8980,.8} % 210 229 204, medium +\definecolor{lightexblockheadertext}{rgb}{.2431,.5098,.0745} % 62 130 19, dark + + +%%% +% Set the normal text color +%%% +\setbeamercolor{normal text}{fg=black,bg=white} + +%%% +% Set the alerted text color +%%% +% \setbeamercolor{alerted text}{fg=red} +\setbeamercolor{alerted text}{fg=red!50!black} % half black/half red for green bg +% \setbeamercolor{alerted text}{fg=beaverouterframe} +% \setbeamercolor{alerted text}{fg=defblockheader} % doesn't stand out enough + + +% Set the 'example' text +\setbeamercolor{example text}{fg=green!50!black} + +\setbeamercolor{structure}{fg=black} + +\setbeamercolor{background canvas}{parent=normal text} +\setbeamercolor{background}{parent=background canvas} + +\setbeamercolor{palette primary}{use=structure,fg=structure.fg} +\setbeamercolor{palette secondary}{use=structure,fg=structure.fg!75!black} +\setbeamercolor{palette tertiary}{use=structure,fg=structure.fg!50!black} +\setbeamercolor{palette quaternary}{fg=black} + +\setbeamercolor{palette sidebar primary}{use=normal text,fg=normal text.fg} +\setbeamercolor{palette sidebar secondary}{use=structure,fg=structure.fg} +\setbeamercolor{palette sidebar tertiary}{use=normal text,fg=normal text.fg} +\setbeamercolor{palette sidebar quaternary}{use=structure,fg=structure.fg} + +\setbeamercolor{math text}{} +\setbeamercolor{math text inlined}{parent=math text} +\setbeamercolor{math text displayed}{parent=math text} + +\setbeamercolor{normal text in math text}{} + +\setbeamercolor{local structure}{parent=structure} + +\setbeamercolor{titlelike}{parent=structure} + +\setbeamercolor{title}{parent=titlelike} +\setbeamercolor{title in head/foot}{parent=palette quaternary} +\setbeamercolor{title in sidebar}{parent=palette sidebar quaternary} + +\setbeamercolor{subtitle}{parent=title} + +\setbeamercolor{author}{} +\setbeamercolor{author in head/foot}{parent=palette primary} +\setbeamercolor{author in sidebar}{use=palette sidebar tertiary,fg=palette sidebar tertiary.fg} + +\setbeamercolor{institute}{} +\setbeamercolor{institute in head/foot}{parent=palette tertiary} +\setbeamercolor{institute in sidebar}{use=palette sidebar tertiary,fg=palette sidebar tertiary.fg} + +\setbeamercolor{date}{} +\setbeamercolor{date in head/foot}{parent=palette secondary} +\setbeamercolor{date in sidebar}{use=palette sidebar tertiary,fg=palette sidebar tertiary.fg} + +\setbeamercolor{titlegraphic}{} + +\setbeamercolor{part name}{} +\setbeamercolor{part title}{parent=titlelike} + +\setbeamercolor{section in toc}{parent=structure} +\setbeamercolor{section in toc shaded}{parent=section in toc} +\setbeamercolor{section in head/foot}{parent=palette tertiary} +\setbeamercolor{section in sidebar}{parent=palette sidebar secondary} +\setbeamercolor{section in sidebar shaded}{use=section in sidebar,fg=section in sidebar.fg!40!bg} +\setbeamercolor{section number projected}{parent=item projected} + +\setbeamercolor{subsection in toc}{} +\setbeamercolor{subsection in toc shaded}{parent=subsection in toc} +\setbeamercolor{subsection in head/foot}{parent=palette secondary} +\setbeamercolor{subsection in sidebar}{parent=palette sidebar primary} +\setbeamercolor{subsection in sidebar shaded}{use=subsection in sidebar,fg=subsection in sidebar.fg!40!bg} +\setbeamercolor{subsection number projected}{parent={subitem projected}} + +\setbeamercolor{subsubsection in toc}{parent=subsection in toc} +\setbeamercolor{subsubsection in toc shaded}{parent=subsubsection in toc} +\setbeamercolor{subsubsection in head/foot}{parent=subsection in head/foot} +\setbeamercolor{subsubsection in sidebar}{parent=subsection in sidebar} +\setbeamercolor{subsubsection in sidebar shaded}{parent=subsection in sidebar shaded} +\setbeamercolor{subsubsection number projected}{parent=subsubitem projected} + +\setbeamercolor{headline}{} +\setbeamercolor{footline}{} + +\setbeamercolor{sidebar}{} +\setbeamercolor{sidebar left}{parent=sidebar} +\setbeamercolor{sidebar right}{parent=sidebar} + +\setbeamercolor{logo}{parent=palette secondary} + +\setbeamercolor{frametitle}{parent=titlelike} +\setbeamercolor{framesubtitle}{parent=frametitle} + +\setbeamercolor{frametitle right}{parent=frametitle} + +\setbeamercolor{caption}{} +\setbeamercolor{caption name}{parent=structure} + +\setbeamercolor{button}{use=local structure,bg=local structure.fg!50!bg,fg=white} +\setbeamercolor{button border}{use=button,fg=button.bg} +\setbeamercolor{navigation symbols}{use=structure,fg=structure.fg!40!bg} +\setbeamercolor{navigation symbols dimmed}{use=structure,fg=structure.fg!20!bg} +\setbeamercolor{mini frame}{parent=section in head/foot} + +% Color expressions are defined in the xcolor package +% +% Ex: Mixture of 40% green, 60% yellow: green!40!yellow +% +% The complement of any color can be obtained by prepending +% a minus sign: -green!40!yellow +% +% One can also combine up to three colors (in differing proportions) +% using the rgb command. For example, the following command combines +% 3 parts of the first color, with 2 parts of the second, and one part +% "red" +% +%\color{rgb:-green!40!yellow,3;green!40!yellow,2;red,1} +% Unfortunately, I don't think this works as an argument to setbeamercolor... +% "Orange" bg=green!30!yellow!30!red +% close to burnt orange: red!75!green +% lightgray is a color, but gray!25!white looks better +% +% A nice pair of greens +% (dark, a little too dark to be under black text...) -red!75!green!50!blue!25 +% (light) -red!75!green!50!blue!25!gray +% +% Some colors are only available via options to the xcolor package, eg. +% x11names,DarkOliveGreen4 +% svgnames, Chartreuse +% dvipsnames, ForestGreen +% +% but beamer does not seem to have any of these. +% +% The base color names which are always available are: +% black +% blue +% brown +% cyan +% darkgray +% gray +% green +% lightgray +% lime +% magenta +% olive +% orange +% pink +% purple +% red +% teal +% violet +% white +% yellow + +% From the beamer user guide, pg. 167 +% Inner color themes only specify the colors of elements used in inner +% themes. Most noticably, they specify the colors used for blocks. +% ... + +% Example color definition +% beamercolorthemedefault.sty:\definecolor{beamer@blendedblue}{rgb}{0.2,0.2,0.7} +% beamercolorthemedefault.sty:\setbeamercolor{structure}{fg=beamer@blendedblue} + +% The greens +% \setbeamercolor{block body}{bg=-red!75!green!50!blue!25!gray} +% \setbeamercolor{block title}{parent=structure,bg=-red!75!green!50!blue!25,fg=-red!75!green!50!blue!25!gray} + +%%% +% Set the block body and title background/foreground colors +%%% +% \setbeamercolor{block body}{bg=flyaddedblue} +% \setbeamercolor{block title}{bg=defblockheader,fg=flyaddedblue} + +% Purplish blues, too dark overall +% \setbeamercolor{block body}{bg=beetleaddedblue3} +% \setbeamercolor{block title}{bg=beetleaddedblue2,fg=beetleaddedblue3} + +% Very light blue greys +% 1. Not enough contrast +% \setbeamercolor{block body}{bg=deflightouter3} +% \setbeamercolor{block title}{bg=deflightouter2,fg=deflightouter3} + +% 2. Not enough contrast +% \setbeamercolor{block body}{bg=deflightouter3} +% \setbeamercolor{block title}{bg=deflightouter1,fg=deflightouter3} + +% 3. Combination of deflightouter and fly. The block bg is +% lighter than the all-beetle color scheme I previously thought was best. +% Currently I like this one the best +\setbeamercolor{block body}{bg=deflightouter3} +\setbeamercolor{block title}{bg=beetleaddedblue2,fg=deflightouter3} + +% 4. Greens. Looks like a highlighter. I don't really trust greens +% on projectors... It's almost too bright/hurts your eyes. +% \setbeamercolor{block body}{bg=defexblock} +% \setbeamercolor{block title}{bg=defaddedgreen,fg=defexblock} + +% This looks pretty good ... it's similar to the greens we had before +% but should be lighter. The blocks are just a little too "mint" colored +% though... +% \setbeamercolor{block body}{bg=defexblock} +% \setbeamercolor{block title}{bg=defexblockheader,fg=defexblock} + +% Pea Soup! +%\setbeamercolor{block body}{bg=defaddedgreen} +%\setbeamercolor{block title}{bg=defexblockheader,fg=defaddedgreen} + + +% Changing these didn't seem to do anything...I had to change the +% 'alerted text' color instead +\setbeamercolor{block body alerted}{} +\setbeamercolor{block body example}{} +\setbeamercolor{block title alerted}{parent=alerted text} +\setbeamercolor{block title example}{parent=example text} + +\setbeamercolor{item}{parent=local structure} +\setbeamercolor{subitem}{parent=item} +\setbeamercolor{subsubitem}{parent=subitem} + +\setbeamercolor{item projected}{parent=item,use=item,fg=white,bg=item.fg} +\setbeamercolor{subitem projected}{parent=item projected} +\setbeamercolor{subsubitem projected}{parent=subitem projected} + +\setbeamercolor{enumerate item}{parent=item} +\setbeamercolor{enumerate subitem}{parent=subitem} +\setbeamercolor{enumerate subsubitem}{parent=subsubitem} + +\setbeamercolor{itemize item}{parent=item} +\setbeamercolor{itemize subitem}{parent=subitem} +\setbeamercolor{itemize subsubitem}{parent=subsubitem} + +\setbeamercolor{itemize/enumerate body}{} +\setbeamercolor{itemize/enumerate subbody}{} +\setbeamercolor{itemize/enumerate subsubbody}{} + +\setbeamercolor{description item}{parent=item} + +\setbeamercolor{bibliography item}{parent=item} + +\setbeamercolor{bibliography entry author}{use=structure,fg=structure.fg} +\setbeamercolor{bibliography entry title}{use=normal text,fg=normal text.fg} +\setbeamercolor{bibliography entry location}{use=structure,fg=structure.fg!65!bg} +\setbeamercolor{bibliography entry note}{use=structure,fg=structure.fg!65!bg} + +\setbeamercolor{separation line}{} + +\setbeamercolor{upper separation line head}{parent=separation line} +\setbeamercolor{middle separation line head}{parent=separation line} +\setbeamercolor{lower separation line head}{parent=separation line} + +\setbeamercolor{upper separation line foot}{parent=separation line} +\setbeamercolor{middle separation line foot}{parent=separation line} +\setbeamercolor{lower separation line foot}{parent=separation line} + +\setbeamercolor{abstract}{} +\setbeamercolor{abstract title}{parent=structure} + +\setbeamercolor{verse}{} + +\setbeamercolor{quotation}{} +\setbeamercolor{quote}{parent=quotation} + +\setbeamercolor{page number in head/foot}{fg=fg!50!bg} + +\setbeamercolor{qed symbol}{parent=structure} + +\mode + diff --git a/my_docs/17/pearc_17/beamercolorthemeTACC16.sty b/my_docs/17/pearc_17/beamercolorthemeTACC16.sty deleted file mode 120000 index 58415801b..000000000 --- a/my_docs/17/pearc_17/beamercolorthemeTACC16.sty +++ /dev/null @@ -1 +0,0 @@ -../../beamer/beamercolorthemeTACC16.sty \ No newline at end of file diff --git a/my_docs/17/pearc_17/beamercolorthemeTACC16.sty b/my_docs/17/pearc_17/beamercolorthemeTACC16.sty new file mode 100755 index 000000000..779dde91f --- /dev/null +++ b/my_docs/17/pearc_17/beamercolorthemeTACC16.sty @@ -0,0 +1,192 @@ +% Copyright 2003 by Till Tantau . +% +% This program can be redistributed and/or modified under the terms +% of the GNU Public License, version 2. + +\mode + +\usepackage{textcase,regexpatch} + +\setbeamertemplate{blocks}[rounded][shadow=true] + + +\definecolor{TACCred}{RGB}{180,13,29} +\definecolor{TACCorange}{RGB}{210,104,43} +\definecolor{TACCblue}{RGB}{108, 134, 191} +\definecolor{TACCgreen}{RGB}{23,106,70} + +% I downloaded a gimp color palette from +% http://maururu.net/2007/latex-beamer-color-palette/ +% Which provides rgb values (I think) for several of the +% default beamer themes. You can open this in gimp by +% opening the Palettes dialog, right-clicking anywhere and choosing +% 'Import Palette'. A color in there called 'default added blue' +% appeared to be approximately what I wanted. It had the triple +% of values 141 145 208. If you double-click on this in the +% palette editor it gives you a bunch of information. You can't +% use these values directly to set a color...it just comes out white. +% I think definecolor is expecting something normalized by 255. Yes! + + +%%% +% Set the normal text color +%%% +\setbeamercolor{normal text}{fg=black} %,bg=white} +\setbeamercolor{example text}{fg=TACCgreen} +\setbeamercolor{alerted text}{fg=TACCorange} + + +\setbeamercolor{structure}{fg=black} +%\setbeamercolor{structure}{fg=black} + +\setbeamercolor{background canvas}{parent=normal text} +\setbeamercolor{background}{parent=background canvas} + +\setbeamercolor{palette primary}{use=structure,fg=structure.fg} +\setbeamercolor{palette secondary}{use=structure,fg=structure.fg!75!black} +\setbeamercolor{palette tertiary}{use=structure,fg=structure.fg!50!black} +\setbeamercolor{palette quaternary}{fg=black} + +\setbeamercolor{palette sidebar primary}{use=normal text,fg=normal text.fg} +\setbeamercolor{palette sidebar secondary}{use=structure,fg=structure.fg} +\setbeamercolor{palette sidebar tertiary}{use=normal text,fg=normal text.fg} +\setbeamercolor{palette sidebar quaternary}{use=structure,fg=structure.fg} + +\setbeamercolor{math text}{} +\setbeamercolor{math text inlined}{parent=math text} +\setbeamercolor{math text displayed}{parent=math text} + +\setbeamercolor{normal text in math text}{} + +\setbeamercolor{local structure}{parent=structure} + +\setbeamercolor{titlelike}{parent=structure} + +\setbeamercolor{title}{parent=titlelike} +\setbeamercolor{title in head/foot}{parent=palette quaternary} +\setbeamercolor{title in sidebar}{parent=palette sidebar quaternary} + +\setbeamercolor{subtitle}{parent=title} + +\setbeamercolor{author}{} +\setbeamercolor{author in head/foot}{parent=palette primary} +\setbeamercolor{author in sidebar}{use=palette sidebar tertiary,fg=palette sidebar tertiary.fg} + +\setbeamercolor{institute}{} +\setbeamercolor{institute in head/foot}{parent=palette tertiary} +\setbeamercolor{institute in sidebar}{use=palette sidebar tertiary,fg=palette sidebar tertiary.fg} + +\setbeamercolor{date}{} +\setbeamercolor{date in head/foot}{parent=palette secondary} +\setbeamercolor{date in sidebar}{use=palette sidebar tertiary,fg=palette sidebar tertiary.fg} + +\setbeamercolor{titlegraphic}{} + +\setbeamercolor{part name}{} +\setbeamercolor{part title}{parent=titlelike} + +\setbeamercolor{section in toc}{parent=structure} +\setbeamercolor{section in toc shaded}{parent=section in toc} +\setbeamercolor{section in head/foot}{parent=palette tertiary} +\setbeamercolor{section in sidebar}{parent=palette sidebar secondary} +\setbeamercolor{section in sidebar shaded}{use=section in sidebar,fg=section in sidebar.fg!40!bg} +\setbeamercolor{section number projected}{parent=item projected} + +\setbeamercolor{subsection in toc}{} +\setbeamercolor{subsection in toc shaded}{parent=subsection in toc} +\setbeamercolor{subsection in head/foot}{parent=palette secondary} +\setbeamercolor{subsection in sidebar}{parent=palette sidebar primary} +\setbeamercolor{subsection in sidebar shaded}{use=subsection in sidebar,fg=subsection in sidebar.fg!40!bg} +\setbeamercolor{subsection number projected}{parent={subitem projected}} + +\setbeamercolor{subsubsection in toc}{parent=subsection in toc} +\setbeamercolor{subsubsection in toc shaded}{parent=subsubsection in toc} +\setbeamercolor{subsubsection in head/foot}{parent=subsection in head/foot} +\setbeamercolor{subsubsection in sidebar}{parent=subsection in sidebar} +\setbeamercolor{subsubsection in sidebar shaded}{parent=subsection in sidebar shaded} +\setbeamercolor{subsubsection number projected}{parent=subsubitem projected} + +\setbeamercolor{headline}{} +\setbeamercolor{footline}{} + +\setbeamercolor{sidebar}{} +\setbeamercolor{sidebar left}{parent=sidebar} +\setbeamercolor{sidebar right}{parent=sidebar} + +\setbeamercolor{logo}{parent=palette secondary} + +\setbeamercolor{frametitle}{parent=titlelike} +\setbeamercolor{framesubtitle}{parent=frametitle} + +\setbeamercolor{frametitle right}{parent=frametitle} + +\setbeamercolor{caption}{} +\setbeamercolor{caption name}{parent=structure} + +\setbeamercolor{button}{use=local structure,bg=local structure.fg!50!bg,fg=white} +\setbeamercolor{button border}{use=button,fg=button.bg} +\setbeamercolor{navigation symbols}{use=structure,fg=structure.fg!40!bg} +\setbeamercolor{navigation symbols dimmed}{use=structure,fg=structure.fg!20!bg} +\setbeamercolor{mini frame}{parent=section in head/foot} + +\setbeamercolor{block body}{fg=black} +\setbeamercolor{block body alerted}{fg=black} +\setbeamercolor{block body example}{fg=black} + +\setbeamercolor{block title}{bg=TACCblue,fg=white} +\setbeamercolor{block title alerted}{bg=TACCred,fg=white} +\setbeamercolor{block title example}{bg=TACCgreen,fg=white} + +\setbeamercolor{item}{parent=local structure} +\setbeamercolor{subitem}{parent=item} +\setbeamercolor{subsubitem}{parent=subitem} + +\setbeamercolor{item projected}{parent=item,use=item,fg=black,bg=item.fg} +\setbeamercolor{subitem projected}{parent=item projected} +\setbeamercolor{subsubitem projected}{parent=subitem projected} + +\setbeamercolor{enumerate item}{parent=item} +\setbeamercolor{enumerate subitem}{parent=subitem} +\setbeamercolor{enumerate subsubitem}{parent=subsubitem} + +\setbeamercolor{itemize item}{parent=item} +\setbeamercolor{itemize subitem}{parent=subitem} +\setbeamercolor{itemize subsubitem}{parent=subsubitem} + +\setbeamercolor{itemize/enumerate body}{} +\setbeamercolor{itemize/enumerate subbody}{} +\setbeamercolor{itemize/enumerate subsubbody}{} + +\setbeamercolor{description item}{parent=item} + +\setbeamercolor{bibliography item}{parent=item} + +\setbeamercolor{bibliography entry author}{use=structure,fg=structure.fg} +\setbeamercolor{bibliography entry title}{use=normal text,fg=normal text.fg} +\setbeamercolor{bibliography entry location}{use=structure,fg=structure.fg!65!bg} +\setbeamercolor{bibliography entry note}{use=structure,fg=structure.fg!65!bg} + +\setbeamercolor{separation line}{} + +\setbeamercolor{upper separation line head}{parent=separation line} +\setbeamercolor{middle separation line head}{parent=separation line} +\setbeamercolor{lower separation line head}{parent=separation line} + +\setbeamercolor{upper separation line foot}{parent=separation line} +\setbeamercolor{middle separation line foot}{parent=separation line} +\setbeamercolor{lower separation line foot}{parent=separation line} + +\setbeamercolor{abstract}{} +\setbeamercolor{abstract title}{parent=structure} + +\setbeamercolor{verse}{} + +\setbeamercolor{quotation}{} +\setbeamercolor{quote}{parent=quotation} + +\setbeamercolor{page number in head/foot}{fg=fg!50!bg} + +\setbeamercolor{qed symbol}{parent=structure} + +\mode + diff --git a/my_docs/17/pearc_17/beamerfontthemeTACC.sty b/my_docs/17/pearc_17/beamerfontthemeTACC.sty deleted file mode 120000 index 78e971fb8..000000000 --- a/my_docs/17/pearc_17/beamerfontthemeTACC.sty +++ /dev/null @@ -1 +0,0 @@ -../../beamer/beamerfontthemeTACC.sty \ No newline at end of file diff --git a/my_docs/17/pearc_17/beamerfontthemeTACC.sty b/my_docs/17/pearc_17/beamerfontthemeTACC.sty new file mode 100755 index 000000000..ef9ce1e5e --- /dev/null +++ b/my_docs/17/pearc_17/beamerfontthemeTACC.sty @@ -0,0 +1,12 @@ +% Copyright 2003 by Till Tantau +% +% This program can be redistributed and/or modified under the terms +% of the GNU Public License, version 2. + +\mode + +\setbeamerfont{frametitle}{parent=structure,size=\LARGE,series=\bfseries} +\setbeamerfont{framesubtitle}{parent=frametitle,size=\small} + +\mode + \ No newline at end of file diff --git a/my_docs/17/pearc_17/beamerfontthemeTACC16.sty b/my_docs/17/pearc_17/beamerfontthemeTACC16.sty deleted file mode 120000 index a1f2fa5f9..000000000 --- a/my_docs/17/pearc_17/beamerfontthemeTACC16.sty +++ /dev/null @@ -1 +0,0 @@ -../../beamer/beamerfontthemeTACC16.sty \ No newline at end of file diff --git a/my_docs/17/pearc_17/beamerfontthemeTACC16.sty b/my_docs/17/pearc_17/beamerfontthemeTACC16.sty new file mode 100755 index 000000000..b65271835 --- /dev/null +++ b/my_docs/17/pearc_17/beamerfontthemeTACC16.sty @@ -0,0 +1,21 @@ +% Copyright 2003 by Till Tantau +% +% This program can be redistributed and/or modified under the terms +% of the GNU Public License, version 2. + +\mode +\setbeamerfont{title}{parent=structure,size=\LARGE,series=\bfseries} +\setbeamerfont{author}{parent=structure,size=\large, series=\normalfont} +\setbeamerfont{frametitle}{parent=structure,size=\LARGE,series=\bfseries} +\setbeamerfont{framesubtitle}{parent=frametitle,size=\small} + +%\usefonttheme{professionalfonts} % using non standard fonts for beamer +%\usefonttheme{serif} % default family is serif +%\usepackage{fontspec} +%\setmainfont{Century Gothic} + +\usepackage{fontspec} +\usepackage{libertine} + +\mode + diff --git a/my_docs/17/pearc_17/beamerinnerthemeTACC.sty b/my_docs/17/pearc_17/beamerinnerthemeTACC.sty deleted file mode 120000 index 8d5ae3921..000000000 --- a/my_docs/17/pearc_17/beamerinnerthemeTACC.sty +++ /dev/null @@ -1 +0,0 @@ -../../beamer/beamerinnerthemeTACC.sty \ No newline at end of file diff --git a/my_docs/17/pearc_17/beamerinnerthemeTACC.sty b/my_docs/17/pearc_17/beamerinnerthemeTACC.sty new file mode 100755 index 000000000..29e2bce81 --- /dev/null +++ b/my_docs/17/pearc_17/beamerinnerthemeTACC.sty @@ -0,0 +1,11 @@ +\mode + +\setbeamertemplate{itemize item}[circle] +\setbeamertemplate{itemize subitem}{{}--{}} +\setbeamertemplate{itemize subsubitem}[circle] +\setbeamertemplate{section in toc}{$\bullet$\hskip.5em\inserttocsection} +%\setbeamertemplate{subsection in toc}{} +\setbeamertemplate{subsubsection in toc}{} + +\mode + diff --git a/my_docs/17/pearc_17/beamerinnerthemeTACC16.sty b/my_docs/17/pearc_17/beamerinnerthemeTACC16.sty deleted file mode 120000 index 5955acc99..000000000 --- a/my_docs/17/pearc_17/beamerinnerthemeTACC16.sty +++ /dev/null @@ -1 +0,0 @@ -../../beamer/beamerinnerthemeTACC16.sty \ No newline at end of file diff --git a/my_docs/17/pearc_17/beamerinnerthemeTACC16.sty b/my_docs/17/pearc_17/beamerinnerthemeTACC16.sty new file mode 100755 index 000000000..f7f454e1d --- /dev/null +++ b/my_docs/17/pearc_17/beamerinnerthemeTACC16.sty @@ -0,0 +1,11 @@ +\mode + +\setbeamertemplate{itemize item}[triangle] +\setbeamertemplate{itemize subitem}[triangle] +\setbeamertemplate{itemize subsubitem}[triangle] +\setbeamertemplate{section in toc}{$\bullet$\hskip.5em\inserttocsection} +%\setbeamertemplate{subsection in toc}{} +\setbeamertemplate{subsubsection in toc}{} + +\mode + diff --git a/my_docs/17/pearc_17/beamerouterthemeTACC.sty b/my_docs/17/pearc_17/beamerouterthemeTACC.sty deleted file mode 120000 index da0a45d33..000000000 --- a/my_docs/17/pearc_17/beamerouterthemeTACC.sty +++ /dev/null @@ -1 +0,0 @@ -../../beamer/beamerouterthemeTACC.sty \ No newline at end of file diff --git a/my_docs/17/pearc_17/beamerouterthemeTACC.sty b/my_docs/17/pearc_17/beamerouterthemeTACC.sty new file mode 100755 index 000000000..038580303 --- /dev/null +++ b/my_docs/17/pearc_17/beamerouterthemeTACC.sty @@ -0,0 +1,196 @@ +% Copyright 2003 by Till Tantau +% +% This program can be redistributed and/or modified under the terms +% of the GNU Public License, version 2. + +\mode + +\setbeamertemplate{frametitle}[default][center] +\addtobeamertemplate{frametitle}{\vskip 4ex minus 4ex}{} + +% Here we define what appears at the bottom of each slide: the "footline". +\setbeamertemplate{footline}{% + \leavevmode% + + % Horizontal line dividing the rest of the slide from the footer? + % hrule goes all the way across... + % \hrule height.3pt% + % With \rule, you can specify the thickness + % \rule[raise-height]{width}{thickness} + \hspace{.025\textwidth}\rule{.95\textwidth}{.5pt} + + \hbox{% + % On the left half of the footer, insert the TACC logo + \begin{minipage}{.5\textwidth}% + \hskip .033\textwidth%Give horizontal space else this will set on the left edge of the slide! + % TACC logo with custom viewport! + \includegraphics[viewport=1 -1 135 35, clip=true, width=.4\textwidth]{figures/TACC_logo} + \end{minipage} + % + \begin{minipage}{.5\textwidth}% + \vskip .023\textheight% + \raggedleft% + \setlength{\rightskip}{.033\textwidth} + % + % If we are not on the first page, insert a page number + % For some reason, insertframenumber is buggy when you have fragile + % slides with verbatim environments in them... it tends to skip numbers + % for some reason! On the other hand, the pagenumber is incremented + % for *every* slide, including transition slides... + \ifnum \thepage>1 + % \insertshorttitle + \insertframenumber + % \insertframenumber/\inserttotalframenumber + % \insertpagenumber + \else % Do a phantom of whatever you do on other pages, so spacing matches + %$\phantom{\insertshorttitle}$ + $\phantom{\insertframenumber}$ + %$\phantom{\insertframenumber/\inserttotalframenumber}$ + %$\phantom{\insertpagenumber}$ + \fi + \hfill\includegraphics[width=.5\textwidth]{figures/UT_logo}% + \end{minipage}% + }% + \vskip .023\textheight% +} + + + + +\ifTACCheadernav + +\usesectionheadtemplate +{\hfill\insertsectionhead} +{\hfill\color{fg!50!bg}\insertsectionhead} + +% Head +\ifbeamer@compress + +% Here we define how the top of the frame looks, the "headline". +\setbeamertemplate{headline} +{% + \ifnum \thepage>1 + \leavevmode% + \begin{beamercolorbox}[wd=.5\paperwidth,ht=2.5ex,dp=1.125ex]{% + section in head/foot}% + \insertsectionnavigationhorizontal{.5\paperwidth}{\hskip0pt plus1filll}{}% + \end{beamercolorbox}% + \begin{beamercolorbox}[wd=.5\paperwidth,ht=2.5ex,dp=1.125ex]{% + subsection in head/foot}% + \insertsubsectionnavigationhorizontal{% + .5\paperwidth}{}{\hskip0pt plus1filll}% + \end{beamercolorbox}% + \fi %\thepage>1 +} + +\else% Not compressed + +\setbeamertemplate{headline} +{% + \ifnum \thepage>1 + \leavevmode% + \@tempdimb=2.4375ex% + \ifnum\beamer@subsectionmax<\beamer@sectionmax% + \multiply\@tempdimb by\beamer@sectionmax% + \else% + \multiply\@tempdimb by\beamer@subsectionmax% + \fi% + \ifdim\@tempdimb>0pt% + \advance\@tempdimb by 1.125ex% + \begin{beamercolorbox}[wd=.5\paperwidth,ht=\@tempdimb]{% + section in head/foot}% + \vbox to\@tempdimb{\vfil\insertsectionnavigation{.5\paperwidth}\vfil}% + \end{beamercolorbox}% + \begin{beamercolorbox}[wd=.5\paperwidth,ht=\@tempdimb]{% + subsection in head/foot}% + \vbox to\@tempdimb{\vfil\insertsubsectionnavigation{.5\paperwidth}\vfil}% + \end{beamercolorbox}% + \fi% + \fi % \thepage>1 +} + +\fi % end if compressed +\fi % TACCheadernav + + +\ifTACCheadertree + +\setbeamertemplate{headline} +{ + \begin{beamercolorbox}[wd=\paperwidth,colsep=1.5pt + ]{upper separation line head} + \end{beamercolorbox} + % + % Place short title + % + \begin{beamercolorbox}[wd=\paperwidth,ht=2.5ex,dp=1.125ex,% + leftskip=.3cm,rightskip=.3cm plus1fil]{title in head/foot} + \usebeamerfont{title in head/foot}\insertshorttitle + \end{beamercolorbox} + + % + % Place section + % + \begin{beamercolorbox}[wd=\paperwidth,ht=2.5ex,dp=1.125ex,% + leftskip=.3cm,rightskip=.3cm plus1fil]{section in head/foot} + \usebeamerfont{section in head/foot}% + %\ifbeamer@tree@showhooks + \setbox\beamer@tempbox=\hbox{\insertsectionhead}% + \ifdim\wd\beamer@tempbox>1pt% + \hskip2pt\raise1.9pt\hbox{\vrule width0.4pt height1.875ex\vrule width 5pt height0.4pt}% + \hskip1pt% + \fi% \ifdim + %\else% + %\hskip6pt% + %\fi% \ifbeamer + \insertsectionhead + \end{beamercolorbox} + +% +% Place subsection +% +\begin{beamercolorbox}[wd=\paperwidth,ht=2.5ex,dp=1.125ex,% + leftskip=.3cm,rightskip=.3cm plus1fil]{subsection in head/foot} + \usebeamerfont{subsection in head/foot}% + %\ifbeamer@tree@showhooks + \setbox\beamer@tempbox=\hbox{\insertsubsectionhead}% + \ifdim\wd\beamer@tempbox>1pt% + \hskip9.4pt\raise1.9pt\hbox{\vrule width0.4pt height1.875ex\vrule width 5pt height0.4pt}% + \hskip1pt% + \fi% \ifdim + %\else% + %\hskip12pt% + %\fi% \ifbeamer + \insertsubsectionhead +\end{beamercolorbox} + +% +% Place final separation box +% + \begin{beamercolorbox}[wd=\paperwidth,colsep=1.5pt + ]{lower separation line head} + \end{beamercolorbox} + + % + % Another matching rule which helps to frame the content + % + \hspace{.025\textwidth}\rule{.95\textwidth}{.5pt} +} +\fi % TACCheadertree + + +% The following command suppresses all navigation symbols. This is +% necessary in the TACC theme, since it overlaps where we want the +% logo to be. +\setbeamertemplate{navigation symbols}{} + +% Align the navigation symbols vertically (still overlaps our logo!) +%\setbeamertemplate{navigation symbols}[vertical]{} + +% Only places the slide-forward and slide-back symbol, but yes, +% this still overlaps our logo! +%\setbeamertemplate{navigation symbols}[only frame symbol]{} + + +\mode + diff --git a/my_docs/17/pearc_17/beamerouterthemeTACC16.sty b/my_docs/17/pearc_17/beamerouterthemeTACC16.sty deleted file mode 120000 index 54bd09537..000000000 --- a/my_docs/17/pearc_17/beamerouterthemeTACC16.sty +++ /dev/null @@ -1 +0,0 @@ -../../beamer/beamerouterthemeTACC16.sty \ No newline at end of file diff --git a/my_docs/17/pearc_17/beamerouterthemeTACC16.sty b/my_docs/17/pearc_17/beamerouterthemeTACC16.sty new file mode 100755 index 000000000..d5e6388c7 --- /dev/null +++ b/my_docs/17/pearc_17/beamerouterthemeTACC16.sty @@ -0,0 +1,312 @@ +% Antonio Gomez (agomez@tacc.utexas.edu) +% 4-20-17. Added option to put the footer on the right side + + + +\mode + +\usepackage{xcolor} +\usepackage{graphicx} +\usepackage{etoolbox} + + + +% This theme accepts the "rightfooter" option +% When used, it will put the TACC logo at the bottom of the slide on the right side +% By default, it goes to the left + +\xifaspectratio{ + {169} { + \pgfdeclareimage[width=\paperwidth]{titlebackground}{./figures/master169.jpg} + \if@rightfooterOption + \pgfdeclareimage[width=\paperwidth]{background}{./figures/secondary_right169.jpg} +\else + \pgfdeclareimage[width=\paperwidth]{background}{./figures/secondary169.jpg} +\fi +} +}[ +\pgfdeclareimage[width=\paperwidth]{titlebackground}{./figures/master.jpg} + \if@rightfooterOption + \pgfdeclareimage[width=\paperwidth]{background}{./figures/secondary_right.jpg} +\else + \pgfdeclareimage[width=\paperwidth]{background}{./figures/secondary.jpg} +\fi +] + +\setbeamertemplate{background canvas}{% +\xifaspectratio{ + {169} { + \ifnum\c@framenumber=1 % + \begin{picture}(0,0) + \put(-3,-256){% + \pgfuseimage{titlebackground} + } + \end{picture} + \else% + \begin{picture}(0,0) + \put(-3,-260){% + \pgfuseimage{background} + } + \end{picture} + \fi + } + {43} { + \ifnum\c@framenumber=1 % + \begin{picture}(0,0) + \put(-4,-274){% + \pgfuseimage{titlebackground} + } + \end{picture} + \else% + \begin{picture}(0,0) + \put(-4,-274){% + \pgfuseimage{background} + } + \end{picture} + \fi + } +} +} + + + +%\setbeamertemplate{background canvas}{% +% % On title page +% \ifnum\c@framenumber=1 % +% \begin{picture}(0,0) +% \put(0,-253){% +% \pgfuseimage{titlebackground} +% } +% \end{picture} +% +% \else% +% \xifaspectratio{ +% {169} { +% % Other frames background +% \begin{picture}(0,0) +% \put(-4,-260){% +% \pgfuseimage{background} +% } +% \end{picture} +% } +% }[ +% % Other frames background +% \begin{picture}(0,0) +% \put(-4,-274){% +% \pgfuseimage{background} +% } +% \end{picture} +% ] +% \fi% +%} + + +\setbeamertemplate{title page}{ +\vspace{40pt} +\begin{center} +\usebeamerfont{title} {\huge \inserttitle}\par +\vspace{4ex} +\usebeamerfont{author} { + \insertauthor +}\par +\vspace{2ex} +\usebeamerfont{institute}{ + \insertinstitute +} \par +\vspace{2ex} +\usebeamerfont{date}{ + \insertdate +} +\end{center} +} + + +\setbeamertemplate{frametitle}[default][center] +\setbeamertemplate{frametitle}{ + \makeatletter + \regexpatchcmd{\insertframetitle} + {(\c{usebeamertemplate}.*)\c{fi}} + {\c{NoCaseChange}\cB\{\1\cE\}\c{fi}} + {}{}% + \makeatother + \vskip1ex + \insertframetitle +} + +% Here we define what appears at the bottom of each slide: the "footline". +\setbeamertemplate{footline}{% + \leavevmode% + + % Horizontal line dividing the rest of the slide from the footer? + % hrule goes all the way across... + % \hrule height.3pt% + % With \rule, you can specify the thickness + % \rule[raise-height]{width}{thickness} + % \hspace{.025\textwidth}\rule{.95\textwidth}{.5pt} + + \hbox{% + \ifnum \thepage>1 + \if@rightfooterOption + \begin{minipage}{.2\textwidth}% + \hskip .05\textwidth%Give horizontal space else this will set on the left edge of the slide! + \end{minipage} + \else + \begin{minipage}{.4\textwidth}% + \hskip .05\textwidth%Give horizontal space else this will set on the left edge of the slide! + \end{minipage} + \fi + + + \begin{minipage}{\textwidth}% + % \vskip .023\textheight% + \raggedleft% + \setlength{\rightskip}{\textwidth} + \if@rightfooterOption + \hbox{% + \begin{beamercolorbox}[wd=0.7\textwidth,ht=2.25ex,dp=1ex,left]{author in head/foot}% + \insertshorttitle{} \hskip .01\textwidth | \hskip .01\textwidth \insertdate{} \hskip .01\textwidth | \hskip .01\textwidth \insertframenumber{} + \end{beamercolorbox}% + } + \else + \hbox{% + \begin{beamercolorbox}[wd=0.5\textwidth,ht=2.25ex,dp=1ex,left]{author in head/foot}% + \insertshorttitle{} \hskip .01\textwidth | \hskip .01\textwidth \insertdate{} \hskip .01\textwidth | \hskip .01\textwidth \insertframenumber{} + \end{beamercolorbox}% + } + \fi + + \end{minipage}% + \begin{minipage}{.05\textwidth}% + \end{minipage}% + \fi %\thepage>1 + }% + \vskip .023\textheight% + +} + + + + +\ifTACCheadernav + +\usesectionheadtemplate +{\hfill\insertsectionhead} +{\hfill\color{fg!50!bg}\insertsectionhead} + +% Head +\ifbeamer@compress + +% Here we define how the top of the frame looks, the "headline". +\setbeamertemplate{headline} +{% + \ifnum \thepage>1 + \leavevmode% + \begin{beamercolorbox}[wd=.5\paperwidth,ht=2.5ex,dp=1.125ex]{% + section in head/foot}% + \insertsectionnavigationhorizontal{.5\paperwidth}{\hskip0pt plus1filll}{}% + \end{beamercolorbox}% + \begin{beamercolorbox}[wd=.5\paperwidth,ht=2.5ex,dp=1.125ex]{% + subsection in head/foot}% + \insertsubsectionnavigationhorizontal{% + .5\paperwidth}{}{\hskip0pt plus1filll}% + \end{beamercolorbox}% + \fi %\thepage>1 +} + +\else% Not compressed + +\setbeamertemplate{headline} +{% + \ifnum \thepage>1 + \leavevmode% + \@tempdimb=2.4375ex% + \ifnum\beamer@subsectionmax<\beamer@sectionmax% + \multiply\@tempdimb by\beamer@sectionmax% + \else% + \multiply\@tempdimb by\beamer@subsectionmax% + \fi% + \ifdim\@tempdimb>0pt% + \advance\@tempdimb by 1.125ex% + \begin{beamercolorbox}[wd=.5\paperwidth,ht=\@tempdimb]{% + section in head/foot}% + \vbox to\@tempdimb{\vfil\insertsectionnavigation{.5\paperwidth}\vfil}% + \end{beamercolorbox}% + \begin{beamercolorbox}[wd=.5\paperwidth,ht=\@tempdimb]{% + subsection in head/foot}% + \vbox to\@tempdimb{\vfil\insertsubsectionnavigation{.5\paperwidth}\vfil}% + \end{beamercolorbox}% + \fi% + \fi % \thepage>1 +} + +\fi % end if compressed +\fi % TACCheadernav + + +\ifTACCheadertree + +\setbeamertemplate{headline} +{ + \begin{beamercolorbox}[wd=\paperwidth,colsep=1.5pt]{upper separation line head} + \end{beamercolorbox} + % + % Place short title + % + \begin{beamercolorbox}[wd=\paperwidth,ht=2.5ex,dp=1.125ex,% + leftskip=.3cm,rightskip=.3cm plus1fil]{title in head/foot} + \usebeamerfont{title in head/foot}\insertshorttitle + \end{beamercolorbox} + + % + % Place section + % + \begin{beamercolorbox}[wd=\paperwidth,ht=2.5ex,dp=1.125ex,% + leftskip=.3cm,rightskip=.3cm plus1fil]{section in head/foot} + \usebeamerfont{section in head/foot}% + %\ifbeamer@tree@showhooks + \setbox\beamer@tempbox=\hbox{\insertsectionhead}% + \ifdim\wd\beamer@tempbox>1pt% + \hskip2pt\raise1.9pt\hbox{\vrule width0.4pt height1.875ex\vrule width 5pt height0.4pt}% + \hskip1pt% + \fi + \insertsectionhead + \end{beamercolorbox} + +% +% Place subsection +% +\begin{beamercolorbox}[wd=\paperwidth,ht=2.5ex,dp=1.125ex,% + leftskip=.3cm,rightskip=.3cm plus1fil]{subsection in head/foot} + \usebeamerfont{subsection in head/foot}% + %\ifbeamer@tree@showhooks + \setbox\beamer@tempbox=\hbox{\insertsubsectionhead}% + \ifdim\wd\beamer@tempbox>1pt% + \hskip9.4pt\raise1.9pt\hbox{\vrule width0.4pt height1.875ex\vrule width 5pt height0.4pt}% + \hskip1pt% + \fi + \insertsubsectionhead +\end{beamercolorbox} + +% +% Place final separation box +% + \begin{beamercolorbox}[wd=\paperwidth,colsep=1.5pt + ]{lower separation line head} + \end{beamercolorbox} + + % + % Another matching rule which helps to frame the content + % + \hspace{.025\textwidth}\rule{.95\textwidth}{.5pt} +} +\fi % TACCheadertree + + +% The following command suppresses all navigation symbols. This is +% necessary in the TACC theme, since it overlaps where we want the +% logo to be. +\setbeamertemplate{navigation symbols}{} + + +\mode + diff --git a/my_docs/17/pearc_17/beamerthemeTACC.sty b/my_docs/17/pearc_17/beamerthemeTACC.sty deleted file mode 120000 index 5c339abd4..000000000 --- a/my_docs/17/pearc_17/beamerthemeTACC.sty +++ /dev/null @@ -1 +0,0 @@ -../../beamer/beamerthemeTACC.sty \ No newline at end of file diff --git a/my_docs/17/pearc_17/beamerthemeTACC.sty b/my_docs/17/pearc_17/beamerthemeTACC.sty new file mode 100755 index 000000000..c6a1b1269 --- /dev/null +++ b/my_docs/17/pearc_17/beamerthemeTACC.sty @@ -0,0 +1,26 @@ +%% TACC theme for beamer + +\newif\ifTACCheadernav +\DeclareOption{headernav}{\global\TACCheadernavtrue} + +\newif\ifTACCheadertree +\DeclareOption{headertree}{\global\TACCheadertreetrue} +\ProcessOptions + +\mode + +\usefonttheme{TACC} +\usecolortheme{TACC} +\useinnertheme{TACC} +\useoutertheme{TACC} + +\mode + + +\newcommand{\event}[1]{% + \makeatletter% + \def\TACC@eventname{#1}% + \makeatother} + +\newcommand{\sectionframe}[1]{\section{#1}\frame{\Large\textbf{#1}}} +\newcommand{\subsectionframe}[1]{\subsection{#1}\frame{\large\textbf{#1}}} diff --git a/my_docs/17/pearc_17/beamerthemeTACC16.sty b/my_docs/17/pearc_17/beamerthemeTACC16.sty deleted file mode 120000 index 7a9d4d296..000000000 --- a/my_docs/17/pearc_17/beamerthemeTACC16.sty +++ /dev/null @@ -1 +0,0 @@ -../../beamer/beamerthemeTACC16.sty \ No newline at end of file diff --git a/my_docs/17/pearc_17/beamerthemeTACC16.sty b/my_docs/17/pearc_17/beamerthemeTACC16.sty new file mode 100755 index 000000000..b522d0207 --- /dev/null +++ b/my_docs/17/pearc_17/beamerthemeTACC16.sty @@ -0,0 +1,61 @@ +%% TACC theme for beamer + + +\newif\if@rightfooterOption +\@rightfooterOptionfalse +\DeclareOption{rightfooter}{\@rightfooterOptiontrue} +\ProcessOptions + + +\newif\ifTACCheadernav +\DeclareOption{headernav}{\global\TACCheadernavtrue} + +\newif\ifTACCheadertree +\DeclareOption{headertree}{\global\TACCheadertreetrue} +\ProcessOptions + +\usepackage{xparse} +\ExplSyntaxOn +\NewDocumentCommand{\ifaspectratio}{mmm} + { + % Recover the option from those passed to the class + \keys_set:nf { zunbeltz/beameroptions } { \use:c { opt@beamer.cls } } + \str_if_eq:nVTF { #1 } \l_zunbeltz_aspectratio_tl { #2 } { #3 } + } +\NewDocumentCommand{\xifaspectratio}{mO{}} + { + % Recover the option from those passed to the class + \keys_set:nf { zunbeltz/beameroptions } { \use:c { opt@beamer.cls } } + \str_case:VnF \l_zunbeltz_aspectratio_tl { #1 } { #2 } + } +% We need to define only one key, the other are treated as `unknown' +\keys_define:nn { zunbeltz/beameroptions } + { + aspectratio .tl_set:N = \l_zunbeltz_aspectratio_tl, + aspectratio .initial:n = 43, + unknown .code:n = {}, + } + +% Generate the variants we need +\cs_generate_variant:Nn \keys_set:nn { nf } +\cs_generate_variant:Nn \str_if_eq:nnTF { nV } +\cs_generate_variant:Nn \str_case:nnF { V } +\ExplSyntaxOff + +\mode + +\usefonttheme{TACC16} +\useinnertheme{TACC16} +\useoutertheme{TACC16} +\usecolortheme{TACC16} + +\mode + + +\newcommand{\event}[1]{% + \makeatletter% + \def\TACC@eventname{#1}% + \makeatother} + +\newcommand{\sectionframe}[1]{\section{#1}\frame{\Large\textbf{#1}}} +\newcommand{\subsectionframe}[1]{\subsection{#1}\frame{\large\textbf{#1}}} diff --git a/my_docs/17/pearc_17/figures b/my_docs/17/pearc_17/figures deleted file mode 120000 index ddafd8974..000000000 --- a/my_docs/17/pearc_17/figures +++ /dev/null @@ -1 +0,0 @@ -../../beamer/figures \ No newline at end of file diff --git a/my_docs/17/pearc_17/figures/TACC_logo.pdf b/my_docs/17/pearc_17/figures/TACC_logo.pdf new file mode 100755 index 000000000..c018a20cb Binary files /dev/null and b/my_docs/17/pearc_17/figures/TACC_logo.pdf differ diff --git a/my_docs/17/pearc_17/figures/UT_logo.pdf b/my_docs/17/pearc_17/figures/UT_logo.pdf new file mode 100755 index 000000000..d5b42e752 Binary files /dev/null and b/my_docs/17/pearc_17/figures/UT_logo.pdf differ diff --git a/my_docs/17/pearc_17/figures/cc.png b/my_docs/17/pearc_17/figures/cc.png new file mode 100644 index 000000000..8a532ff8f Binary files /dev/null and b/my_docs/17/pearc_17/figures/cc.png differ diff --git a/my_docs/17/pearc_17/figures/isa.png b/my_docs/17/pearc_17/figures/isa.png new file mode 100644 index 000000000..f95d985e7 Binary files /dev/null and b/my_docs/17/pearc_17/figures/isa.png differ diff --git a/my_docs/17/pearc_17/figures/master.jpg b/my_docs/17/pearc_17/figures/master.jpg new file mode 100644 index 000000000..f5c56c04a Binary files /dev/null and b/my_docs/17/pearc_17/figures/master.jpg differ diff --git a/my_docs/17/pearc_17/figures/master169.jpg b/my_docs/17/pearc_17/figures/master169.jpg new file mode 100644 index 000000000..b215776eb Binary files /dev/null and b/my_docs/17/pearc_17/figures/master169.jpg differ diff --git a/my_docs/17/pearc_17/figures/master169.png b/my_docs/17/pearc_17/figures/master169.png new file mode 100644 index 000000000..bc5c0ed12 Binary files /dev/null and b/my_docs/17/pearc_17/figures/master169.png differ diff --git a/my_docs/17/pearc_17/figures/secondary.jpg b/my_docs/17/pearc_17/figures/secondary.jpg new file mode 100644 index 000000000..d905a95c9 Binary files /dev/null and b/my_docs/17/pearc_17/figures/secondary.jpg differ diff --git a/my_docs/17/pearc_17/figures/secondary169.jpg b/my_docs/17/pearc_17/figures/secondary169.jpg new file mode 100644 index 000000000..4eb017957 Binary files /dev/null and b/my_docs/17/pearc_17/figures/secondary169.jpg differ diff --git a/my_docs/17/pearc_17/figures/secondary169.png b/my_docs/17/pearc_17/figures/secondary169.png new file mode 100644 index 000000000..cb9060a56 Binary files /dev/null and b/my_docs/17/pearc_17/figures/secondary169.png differ diff --git a/my_docs/17/pearc_17/figures/secondary_right.jpg b/my_docs/17/pearc_17/figures/secondary_right.jpg new file mode 100644 index 000000000..f25f93a58 Binary files /dev/null and b/my_docs/17/pearc_17/figures/secondary_right.jpg differ diff --git a/my_docs/17/pearc_17/figures/secondary_right169.jpg b/my_docs/17/pearc_17/figures/secondary_right169.jpg new file mode 100644 index 000000000..567a1078f Binary files /dev/null and b/my_docs/17/pearc_17/figures/secondary_right169.jpg differ diff --git a/my_docs/17/pearc_17/themes b/my_docs/17/pearc_17/themes deleted file mode 120000 index a98530730..000000000 --- a/my_docs/17/pearc_17/themes +++ /dev/null @@ -1 +0,0 @@ -../../beamer/themes \ No newline at end of file diff --git a/my_docs/17/pearc_17/themes/beamercolorthemeTACC16.sty b/my_docs/17/pearc_17/themes/beamercolorthemeTACC16.sty new file mode 100644 index 000000000..248ae8cb6 --- /dev/null +++ b/my_docs/17/pearc_17/themes/beamercolorthemeTACC16.sty @@ -0,0 +1,193 @@ +% Copyright 2003 by Till Tantau . +% +% This program can be redistributed and/or modified under the terms +% of the GNU Public License, version 2. + +\mode + +\usepackage{textcase,regexpatch} + +\setbeamertemplate{blocks}[rounded][shadow=true] + + +\definecolor{TACCred}{RGB}{180,13,29} +\definecolor{TACCorange}{RGB}{210,104,43} +\definecolor{TACCblue}{RGB}{21,77,122} +%\definecolor{TACCgreen}{RGB}{30,134,104} +\definecolor{TACCgreen}{RGB}{49,168,51} + +% I downloaded a gimp color palette from +% http://maururu.net/2007/latex-beamer-color-palette/ +% Which provides rgb values (I think) for several of the +% default beamer themes. You can open this in gimp by +% opening the Palettes dialog, right-clicking anywhere and choosing +% 'Import Palette'. A color in there called 'default added blue' +% appeared to be approximately what I wanted. It had the triple +% of values 141 145 208. If you double-click on this in the +% palette editor it gives you a bunch of information. You can't +% use these values directly to set a color...it just comes out white. +% I think definecolor is expecting something normalized by 255. Yes! + + +%%% +% Set the normal text color +%%% +\setbeamercolor{normal text}{fg=black} %,bg=white} +\setbeamercolor{example text}{fg=TACCgreen} +\setbeamercolor{alerted text}{fg=TACCorange} + + +\setbeamercolor{structure}{fg=black} +%\setbeamercolor{structure}{fg=black} + +\setbeamercolor{background canvas}{parent=normal text} +\setbeamercolor{background}{parent=background canvas} + +\setbeamercolor{palette primary}{use=structure,fg=structure.fg} +\setbeamercolor{palette secondary}{use=structure,fg=structure.fg!75!black} +\setbeamercolor{palette tertiary}{use=structure,fg=structure.fg!50!black} +\setbeamercolor{palette quaternary}{fg=black} + +\setbeamercolor{palette sidebar primary}{use=normal text,fg=normal text.fg} +\setbeamercolor{palette sidebar secondary}{use=structure,fg=structure.fg} +\setbeamercolor{palette sidebar tertiary}{use=normal text,fg=normal text.fg} +\setbeamercolor{palette sidebar quaternary}{use=structure,fg=structure.fg} + +\setbeamercolor{math text}{} +\setbeamercolor{math text inlined}{parent=math text} +\setbeamercolor{math text displayed}{parent=math text} + +\setbeamercolor{normal text in math text}{} + +\setbeamercolor{local structure}{parent=structure} + +\setbeamercolor{titlelike}{parent=structure} + +\setbeamercolor{title}{parent=titlelike} +\setbeamercolor{title in head/foot}{parent=palette quaternary} +\setbeamercolor{title in sidebar}{parent=palette sidebar quaternary} + +\setbeamercolor{subtitle}{parent=title} + +\setbeamercolor{author}{} +\setbeamercolor{author in head/foot}{parent=palette primary} +\setbeamercolor{author in sidebar}{use=palette sidebar tertiary,fg=palette sidebar tertiary.fg} + +\setbeamercolor{institute}{} +\setbeamercolor{institute in head/foot}{parent=palette tertiary} +\setbeamercolor{institute in sidebar}{use=palette sidebar tertiary,fg=palette sidebar tertiary.fg} + +\setbeamercolor{date}{} +\setbeamercolor{date in head/foot}{parent=palette secondary} +\setbeamercolor{date in sidebar}{use=palette sidebar tertiary,fg=palette sidebar tertiary.fg} + +\setbeamercolor{titlegraphic}{} + +\setbeamercolor{part name}{} +\setbeamercolor{part title}{parent=titlelike} + +\setbeamercolor{section in toc}{parent=structure} +\setbeamercolor{section in toc shaded}{parent=section in toc} +\setbeamercolor{section in head/foot}{parent=palette tertiary} +\setbeamercolor{section in sidebar}{parent=palette sidebar secondary} +\setbeamercolor{section in sidebar shaded}{use=section in sidebar,fg=section in sidebar.fg!40!bg} +\setbeamercolor{section number projected}{parent=item projected} + +\setbeamercolor{subsection in toc}{} +\setbeamercolor{subsection in toc shaded}{parent=subsection in toc} +\setbeamercolor{subsection in head/foot}{parent=palette secondary} +\setbeamercolor{subsection in sidebar}{parent=palette sidebar primary} +\setbeamercolor{subsection in sidebar shaded}{use=subsection in sidebar,fg=subsection in sidebar.fg!40!bg} +\setbeamercolor{subsection number projected}{parent={subitem projected}} + +\setbeamercolor{subsubsection in toc}{parent=subsection in toc} +\setbeamercolor{subsubsection in toc shaded}{parent=subsubsection in toc} +\setbeamercolor{subsubsection in head/foot}{parent=subsection in head/foot} +\setbeamercolor{subsubsection in sidebar}{parent=subsection in sidebar} +\setbeamercolor{subsubsection in sidebar shaded}{parent=subsection in sidebar shaded} +\setbeamercolor{subsubsection number projected}{parent=subsubitem projected} + +\setbeamercolor{headline}{} +\setbeamercolor{footline}{} + +\setbeamercolor{sidebar}{} +\setbeamercolor{sidebar left}{parent=sidebar} +\setbeamercolor{sidebar right}{parent=sidebar} + +\setbeamercolor{logo}{parent=palette secondary} + +\setbeamercolor{frametitle}{parent=titlelike} +\setbeamercolor{framesubtitle}{parent=frametitle} + +\setbeamercolor{frametitle right}{parent=frametitle} + +\setbeamercolor{caption}{} +\setbeamercolor{caption name}{parent=structure} + +\setbeamercolor{button}{use=local structure,bg=local structure.fg!50!bg,fg=white} +\setbeamercolor{button border}{use=button,fg=button.bg} +\setbeamercolor{navigation symbols}{use=structure,fg=structure.fg!40!bg} +\setbeamercolor{navigation symbols dimmed}{use=structure,fg=structure.fg!20!bg} +\setbeamercolor{mini frame}{parent=section in head/foot} + +\setbeamercolor{block body}{fg=black} +\setbeamercolor{block body alerted}{fg=black} +\setbeamercolor{block body example}{fg=black} + +\setbeamercolor{block title}{bg=TACCblue,fg=white} +\setbeamercolor{block title alerted}{bg=TACCred,fg=white} +\setbeamercolor{block title example}{bg=TACCgreen,fg=white} + +\setbeamercolor{item}{parent=local structure} +\setbeamercolor{subitem}{parent=item} +\setbeamercolor{subsubitem}{parent=subitem} + +\setbeamercolor{item projected}{parent=item,use=item,fg=black,bg=item.fg} +\setbeamercolor{subitem projected}{parent=item projected} +\setbeamercolor{subsubitem projected}{parent=subitem projected} + +\setbeamercolor{enumerate item}{parent=item} +\setbeamercolor{enumerate subitem}{parent=subitem} +\setbeamercolor{enumerate subsubitem}{parent=subsubitem} + +\setbeamercolor{itemize item}{parent=item} +\setbeamercolor{itemize subitem}{parent=subitem} +\setbeamercolor{itemize subsubitem}{parent=subsubitem} + +\setbeamercolor{itemize/enumerate body}{} +\setbeamercolor{itemize/enumerate subbody}{} +\setbeamercolor{itemize/enumerate subsubbody}{} + +\setbeamercolor{description item}{parent=item} + +\setbeamercolor{bibliography item}{parent=item} + +\setbeamercolor{bibliography entry author}{use=structure,fg=structure.fg} +\setbeamercolor{bibliography entry title}{use=normal text,fg=normal text.fg} +\setbeamercolor{bibliography entry location}{use=structure,fg=structure.fg!65!bg} +\setbeamercolor{bibliography entry note}{use=structure,fg=structure.fg!65!bg} + +\setbeamercolor{separation line}{} + +\setbeamercolor{upper separation line head}{parent=separation line} +\setbeamercolor{middle separation line head}{parent=separation line} +\setbeamercolor{lower separation line head}{parent=separation line} + +\setbeamercolor{upper separation line foot}{parent=separation line} +\setbeamercolor{middle separation line foot}{parent=separation line} +\setbeamercolor{lower separation line foot}{parent=separation line} + +\setbeamercolor{abstract}{} +\setbeamercolor{abstract title}{parent=structure} + +\setbeamercolor{verse}{} + +\setbeamercolor{quotation}{} +\setbeamercolor{quote}{parent=quotation} + +\setbeamercolor{page number in head/foot}{fg=fg!50!bg} + +\setbeamercolor{qed symbol}{parent=structure} + +\mode + diff --git a/my_docs/17/pearc_17/themes/beamerfontthemeTACC16.sty b/my_docs/17/pearc_17/themes/beamerfontthemeTACC16.sty new file mode 100644 index 000000000..d0fc325cc --- /dev/null +++ b/my_docs/17/pearc_17/themes/beamerfontthemeTACC16.sty @@ -0,0 +1,21 @@ +% Copyright 2003 by Till Tantau +% +% This program can be redistributed and/or modified under the terms +% of the GNU Public License, version 2. + +\mode +\setbeamerfont{title}{parent=structure,size=\LARGE,series=\bfseries} +\setbeamerfont{author}{parent=structure,size=\large, series=\normalfont} +\setbeamerfont{frametitle}{parent=structure,size=\LARGE,series=\bfseries} +\setbeamerfont{framesubtitle}{parent=frametitle,size=\small} + +%\usefonttheme{professionalfonts} % using non standard fonts for beamer +%\usefonttheme{serif} % default family is serif +%\usepackage{fontspec} +%\setmainfont{Century Gothic} + +%\usepackage{fontspec} +\usepackage{libertine} + +\mode + diff --git a/my_docs/17/pearc_17/themes/beamerinnerthemeTACC16.sty b/my_docs/17/pearc_17/themes/beamerinnerthemeTACC16.sty new file mode 100644 index 000000000..f7f454e1d --- /dev/null +++ b/my_docs/17/pearc_17/themes/beamerinnerthemeTACC16.sty @@ -0,0 +1,11 @@ +\mode + +\setbeamertemplate{itemize item}[triangle] +\setbeamertemplate{itemize subitem}[triangle] +\setbeamertemplate{itemize subsubitem}[triangle] +\setbeamertemplate{section in toc}{$\bullet$\hskip.5em\inserttocsection} +%\setbeamertemplate{subsection in toc}{} +\setbeamertemplate{subsubsection in toc}{} + +\mode + diff --git a/my_docs/17/pearc_17/themes/beamerouterthemeTACC16-169.sty b/my_docs/17/pearc_17/themes/beamerouterthemeTACC16-169.sty new file mode 100644 index 000000000..c62f9ed04 --- /dev/null +++ b/my_docs/17/pearc_17/themes/beamerouterthemeTACC16-169.sty @@ -0,0 +1,247 @@ +% Copyright 2003 by Till Tantau +% +% This program can be redistributed and/or modified under the terms +% of the GNU Public License, version 2. + +\mode + +\usepackage{xcolor} +\usepackage{graphicx} +\usepackage{etoolbox} + +\pgfdeclareimage[width=\paperwidth]{titlebackground}{./figures/master169.png} +\pgfdeclareimage[width=\paperwidth]{background}{./figures/secondary169.png} + +\setbeamertemplate{background canvas}{% + \ifnum\c@framenumber=1% + \begin{picture}(0,0) + \put(-0.15,-250){% + \pgfuseimage{titlebackground} + } + %\put(0,-130.7){% + + %\begin{minipage}[b][45mm][t]{\textwidth}%{226mm} + %\begin{center} + % \usebeamerfont{title}{\MakeTextUppercase{\inserttitle}\par} + %\vspace{2ex} + %\usebeamerfont{author}{\insertauthor} + % \end{center} + %\end{minipage} + %} + \end{picture} + % On title page + \else% + % Other frames background + \begin{picture}(0,0) + \put(-0.15,-255.55){% + \pgfuseimage{background} + } + \end{picture} + \fi% +} + + +\setbeamertemplate{title page}{ +\vspace{40pt} +\begin{center} +\usebeamerfont{title} {\huge \inserttitle}\par +\vspace{4ex} +\usebeamerfont{author} { + \insertauthor +}\par +\vspace{2ex} +\usebeamerfont{institute}{ + \insertinstitute +} \par +\vspace{2ex} +\usebeamerfont{date}{ + \insertdate +} +\end{center} +} + + +\setbeamertemplate{frametitle}[default][center] +\setbeamertemplate{frametitle}{ + \makeatletter + \regexpatchcmd{\insertframetitle} + {(\c{usebeamertemplate}.*)\c{fi}} + {\c{NoCaseChange}\cB\{\1\cE\}\c{fi}} + {}{}% + \makeatother + \vskip1ex + \insertframetitle +} + +% Here we define what appears at the bottom of each slide: the "footline". +\setbeamertemplate{footline}{% + \leavevmode% + + % Horizontal line dividing the rest of the slide from the footer? + % hrule goes all the way across... + % \hrule height.3pt% + % With \rule, you can specify the thickness + % \rule[raise-height]{width}{thickness} + % \hspace{.025\textwidth}\rule{.95\textwidth}{.5pt} + + \hbox{% + \ifnum \thepage>1 + % On the left half of the footer, insert the TACC of + \begin{minipage}{.2\textwidth}% + \hskip .05\textwidth%Give horizontal space else this will set on the left edge of the slide! + % \includegraphics[width=.8\textwidth]{TACC_logo.png} + \end{minipage} + + + \begin{minipage}{\textwidth}% + % \vskip .023\textheight% + \raggedleft% + \setlength{\rightskip}{\textwidth} + \hbox{% + \begin{beamercolorbox}[wd=0.7\textwidth,ht=2.25ex,dp=1ex,left]{author in head/foot}% + \insertshorttitle{} \hskip .01\textwidth | \hskip .01\textwidth \insertdate{} \hskip .01\textwidth | \hskip .01\textwidth \insertframenumber{} + \end{beamercolorbox}% + } + + % + % If we are not on the first page, insert a page number + % For some reason, insertframenumber is buggy when you have fragile + % slides with verbatim environments in them... it tends to skip numbers + % for some reason! On the other hand, the pagenumber is incremented + % for *every* slide, including transition slides... + % \hfill\includegraphics[width=\textwidth]{tacc_ut.png} + \end{minipage}% + \begin{minipage}{.05\textwidth}% + \end{minipage}% + \fi %\thepage>1 + }% + \vskip .023\textheight% + +} + + + + +\ifTACCheadernav + +\usesectionheadtemplate +{\hfill\insertsectionhead} +{\hfill\color{fg!50!bg}\insertsectionhead} + +% Head +\ifbeamer@compress + +% Here we define how the top of the frame looks, the "headline". +\setbeamertemplate{headline} +{% + \ifnum \thepage>1 + \leavevmode% + \begin{beamercolorbox}[wd=.5\paperwidth,ht=2.5ex,dp=1.125ex]{% + section in head/foot}% + \insertsectionnavigationhorizontal{.5\paperwidth}{\hskip0pt plus1filll}{}% + \end{beamercolorbox}% + \begin{beamercolorbox}[wd=.5\paperwidth,ht=2.5ex,dp=1.125ex]{% + subsection in head/foot}% + \insertsubsectionnavigationhorizontal{% + .5\paperwidth}{}{\hskip0pt plus1filll}% + \end{beamercolorbox}% + \fi %\thepage>1 +} + +\else% Not compressed + +\setbeamertemplate{headline} +{% + \ifnum \thepage>1 + \leavevmode% + \@tempdimb=2.4375ex% + \ifnum\beamer@subsectionmax<\beamer@sectionmax% + \multiply\@tempdimb by\beamer@sectionmax% + \else% + \multiply\@tempdimb by\beamer@subsectionmax% + \fi% + \ifdim\@tempdimb>0pt% + \advance\@tempdimb by 1.125ex% + \begin{beamercolorbox}[wd=.5\paperwidth,ht=\@tempdimb]{% + section in head/foot}% + \vbox to\@tempdimb{\vfil\insertsectionnavigation{.5\paperwidth}\vfil}% + \end{beamercolorbox}% + \begin{beamercolorbox}[wd=.5\paperwidth,ht=\@tempdimb]{% + subsection in head/foot}% + \vbox to\@tempdimb{\vfil\insertsubsectionnavigation{.5\paperwidth}\vfil}% + \end{beamercolorbox}% + \fi% + \fi % \thepage>1 +} + +\fi % end if compressed +\fi % TACCheadernav + + +\ifTACCheadertree + +\setbeamertemplate{headline} +{ + \begin{beamercolorbox}[wd=\paperwidth,colsep=1.5pt]{upper separation line head} + \end{beamercolorbox} + % + % Place short title + % + \begin{beamercolorbox}[wd=\paperwidth,ht=2.5ex,dp=1.125ex,% + leftskip=.3cm,rightskip=.3cm plus1fil]{title in head/foot} + \usebeamerfont{title in head/foot}\insertshorttitle + \end{beamercolorbox} + + % + % Place section + % + \begin{beamercolorbox}[wd=\paperwidth,ht=2.5ex,dp=1.125ex,% + leftskip=.3cm,rightskip=.3cm plus1fil]{section in head/foot} + \usebeamerfont{section in head/foot}% + %\ifbeamer@tree@showhooks + \setbox\beamer@tempbox=\hbox{\insertsectionhead}% + \ifdim\wd\beamer@tempbox>1pt% + \hskip2pt\raise1.9pt\hbox{\vrule width0.4pt height1.875ex\vrule width 5pt height0.4pt}% + \hskip1pt% + \fi + \insertsectionhead + \end{beamercolorbox} + +% +% Place subsection +% +\begin{beamercolorbox}[wd=\paperwidth,ht=2.5ex,dp=1.125ex,% + leftskip=.3cm,rightskip=.3cm plus1fil]{subsection in head/foot} + \usebeamerfont{subsection in head/foot}% + %\ifbeamer@tree@showhooks + \setbox\beamer@tempbox=\hbox{\insertsubsectionhead}% + \ifdim\wd\beamer@tempbox>1pt% + \hskip9.4pt\raise1.9pt\hbox{\vrule width0.4pt height1.875ex\vrule width 5pt height0.4pt}% + \hskip1pt% + \fi + \insertsubsectionhead +\end{beamercolorbox} + +% +% Place final separation box +% + \begin{beamercolorbox}[wd=\paperwidth,colsep=1.5pt + ]{lower separation line head} + \end{beamercolorbox} + + % + % Another matching rule which helps to frame the content + % + \hspace{.025\textwidth}\rule{.95\textwidth}{.5pt} +} +\fi % TACCheadertree + + +% The following command suppresses all navigation symbols. This is +% necessary in the TACC theme, since it overlaps where we want the +% logo to be. +\setbeamertemplate{navigation symbols}{} + + +\mode + diff --git a/my_docs/17/pearc_17/themes/beamerouterthemeTACC16.sty b/my_docs/17/pearc_17/themes/beamerouterthemeTACC16.sty new file mode 100644 index 000000000..c5b178018 --- /dev/null +++ b/my_docs/17/pearc_17/themes/beamerouterthemeTACC16.sty @@ -0,0 +1,247 @@ +% Copyright 2003 by Till Tantau +% +% This program can be redistributed and/or modified under the terms +% of the GNU Public License, version 2. + +\mode + +\usepackage{xcolor} +\usepackage{graphicx} +\usepackage{etoolbox} + +\pgfdeclareimage[width=\paperwidth]{titlebackground}{master.jpg} +\pgfdeclareimage[width=\paperwidth]{background}{secondary.jpg} + +\setbeamertemplate{background canvas}{% + \ifnum\c@framenumber=1% + \begin{picture}(0,0) + \put(0,-273){% + \pgfuseimage{titlebackground} + } + %\put(0,-130.7){% + + %\begin{minipage}[b][45mm][t]{\textwidth}%{226mm} + %\begin{center} + % \usebeamerfont{title}{\MakeTextUppercase{\inserttitle}\par} + %\vspace{2ex} + %\usebeamerfont{author}{\insertauthor} + % \end{center} + %\end{minipage} + %} + \end{picture} + % On title page + \else% + % Other frames background + \begin{picture}(0,0) + \put(0,-273){% + \pgfuseimage{background} + } + \end{picture} + \fi% +} + + +\setbeamertemplate{title page}{ +\vspace{40pt} +\begin{center} +\usebeamerfont{title} {\huge \inserttitle}\par +\vspace{4ex} +\usebeamerfont{author} { + \insertauthor +}\par +\vspace{2ex} +\usebeamerfont{institute}{ + \insertinstitute +} \par +\vspace{2ex} +\usebeamerfont{date}{ + \insertdate +} +\end{center} +} + + +\setbeamertemplate{frametitle}[default][center] +\setbeamertemplate{frametitle}{ + \makeatletter + \regexpatchcmd{\insertframetitle} + {(\c{usebeamertemplate}.*)\c{fi}} + {\c{NoCaseChange}\cB\{\1\cE\}\c{fi}} + {}{}% + \makeatother + \vskip1ex + \insertframetitle +} + +% Here we define what appears at the bottom of each slide: the "footline". +\setbeamertemplate{footline}{% + \leavevmode% + + % Horizontal line dividing the rest of the slide from the footer? + % hrule goes all the way across... + % \hrule height.3pt% + % With \rule, you can specify the thickness + % \rule[raise-height]{width}{thickness} + % \hspace{.025\textwidth}\rule{.95\textwidth}{.5pt} + + \hbox{% + \ifnum \thepage>1 + % On the left half of the footer, insert the TACC of + \begin{minipage}{.2\textwidth}% + \hskip .05\textwidth%Give horizontal space else this will set on the left edge of the slide! + % \includegraphics[width=.8\textwidth]{figures/TACC_logo.png} + \end{minipage} + + + \begin{minipage}{\textwidth}% + % \vskip .023\textheight% + \raggedleft% + \setlength{\rightskip}{\textwidth} + \hbox{% + \begin{beamercolorbox}[wd=0.7\textwidth,ht=2.25ex,dp=1ex,left]{author in head/foot}% + \insertshorttitle{} \hskip .01\textwidth | \hskip .01\textwidth \insertdate{} \hskip .01\textwidth | \hskip .01\textwidth \insertframenumber{} + \end{beamercolorbox}% + } + + % + % If we are not on the first page, insert a page number + % For some reason, insertframenumber is buggy when you have fragile + % slides with verbatim environments in them... it tends to skip numbers + % for some reason! On the other hand, the pagenumber is incremented + % for *every* slide, including transition slides... + % \hfill\includegraphics[width=\textwidth]{figures/tacc_ut.png} + \end{minipage}% + \begin{minipage}{.05\textwidth}% + \end{minipage}% + \fi %\thepage>1 + }% + \vskip .023\textheight% + +} + + + + +\ifTACCheadernav + +\usesectionheadtemplate +{\hfill\insertsectionhead} +{\hfill\color{fg!50!bg}\insertsectionhead} + +% Head +\ifbeamer@compress + +% Here we define how the top of the frame looks, the "headline". +\setbeamertemplate{headline} +{% + \ifnum \thepage>1 + \leavevmode% + \begin{beamercolorbox}[wd=.5\paperwidth,ht=2.5ex,dp=1.125ex]{% + section in head/foot}% + \insertsectionnavigationhorizontal{.5\paperwidth}{\hskip0pt plus1filll}{}% + \end{beamercolorbox}% + \begin{beamercolorbox}[wd=.5\paperwidth,ht=2.5ex,dp=1.125ex]{% + subsection in head/foot}% + \insertsubsectionnavigationhorizontal{% + .5\paperwidth}{}{\hskip0pt plus1filll}% + \end{beamercolorbox}% + \fi %\thepage>1 +} + +\else% Not compressed + +\setbeamertemplate{headline} +{% + \ifnum \thepage>1 + \leavevmode% + \@tempdimb=2.4375ex% + \ifnum\beamer@subsectionmax<\beamer@sectionmax% + \multiply\@tempdimb by\beamer@sectionmax% + \else% + \multiply\@tempdimb by\beamer@subsectionmax% + \fi% + \ifdim\@tempdimb>0pt% + \advance\@tempdimb by 1.125ex% + \begin{beamercolorbox}[wd=.5\paperwidth,ht=\@tempdimb]{% + section in head/foot}% + \vbox to\@tempdimb{\vfil\insertsectionnavigation{.5\paperwidth}\vfil}% + \end{beamercolorbox}% + \begin{beamercolorbox}[wd=.5\paperwidth,ht=\@tempdimb]{% + subsection in head/foot}% + \vbox to\@tempdimb{\vfil\insertsubsectionnavigation{.5\paperwidth}\vfil}% + \end{beamercolorbox}% + \fi% + \fi % \thepage>1 +} + +\fi % end if compressed +\fi % TACCheadernav + + +\ifTACCheadertree + +\setbeamertemplate{headline} +{ + \begin{beamercolorbox}[wd=\paperwidth,colsep=1.5pt]{upper separation line head} + \end{beamercolorbox} + % + % Place short title + % + \begin{beamercolorbox}[wd=\paperwidth,ht=2.5ex,dp=1.125ex,% + leftskip=.3cm,rightskip=.3cm plus1fil]{title in head/foot} + \usebeamerfont{title in head/foot}\insertshorttitle + \end{beamercolorbox} + + % + % Place section + % + \begin{beamercolorbox}[wd=\paperwidth,ht=2.5ex,dp=1.125ex,% + leftskip=.3cm,rightskip=.3cm plus1fil]{section in head/foot} + \usebeamerfont{section in head/foot}% + %\ifbeamer@tree@showhooks + \setbox\beamer@tempbox=\hbox{\insertsectionhead}% + \ifdim\wd\beamer@tempbox>1pt% + \hskip2pt\raise1.9pt\hbox{\vrule width0.4pt height1.875ex\vrule width 5pt height0.4pt}% + \hskip1pt% + \fi + \insertsectionhead + \end{beamercolorbox} + +% +% Place subsection +% +\begin{beamercolorbox}[wd=\paperwidth,ht=2.5ex,dp=1.125ex,% + leftskip=.3cm,rightskip=.3cm plus1fil]{subsection in head/foot} + \usebeamerfont{subsection in head/foot}% + %\ifbeamer@tree@showhooks + \setbox\beamer@tempbox=\hbox{\insertsubsectionhead}% + \ifdim\wd\beamer@tempbox>1pt% + \hskip9.4pt\raise1.9pt\hbox{\vrule width0.4pt height1.875ex\vrule width 5pt height0.4pt}% + \hskip1pt% + \fi + \insertsubsectionhead +\end{beamercolorbox} + +% +% Place final separation box +% + \begin{beamercolorbox}[wd=\paperwidth,colsep=1.5pt + ]{lower separation line head} + \end{beamercolorbox} + + % + % Another matching rule which helps to frame the content + % + \hspace{.025\textwidth}\rule{.95\textwidth}{.5pt} +} +\fi % TACCheadertree + + +% The following command suppresses all navigation symbols. This is +% necessary in the TACC theme, since it overlaps where we want the +% logo to be. +\setbeamertemplate{navigation symbols}{} + + +\mode + diff --git a/my_docs/17/pearc_17/themes/beamerthemeTACC16-169.sty b/my_docs/17/pearc_17/themes/beamerthemeTACC16-169.sty new file mode 100644 index 000000000..22caf9a05 --- /dev/null +++ b/my_docs/17/pearc_17/themes/beamerthemeTACC16-169.sty @@ -0,0 +1,38 @@ +%% TACC theme for beamer + +\newif\ifTACCheadernav +\DeclareOption{headernav}{\global\TACCheadernavtrue} + +\newif\ifTACCheadertree +\DeclareOption{headertree}{\global\TACCheadertreetrue} +\ProcessOptions + +\mode + +\makeatletter + \def\beamer@calltheme#1#2#3{% + \def\beamer@themelist{#2} + \@for\beamer@themename:=\beamer@themelist\do + {\usepackage[{#1}]{\beamer@themelocation/#3\beamer@themename}}} + + \def\usefolder#1{ + \def\beamer@themelocation{#1} + } + \def\beamer@themelocation{} + +\usefolder{themes} +\usefonttheme{TACC16} +\useinnertheme{TACC16} +\useoutertheme{TACC16-169} +\usecolortheme{TACC16} + +\mode + + +\newcommand{\event}[1]{% + \makeatletter% + \def\TACC@eventname{#1}% + \makeatother} + +\newcommand{\sectionframe}[1]{\section{#1}\frame{\Large\textbf{#1}}} +\newcommand{\subsectionframe}[1]{\subsection{#1}\frame{\large\textbf{#1}}} diff --git a/my_docs/17/pearc_17/themes/beamerthemeTACC16.sty b/my_docs/17/pearc_17/themes/beamerthemeTACC16.sty new file mode 100644 index 000000000..750bdd388 --- /dev/null +++ b/my_docs/17/pearc_17/themes/beamerthemeTACC16.sty @@ -0,0 +1,26 @@ +%% TACC theme for beamer + +\newif\ifTACCheadernav +\DeclareOption{headernav}{\global\TACCheadernavtrue} + +\newif\ifTACCheadertree +\DeclareOption{headertree}{\global\TACCheadertreetrue} +\ProcessOptions + +\mode + +\usefonttheme{TACC16} +\useinnertheme{TACC16} +\useoutertheme{TACC16} +\usecolortheme{TACC16} + +\mode + + +\newcommand{\event}[1]{% + \makeatletter% + \def\TACC@eventname{#1}% + \makeatother} + +\newcommand{\sectionframe}[1]{\section{#1}\frame{\Large\textbf{#1}}} +\newcommand{\subsectionframe}[1]{\subsection{#1}\frame{\large\textbf{#1}}} diff --git a/my_docs/17/pearc_17/themes/example.pdf b/my_docs/17/pearc_17/themes/example.pdf new file mode 100644 index 000000000..add373eee Binary files /dev/null and b/my_docs/17/pearc_17/themes/example.pdf differ diff --git a/my_docs/17/pearc_17/themes/license.tex b/my_docs/17/pearc_17/themes/license.tex new file mode 100644 index 000000000..74ff86759 --- /dev/null +++ b/my_docs/17/pearc_17/themes/license.tex @@ -0,0 +1,14 @@ + +\begin{frame}{License} +\footnotesize +\textcopyright The University of Texas at Austin, \the\year\\ +\vspace{0.5 cm} +This work is licensed under the Creative Commons Attribution Non-Commercial 3.0 Unported License. To view a copy of this license, +visit http://creativecommons.org/licenses/by-nc/3.0/\\ +\vspace{0.5 cm} +When attributing this work, please use the following text: +"Designing and Administering Large-scale Systems", Texas Advanced Computing Center, \the\year. Available under a Creative Commons Attribution Non-Commercial 3.0 Unported License. +\newline +\newline +\includegraphics[width=1cm]{./figures/cc.png} +\end{frame} \ No newline at end of file diff --git a/my_docs/18/TACC_sysadmin_18/beamercolorthemeTACC.sty b/my_docs/18/TACC_sysadmin_18/beamercolorthemeTACC.sty deleted file mode 120000 index 8d27e673a..000000000 --- a/my_docs/18/TACC_sysadmin_18/beamercolorthemeTACC.sty +++ /dev/null @@ -1 +0,0 @@ -../../beamer/beamercolorthemeTACC.sty \ No newline at end of file diff --git a/my_docs/18/TACC_sysadmin_18/beamercolorthemeTACC.sty b/my_docs/18/TACC_sysadmin_18/beamercolorthemeTACC.sty new file mode 100755 index 000000000..78beb6a4a --- /dev/null +++ b/my_docs/18/TACC_sysadmin_18/beamercolorthemeTACC.sty @@ -0,0 +1,323 @@ +% Copyright 2003 by Till Tantau . +% +% This program can be redistributed and/or modified under the terms +% of the GNU Public License, version 2. + +\mode + +% I downloaded a gimp color palette from +% http://maururu.net/2007/latex-beamer-color-palette/ +% Which provides rgb values (I think) for several of the +% default beamer themes. You can open this in gimp by +% opening the Palettes dialog, right-clicking anywhere and choosing +% 'Import Palette'. A color in there called 'default added blue' +% appeared to be approximately what I wanted. It had the triple +% of values 141 145 208. If you double-click on this in the +% palette editor it gives you a bunch of information. You can't +% use these values directly to set a color...it just comes out white. +% I think definecolor is expecting something normalized by 255. Yes! + + +% bluish colors +\definecolor{defaddedblue}{rgb}{0.5529,.5686,.8157} % 141,145,208 +\definecolor{defblockheader}{rgb}{.1921,.2235,.6824} % 49,57,174 +\definecolor{flyaddedblue}{rgb}{.5961,.6118,.8431} % 152,156,215 + +% bluish-greys +\definecolor{beetleaddedblue1}{rgb}{.3333,.4039,.6196} % 85 103 158, dark +\definecolor{beetleaddedblue2}{rgb}{.4510,.5098,.7020} % 115 130 179, medium +\definecolor{beetleaddedblue3}{rgb}{.7059,.7255,.7961} % 180 185 203, light (greyest) + +% very light blue-greys +\definecolor{deflightouter1}{rgb}{.7608,.7647,.9020} % 194 195 230, dark +\definecolor{deflightouter2}{rgb}{.8 ,.8039,.9176} % 204 205 234, medium +\definecolor{deflightouter3}{rgb}{.8392,.8431,.9373} % 214 215 239, light + +% reddish colors +\definecolor{flyalertblockheader}{rgb}{.7373,.1294,.1333} % 188 33 34 +\definecolor{flyaddedred}{rgb}{.8667,.5647,.5647}% 221 144 144 +\definecolor{beaverouterframe}{rgb}{.5529,.0980,.0980}% 141 25 25 + +% greens (green is used for 'examples' in beamer) +\definecolor{defexblock}{rgb}{.9098,.9333,.9020} % 232 238 230, light +\definecolor{defaddedgreen}{rgb}{.5412,.6510,.4706} % 138 166 120, medium +\definecolor{defexblockheader}{rgb}{.1686,.3647,.0392} % 43 93 10, dark + +\definecolor{lightexblock}{rgb}{.9137,.9451,.9020} % 233 241 230, light +\definecolor{lightexblockheader}{rgb}{.8235,.8980,.8} % 210 229 204, medium +\definecolor{lightexblockheadertext}{rgb}{.2431,.5098,.0745} % 62 130 19, dark + + +%%% +% Set the normal text color +%%% +\setbeamercolor{normal text}{fg=black,bg=white} + +%%% +% Set the alerted text color +%%% +% \setbeamercolor{alerted text}{fg=red} +\setbeamercolor{alerted text}{fg=red!50!black} % half black/half red for green bg +% \setbeamercolor{alerted text}{fg=beaverouterframe} +% \setbeamercolor{alerted text}{fg=defblockheader} % doesn't stand out enough + + +% Set the 'example' text +\setbeamercolor{example text}{fg=green!50!black} + +\setbeamercolor{structure}{fg=black} + +\setbeamercolor{background canvas}{parent=normal text} +\setbeamercolor{background}{parent=background canvas} + +\setbeamercolor{palette primary}{use=structure,fg=structure.fg} +\setbeamercolor{palette secondary}{use=structure,fg=structure.fg!75!black} +\setbeamercolor{palette tertiary}{use=structure,fg=structure.fg!50!black} +\setbeamercolor{palette quaternary}{fg=black} + +\setbeamercolor{palette sidebar primary}{use=normal text,fg=normal text.fg} +\setbeamercolor{palette sidebar secondary}{use=structure,fg=structure.fg} +\setbeamercolor{palette sidebar tertiary}{use=normal text,fg=normal text.fg} +\setbeamercolor{palette sidebar quaternary}{use=structure,fg=structure.fg} + +\setbeamercolor{math text}{} +\setbeamercolor{math text inlined}{parent=math text} +\setbeamercolor{math text displayed}{parent=math text} + +\setbeamercolor{normal text in math text}{} + +\setbeamercolor{local structure}{parent=structure} + +\setbeamercolor{titlelike}{parent=structure} + +\setbeamercolor{title}{parent=titlelike} +\setbeamercolor{title in head/foot}{parent=palette quaternary} +\setbeamercolor{title in sidebar}{parent=palette sidebar quaternary} + +\setbeamercolor{subtitle}{parent=title} + +\setbeamercolor{author}{} +\setbeamercolor{author in head/foot}{parent=palette primary} +\setbeamercolor{author in sidebar}{use=palette sidebar tertiary,fg=palette sidebar tertiary.fg} + +\setbeamercolor{institute}{} +\setbeamercolor{institute in head/foot}{parent=palette tertiary} +\setbeamercolor{institute in sidebar}{use=palette sidebar tertiary,fg=palette sidebar tertiary.fg} + +\setbeamercolor{date}{} +\setbeamercolor{date in head/foot}{parent=palette secondary} +\setbeamercolor{date in sidebar}{use=palette sidebar tertiary,fg=palette sidebar tertiary.fg} + +\setbeamercolor{titlegraphic}{} + +\setbeamercolor{part name}{} +\setbeamercolor{part title}{parent=titlelike} + +\setbeamercolor{section in toc}{parent=structure} +\setbeamercolor{section in toc shaded}{parent=section in toc} +\setbeamercolor{section in head/foot}{parent=palette tertiary} +\setbeamercolor{section in sidebar}{parent=palette sidebar secondary} +\setbeamercolor{section in sidebar shaded}{use=section in sidebar,fg=section in sidebar.fg!40!bg} +\setbeamercolor{section number projected}{parent=item projected} + +\setbeamercolor{subsection in toc}{} +\setbeamercolor{subsection in toc shaded}{parent=subsection in toc} +\setbeamercolor{subsection in head/foot}{parent=palette secondary} +\setbeamercolor{subsection in sidebar}{parent=palette sidebar primary} +\setbeamercolor{subsection in sidebar shaded}{use=subsection in sidebar,fg=subsection in sidebar.fg!40!bg} +\setbeamercolor{subsection number projected}{parent={subitem projected}} + +\setbeamercolor{subsubsection in toc}{parent=subsection in toc} +\setbeamercolor{subsubsection in toc shaded}{parent=subsubsection in toc} +\setbeamercolor{subsubsection in head/foot}{parent=subsection in head/foot} +\setbeamercolor{subsubsection in sidebar}{parent=subsection in sidebar} +\setbeamercolor{subsubsection in sidebar shaded}{parent=subsection in sidebar shaded} +\setbeamercolor{subsubsection number projected}{parent=subsubitem projected} + +\setbeamercolor{headline}{} +\setbeamercolor{footline}{} + +\setbeamercolor{sidebar}{} +\setbeamercolor{sidebar left}{parent=sidebar} +\setbeamercolor{sidebar right}{parent=sidebar} + +\setbeamercolor{logo}{parent=palette secondary} + +\setbeamercolor{frametitle}{parent=titlelike} +\setbeamercolor{framesubtitle}{parent=frametitle} + +\setbeamercolor{frametitle right}{parent=frametitle} + +\setbeamercolor{caption}{} +\setbeamercolor{caption name}{parent=structure} + +\setbeamercolor{button}{use=local structure,bg=local structure.fg!50!bg,fg=white} +\setbeamercolor{button border}{use=button,fg=button.bg} +\setbeamercolor{navigation symbols}{use=structure,fg=structure.fg!40!bg} +\setbeamercolor{navigation symbols dimmed}{use=structure,fg=structure.fg!20!bg} +\setbeamercolor{mini frame}{parent=section in head/foot} + +% Color expressions are defined in the xcolor package +% +% Ex: Mixture of 40% green, 60% yellow: green!40!yellow +% +% The complement of any color can be obtained by prepending +% a minus sign: -green!40!yellow +% +% One can also combine up to three colors (in differing proportions) +% using the rgb command. For example, the following command combines +% 3 parts of the first color, with 2 parts of the second, and one part +% "red" +% +%\color{rgb:-green!40!yellow,3;green!40!yellow,2;red,1} +% Unfortunately, I don't think this works as an argument to setbeamercolor... +% "Orange" bg=green!30!yellow!30!red +% close to burnt orange: red!75!green +% lightgray is a color, but gray!25!white looks better +% +% A nice pair of greens +% (dark, a little too dark to be under black text...) -red!75!green!50!blue!25 +% (light) -red!75!green!50!blue!25!gray +% +% Some colors are only available via options to the xcolor package, eg. +% x11names,DarkOliveGreen4 +% svgnames, Chartreuse +% dvipsnames, ForestGreen +% +% but beamer does not seem to have any of these. +% +% The base color names which are always available are: +% black +% blue +% brown +% cyan +% darkgray +% gray +% green +% lightgray +% lime +% magenta +% olive +% orange +% pink +% purple +% red +% teal +% violet +% white +% yellow + +% From the beamer user guide, pg. 167 +% Inner color themes only specify the colors of elements used in inner +% themes. Most noticably, they specify the colors used for blocks. +% ... + +% Example color definition +% beamercolorthemedefault.sty:\definecolor{beamer@blendedblue}{rgb}{0.2,0.2,0.7} +% beamercolorthemedefault.sty:\setbeamercolor{structure}{fg=beamer@blendedblue} + +% The greens +% \setbeamercolor{block body}{bg=-red!75!green!50!blue!25!gray} +% \setbeamercolor{block title}{parent=structure,bg=-red!75!green!50!blue!25,fg=-red!75!green!50!blue!25!gray} + +%%% +% Set the block body and title background/foreground colors +%%% +% \setbeamercolor{block body}{bg=flyaddedblue} +% \setbeamercolor{block title}{bg=defblockheader,fg=flyaddedblue} + +% Purplish blues, too dark overall +% \setbeamercolor{block body}{bg=beetleaddedblue3} +% \setbeamercolor{block title}{bg=beetleaddedblue2,fg=beetleaddedblue3} + +% Very light blue greys +% 1. Not enough contrast +% \setbeamercolor{block body}{bg=deflightouter3} +% \setbeamercolor{block title}{bg=deflightouter2,fg=deflightouter3} + +% 2. Not enough contrast +% \setbeamercolor{block body}{bg=deflightouter3} +% \setbeamercolor{block title}{bg=deflightouter1,fg=deflightouter3} + +% 3. Combination of deflightouter and fly. The block bg is +% lighter than the all-beetle color scheme I previously thought was best. +% Currently I like this one the best +\setbeamercolor{block body}{bg=deflightouter3} +\setbeamercolor{block title}{bg=beetleaddedblue2,fg=deflightouter3} + +% 4. Greens. Looks like a highlighter. I don't really trust greens +% on projectors... It's almost too bright/hurts your eyes. +% \setbeamercolor{block body}{bg=defexblock} +% \setbeamercolor{block title}{bg=defaddedgreen,fg=defexblock} + +% This looks pretty good ... it's similar to the greens we had before +% but should be lighter. The blocks are just a little too "mint" colored +% though... +% \setbeamercolor{block body}{bg=defexblock} +% \setbeamercolor{block title}{bg=defexblockheader,fg=defexblock} + +% Pea Soup! +%\setbeamercolor{block body}{bg=defaddedgreen} +%\setbeamercolor{block title}{bg=defexblockheader,fg=defaddedgreen} + + +% Changing these didn't seem to do anything...I had to change the +% 'alerted text' color instead +\setbeamercolor{block body alerted}{} +\setbeamercolor{block body example}{} +\setbeamercolor{block title alerted}{parent=alerted text} +\setbeamercolor{block title example}{parent=example text} + +\setbeamercolor{item}{parent=local structure} +\setbeamercolor{subitem}{parent=item} +\setbeamercolor{subsubitem}{parent=subitem} + +\setbeamercolor{item projected}{parent=item,use=item,fg=white,bg=item.fg} +\setbeamercolor{subitem projected}{parent=item projected} +\setbeamercolor{subsubitem projected}{parent=subitem projected} + +\setbeamercolor{enumerate item}{parent=item} +\setbeamercolor{enumerate subitem}{parent=subitem} +\setbeamercolor{enumerate subsubitem}{parent=subsubitem} + +\setbeamercolor{itemize item}{parent=item} +\setbeamercolor{itemize subitem}{parent=subitem} +\setbeamercolor{itemize subsubitem}{parent=subsubitem} + +\setbeamercolor{itemize/enumerate body}{} +\setbeamercolor{itemize/enumerate subbody}{} +\setbeamercolor{itemize/enumerate subsubbody}{} + +\setbeamercolor{description item}{parent=item} + +\setbeamercolor{bibliography item}{parent=item} + +\setbeamercolor{bibliography entry author}{use=structure,fg=structure.fg} +\setbeamercolor{bibliography entry title}{use=normal text,fg=normal text.fg} +\setbeamercolor{bibliography entry location}{use=structure,fg=structure.fg!65!bg} +\setbeamercolor{bibliography entry note}{use=structure,fg=structure.fg!65!bg} + +\setbeamercolor{separation line}{} + +\setbeamercolor{upper separation line head}{parent=separation line} +\setbeamercolor{middle separation line head}{parent=separation line} +\setbeamercolor{lower separation line head}{parent=separation line} + +\setbeamercolor{upper separation line foot}{parent=separation line} +\setbeamercolor{middle separation line foot}{parent=separation line} +\setbeamercolor{lower separation line foot}{parent=separation line} + +\setbeamercolor{abstract}{} +\setbeamercolor{abstract title}{parent=structure} + +\setbeamercolor{verse}{} + +\setbeamercolor{quotation}{} +\setbeamercolor{quote}{parent=quotation} + +\setbeamercolor{page number in head/foot}{fg=fg!50!bg} + +\setbeamercolor{qed symbol}{parent=structure} + +\mode + diff --git a/my_docs/18/TACC_sysadmin_18/beamercolorthemeTACC16.sty b/my_docs/18/TACC_sysadmin_18/beamercolorthemeTACC16.sty deleted file mode 120000 index 58415801b..000000000 --- a/my_docs/18/TACC_sysadmin_18/beamercolorthemeTACC16.sty +++ /dev/null @@ -1 +0,0 @@ -../../beamer/beamercolorthemeTACC16.sty \ No newline at end of file diff --git a/my_docs/18/TACC_sysadmin_18/beamercolorthemeTACC16.sty b/my_docs/18/TACC_sysadmin_18/beamercolorthemeTACC16.sty new file mode 100755 index 000000000..779dde91f --- /dev/null +++ b/my_docs/18/TACC_sysadmin_18/beamercolorthemeTACC16.sty @@ -0,0 +1,192 @@ +% Copyright 2003 by Till Tantau . +% +% This program can be redistributed and/or modified under the terms +% of the GNU Public License, version 2. + +\mode + +\usepackage{textcase,regexpatch} + +\setbeamertemplate{blocks}[rounded][shadow=true] + + +\definecolor{TACCred}{RGB}{180,13,29} +\definecolor{TACCorange}{RGB}{210,104,43} +\definecolor{TACCblue}{RGB}{108, 134, 191} +\definecolor{TACCgreen}{RGB}{23,106,70} + +% I downloaded a gimp color palette from +% http://maururu.net/2007/latex-beamer-color-palette/ +% Which provides rgb values (I think) for several of the +% default beamer themes. You can open this in gimp by +% opening the Palettes dialog, right-clicking anywhere and choosing +% 'Import Palette'. A color in there called 'default added blue' +% appeared to be approximately what I wanted. It had the triple +% of values 141 145 208. If you double-click on this in the +% palette editor it gives you a bunch of information. You can't +% use these values directly to set a color...it just comes out white. +% I think definecolor is expecting something normalized by 255. Yes! + + +%%% +% Set the normal text color +%%% +\setbeamercolor{normal text}{fg=black} %,bg=white} +\setbeamercolor{example text}{fg=TACCgreen} +\setbeamercolor{alerted text}{fg=TACCorange} + + +\setbeamercolor{structure}{fg=black} +%\setbeamercolor{structure}{fg=black} + +\setbeamercolor{background canvas}{parent=normal text} +\setbeamercolor{background}{parent=background canvas} + +\setbeamercolor{palette primary}{use=structure,fg=structure.fg} +\setbeamercolor{palette secondary}{use=structure,fg=structure.fg!75!black} +\setbeamercolor{palette tertiary}{use=structure,fg=structure.fg!50!black} +\setbeamercolor{palette quaternary}{fg=black} + +\setbeamercolor{palette sidebar primary}{use=normal text,fg=normal text.fg} +\setbeamercolor{palette sidebar secondary}{use=structure,fg=structure.fg} +\setbeamercolor{palette sidebar tertiary}{use=normal text,fg=normal text.fg} +\setbeamercolor{palette sidebar quaternary}{use=structure,fg=structure.fg} + +\setbeamercolor{math text}{} +\setbeamercolor{math text inlined}{parent=math text} +\setbeamercolor{math text displayed}{parent=math text} + +\setbeamercolor{normal text in math text}{} + +\setbeamercolor{local structure}{parent=structure} + +\setbeamercolor{titlelike}{parent=structure} + +\setbeamercolor{title}{parent=titlelike} +\setbeamercolor{title in head/foot}{parent=palette quaternary} +\setbeamercolor{title in sidebar}{parent=palette sidebar quaternary} + +\setbeamercolor{subtitle}{parent=title} + +\setbeamercolor{author}{} +\setbeamercolor{author in head/foot}{parent=palette primary} +\setbeamercolor{author in sidebar}{use=palette sidebar tertiary,fg=palette sidebar tertiary.fg} + +\setbeamercolor{institute}{} +\setbeamercolor{institute in head/foot}{parent=palette tertiary} +\setbeamercolor{institute in sidebar}{use=palette sidebar tertiary,fg=palette sidebar tertiary.fg} + +\setbeamercolor{date}{} +\setbeamercolor{date in head/foot}{parent=palette secondary} +\setbeamercolor{date in sidebar}{use=palette sidebar tertiary,fg=palette sidebar tertiary.fg} + +\setbeamercolor{titlegraphic}{} + +\setbeamercolor{part name}{} +\setbeamercolor{part title}{parent=titlelike} + +\setbeamercolor{section in toc}{parent=structure} +\setbeamercolor{section in toc shaded}{parent=section in toc} +\setbeamercolor{section in head/foot}{parent=palette tertiary} +\setbeamercolor{section in sidebar}{parent=palette sidebar secondary} +\setbeamercolor{section in sidebar shaded}{use=section in sidebar,fg=section in sidebar.fg!40!bg} +\setbeamercolor{section number projected}{parent=item projected} + +\setbeamercolor{subsection in toc}{} +\setbeamercolor{subsection in toc shaded}{parent=subsection in toc} +\setbeamercolor{subsection in head/foot}{parent=palette secondary} +\setbeamercolor{subsection in sidebar}{parent=palette sidebar primary} +\setbeamercolor{subsection in sidebar shaded}{use=subsection in sidebar,fg=subsection in sidebar.fg!40!bg} +\setbeamercolor{subsection number projected}{parent={subitem projected}} + +\setbeamercolor{subsubsection in toc}{parent=subsection in toc} +\setbeamercolor{subsubsection in toc shaded}{parent=subsubsection in toc} +\setbeamercolor{subsubsection in head/foot}{parent=subsection in head/foot} +\setbeamercolor{subsubsection in sidebar}{parent=subsection in sidebar} +\setbeamercolor{subsubsection in sidebar shaded}{parent=subsection in sidebar shaded} +\setbeamercolor{subsubsection number projected}{parent=subsubitem projected} + +\setbeamercolor{headline}{} +\setbeamercolor{footline}{} + +\setbeamercolor{sidebar}{} +\setbeamercolor{sidebar left}{parent=sidebar} +\setbeamercolor{sidebar right}{parent=sidebar} + +\setbeamercolor{logo}{parent=palette secondary} + +\setbeamercolor{frametitle}{parent=titlelike} +\setbeamercolor{framesubtitle}{parent=frametitle} + +\setbeamercolor{frametitle right}{parent=frametitle} + +\setbeamercolor{caption}{} +\setbeamercolor{caption name}{parent=structure} + +\setbeamercolor{button}{use=local structure,bg=local structure.fg!50!bg,fg=white} +\setbeamercolor{button border}{use=button,fg=button.bg} +\setbeamercolor{navigation symbols}{use=structure,fg=structure.fg!40!bg} +\setbeamercolor{navigation symbols dimmed}{use=structure,fg=structure.fg!20!bg} +\setbeamercolor{mini frame}{parent=section in head/foot} + +\setbeamercolor{block body}{fg=black} +\setbeamercolor{block body alerted}{fg=black} +\setbeamercolor{block body example}{fg=black} + +\setbeamercolor{block title}{bg=TACCblue,fg=white} +\setbeamercolor{block title alerted}{bg=TACCred,fg=white} +\setbeamercolor{block title example}{bg=TACCgreen,fg=white} + +\setbeamercolor{item}{parent=local structure} +\setbeamercolor{subitem}{parent=item} +\setbeamercolor{subsubitem}{parent=subitem} + +\setbeamercolor{item projected}{parent=item,use=item,fg=black,bg=item.fg} +\setbeamercolor{subitem projected}{parent=item projected} +\setbeamercolor{subsubitem projected}{parent=subitem projected} + +\setbeamercolor{enumerate item}{parent=item} +\setbeamercolor{enumerate subitem}{parent=subitem} +\setbeamercolor{enumerate subsubitem}{parent=subsubitem} + +\setbeamercolor{itemize item}{parent=item} +\setbeamercolor{itemize subitem}{parent=subitem} +\setbeamercolor{itemize subsubitem}{parent=subsubitem} + +\setbeamercolor{itemize/enumerate body}{} +\setbeamercolor{itemize/enumerate subbody}{} +\setbeamercolor{itemize/enumerate subsubbody}{} + +\setbeamercolor{description item}{parent=item} + +\setbeamercolor{bibliography item}{parent=item} + +\setbeamercolor{bibliography entry author}{use=structure,fg=structure.fg} +\setbeamercolor{bibliography entry title}{use=normal text,fg=normal text.fg} +\setbeamercolor{bibliography entry location}{use=structure,fg=structure.fg!65!bg} +\setbeamercolor{bibliography entry note}{use=structure,fg=structure.fg!65!bg} + +\setbeamercolor{separation line}{} + +\setbeamercolor{upper separation line head}{parent=separation line} +\setbeamercolor{middle separation line head}{parent=separation line} +\setbeamercolor{lower separation line head}{parent=separation line} + +\setbeamercolor{upper separation line foot}{parent=separation line} +\setbeamercolor{middle separation line foot}{parent=separation line} +\setbeamercolor{lower separation line foot}{parent=separation line} + +\setbeamercolor{abstract}{} +\setbeamercolor{abstract title}{parent=structure} + +\setbeamercolor{verse}{} + +\setbeamercolor{quotation}{} +\setbeamercolor{quote}{parent=quotation} + +\setbeamercolor{page number in head/foot}{fg=fg!50!bg} + +\setbeamercolor{qed symbol}{parent=structure} + +\mode + diff --git a/my_docs/18/TACC_sysadmin_18/beamerfontthemeTACC.sty b/my_docs/18/TACC_sysadmin_18/beamerfontthemeTACC.sty deleted file mode 120000 index 78e971fb8..000000000 --- a/my_docs/18/TACC_sysadmin_18/beamerfontthemeTACC.sty +++ /dev/null @@ -1 +0,0 @@ -../../beamer/beamerfontthemeTACC.sty \ No newline at end of file diff --git a/my_docs/18/TACC_sysadmin_18/beamerfontthemeTACC.sty b/my_docs/18/TACC_sysadmin_18/beamerfontthemeTACC.sty new file mode 100755 index 000000000..ef9ce1e5e --- /dev/null +++ b/my_docs/18/TACC_sysadmin_18/beamerfontthemeTACC.sty @@ -0,0 +1,12 @@ +% Copyright 2003 by Till Tantau +% +% This program can be redistributed and/or modified under the terms +% of the GNU Public License, version 2. + +\mode + +\setbeamerfont{frametitle}{parent=structure,size=\LARGE,series=\bfseries} +\setbeamerfont{framesubtitle}{parent=frametitle,size=\small} + +\mode + \ No newline at end of file diff --git a/my_docs/18/TACC_sysadmin_18/beamerfontthemeTACC16.sty b/my_docs/18/TACC_sysadmin_18/beamerfontthemeTACC16.sty deleted file mode 120000 index a1f2fa5f9..000000000 --- a/my_docs/18/TACC_sysadmin_18/beamerfontthemeTACC16.sty +++ /dev/null @@ -1 +0,0 @@ -../../beamer/beamerfontthemeTACC16.sty \ No newline at end of file diff --git a/my_docs/18/TACC_sysadmin_18/beamerfontthemeTACC16.sty b/my_docs/18/TACC_sysadmin_18/beamerfontthemeTACC16.sty new file mode 100755 index 000000000..b65271835 --- /dev/null +++ b/my_docs/18/TACC_sysadmin_18/beamerfontthemeTACC16.sty @@ -0,0 +1,21 @@ +% Copyright 2003 by Till Tantau +% +% This program can be redistributed and/or modified under the terms +% of the GNU Public License, version 2. + +\mode +\setbeamerfont{title}{parent=structure,size=\LARGE,series=\bfseries} +\setbeamerfont{author}{parent=structure,size=\large, series=\normalfont} +\setbeamerfont{frametitle}{parent=structure,size=\LARGE,series=\bfseries} +\setbeamerfont{framesubtitle}{parent=frametitle,size=\small} + +%\usefonttheme{professionalfonts} % using non standard fonts for beamer +%\usefonttheme{serif} % default family is serif +%\usepackage{fontspec} +%\setmainfont{Century Gothic} + +\usepackage{fontspec} +\usepackage{libertine} + +\mode + diff --git a/my_docs/18/TACC_sysadmin_18/beamerinnerthemeTACC.sty b/my_docs/18/TACC_sysadmin_18/beamerinnerthemeTACC.sty deleted file mode 120000 index 8d5ae3921..000000000 --- a/my_docs/18/TACC_sysadmin_18/beamerinnerthemeTACC.sty +++ /dev/null @@ -1 +0,0 @@ -../../beamer/beamerinnerthemeTACC.sty \ No newline at end of file diff --git a/my_docs/18/TACC_sysadmin_18/beamerinnerthemeTACC.sty b/my_docs/18/TACC_sysadmin_18/beamerinnerthemeTACC.sty new file mode 100755 index 000000000..29e2bce81 --- /dev/null +++ b/my_docs/18/TACC_sysadmin_18/beamerinnerthemeTACC.sty @@ -0,0 +1,11 @@ +\mode + +\setbeamertemplate{itemize item}[circle] +\setbeamertemplate{itemize subitem}{{}--{}} +\setbeamertemplate{itemize subsubitem}[circle] +\setbeamertemplate{section in toc}{$\bullet$\hskip.5em\inserttocsection} +%\setbeamertemplate{subsection in toc}{} +\setbeamertemplate{subsubsection in toc}{} + +\mode + diff --git a/my_docs/18/TACC_sysadmin_18/beamerinnerthemeTACC16.sty b/my_docs/18/TACC_sysadmin_18/beamerinnerthemeTACC16.sty deleted file mode 120000 index 5955acc99..000000000 --- a/my_docs/18/TACC_sysadmin_18/beamerinnerthemeTACC16.sty +++ /dev/null @@ -1 +0,0 @@ -../../beamer/beamerinnerthemeTACC16.sty \ No newline at end of file diff --git a/my_docs/18/TACC_sysadmin_18/beamerinnerthemeTACC16.sty b/my_docs/18/TACC_sysadmin_18/beamerinnerthemeTACC16.sty new file mode 100755 index 000000000..f7f454e1d --- /dev/null +++ b/my_docs/18/TACC_sysadmin_18/beamerinnerthemeTACC16.sty @@ -0,0 +1,11 @@ +\mode + +\setbeamertemplate{itemize item}[triangle] +\setbeamertemplate{itemize subitem}[triangle] +\setbeamertemplate{itemize subsubitem}[triangle] +\setbeamertemplate{section in toc}{$\bullet$\hskip.5em\inserttocsection} +%\setbeamertemplate{subsection in toc}{} +\setbeamertemplate{subsubsection in toc}{} + +\mode + diff --git a/my_docs/18/TACC_sysadmin_18/beamerouterthemeTACC.sty b/my_docs/18/TACC_sysadmin_18/beamerouterthemeTACC.sty deleted file mode 120000 index da0a45d33..000000000 --- a/my_docs/18/TACC_sysadmin_18/beamerouterthemeTACC.sty +++ /dev/null @@ -1 +0,0 @@ -../../beamer/beamerouterthemeTACC.sty \ No newline at end of file diff --git a/my_docs/18/TACC_sysadmin_18/beamerouterthemeTACC.sty b/my_docs/18/TACC_sysadmin_18/beamerouterthemeTACC.sty new file mode 100755 index 000000000..038580303 --- /dev/null +++ b/my_docs/18/TACC_sysadmin_18/beamerouterthemeTACC.sty @@ -0,0 +1,196 @@ +% Copyright 2003 by Till Tantau +% +% This program can be redistributed and/or modified under the terms +% of the GNU Public License, version 2. + +\mode + +\setbeamertemplate{frametitle}[default][center] +\addtobeamertemplate{frametitle}{\vskip 4ex minus 4ex}{} + +% Here we define what appears at the bottom of each slide: the "footline". +\setbeamertemplate{footline}{% + \leavevmode% + + % Horizontal line dividing the rest of the slide from the footer? + % hrule goes all the way across... + % \hrule height.3pt% + % With \rule, you can specify the thickness + % \rule[raise-height]{width}{thickness} + \hspace{.025\textwidth}\rule{.95\textwidth}{.5pt} + + \hbox{% + % On the left half of the footer, insert the TACC logo + \begin{minipage}{.5\textwidth}% + \hskip .033\textwidth%Give horizontal space else this will set on the left edge of the slide! + % TACC logo with custom viewport! + \includegraphics[viewport=1 -1 135 35, clip=true, width=.4\textwidth]{figures/TACC_logo} + \end{minipage} + % + \begin{minipage}{.5\textwidth}% + \vskip .023\textheight% + \raggedleft% + \setlength{\rightskip}{.033\textwidth} + % + % If we are not on the first page, insert a page number + % For some reason, insertframenumber is buggy when you have fragile + % slides with verbatim environments in them... it tends to skip numbers + % for some reason! On the other hand, the pagenumber is incremented + % for *every* slide, including transition slides... + \ifnum \thepage>1 + % \insertshorttitle + \insertframenumber + % \insertframenumber/\inserttotalframenumber + % \insertpagenumber + \else % Do a phantom of whatever you do on other pages, so spacing matches + %$\phantom{\insertshorttitle}$ + $\phantom{\insertframenumber}$ + %$\phantom{\insertframenumber/\inserttotalframenumber}$ + %$\phantom{\insertpagenumber}$ + \fi + \hfill\includegraphics[width=.5\textwidth]{figures/UT_logo}% + \end{minipage}% + }% + \vskip .023\textheight% +} + + + + +\ifTACCheadernav + +\usesectionheadtemplate +{\hfill\insertsectionhead} +{\hfill\color{fg!50!bg}\insertsectionhead} + +% Head +\ifbeamer@compress + +% Here we define how the top of the frame looks, the "headline". +\setbeamertemplate{headline} +{% + \ifnum \thepage>1 + \leavevmode% + \begin{beamercolorbox}[wd=.5\paperwidth,ht=2.5ex,dp=1.125ex]{% + section in head/foot}% + \insertsectionnavigationhorizontal{.5\paperwidth}{\hskip0pt plus1filll}{}% + \end{beamercolorbox}% + \begin{beamercolorbox}[wd=.5\paperwidth,ht=2.5ex,dp=1.125ex]{% + subsection in head/foot}% + \insertsubsectionnavigationhorizontal{% + .5\paperwidth}{}{\hskip0pt plus1filll}% + \end{beamercolorbox}% + \fi %\thepage>1 +} + +\else% Not compressed + +\setbeamertemplate{headline} +{% + \ifnum \thepage>1 + \leavevmode% + \@tempdimb=2.4375ex% + \ifnum\beamer@subsectionmax<\beamer@sectionmax% + \multiply\@tempdimb by\beamer@sectionmax% + \else% + \multiply\@tempdimb by\beamer@subsectionmax% + \fi% + \ifdim\@tempdimb>0pt% + \advance\@tempdimb by 1.125ex% + \begin{beamercolorbox}[wd=.5\paperwidth,ht=\@tempdimb]{% + section in head/foot}% + \vbox to\@tempdimb{\vfil\insertsectionnavigation{.5\paperwidth}\vfil}% + \end{beamercolorbox}% + \begin{beamercolorbox}[wd=.5\paperwidth,ht=\@tempdimb]{% + subsection in head/foot}% + \vbox to\@tempdimb{\vfil\insertsubsectionnavigation{.5\paperwidth}\vfil}% + \end{beamercolorbox}% + \fi% + \fi % \thepage>1 +} + +\fi % end if compressed +\fi % TACCheadernav + + +\ifTACCheadertree + +\setbeamertemplate{headline} +{ + \begin{beamercolorbox}[wd=\paperwidth,colsep=1.5pt + ]{upper separation line head} + \end{beamercolorbox} + % + % Place short title + % + \begin{beamercolorbox}[wd=\paperwidth,ht=2.5ex,dp=1.125ex,% + leftskip=.3cm,rightskip=.3cm plus1fil]{title in head/foot} + \usebeamerfont{title in head/foot}\insertshorttitle + \end{beamercolorbox} + + % + % Place section + % + \begin{beamercolorbox}[wd=\paperwidth,ht=2.5ex,dp=1.125ex,% + leftskip=.3cm,rightskip=.3cm plus1fil]{section in head/foot} + \usebeamerfont{section in head/foot}% + %\ifbeamer@tree@showhooks + \setbox\beamer@tempbox=\hbox{\insertsectionhead}% + \ifdim\wd\beamer@tempbox>1pt% + \hskip2pt\raise1.9pt\hbox{\vrule width0.4pt height1.875ex\vrule width 5pt height0.4pt}% + \hskip1pt% + \fi% \ifdim + %\else% + %\hskip6pt% + %\fi% \ifbeamer + \insertsectionhead + \end{beamercolorbox} + +% +% Place subsection +% +\begin{beamercolorbox}[wd=\paperwidth,ht=2.5ex,dp=1.125ex,% + leftskip=.3cm,rightskip=.3cm plus1fil]{subsection in head/foot} + \usebeamerfont{subsection in head/foot}% + %\ifbeamer@tree@showhooks + \setbox\beamer@tempbox=\hbox{\insertsubsectionhead}% + \ifdim\wd\beamer@tempbox>1pt% + \hskip9.4pt\raise1.9pt\hbox{\vrule width0.4pt height1.875ex\vrule width 5pt height0.4pt}% + \hskip1pt% + \fi% \ifdim + %\else% + %\hskip12pt% + %\fi% \ifbeamer + \insertsubsectionhead +\end{beamercolorbox} + +% +% Place final separation box +% + \begin{beamercolorbox}[wd=\paperwidth,colsep=1.5pt + ]{lower separation line head} + \end{beamercolorbox} + + % + % Another matching rule which helps to frame the content + % + \hspace{.025\textwidth}\rule{.95\textwidth}{.5pt} +} +\fi % TACCheadertree + + +% The following command suppresses all navigation symbols. This is +% necessary in the TACC theme, since it overlaps where we want the +% logo to be. +\setbeamertemplate{navigation symbols}{} + +% Align the navigation symbols vertically (still overlaps our logo!) +%\setbeamertemplate{navigation symbols}[vertical]{} + +% Only places the slide-forward and slide-back symbol, but yes, +% this still overlaps our logo! +%\setbeamertemplate{navigation symbols}[only frame symbol]{} + + +\mode + diff --git a/my_docs/18/TACC_sysadmin_18/beamerouterthemeTACC16.sty b/my_docs/18/TACC_sysadmin_18/beamerouterthemeTACC16.sty deleted file mode 120000 index 54bd09537..000000000 --- a/my_docs/18/TACC_sysadmin_18/beamerouterthemeTACC16.sty +++ /dev/null @@ -1 +0,0 @@ -../../beamer/beamerouterthemeTACC16.sty \ No newline at end of file diff --git a/my_docs/18/TACC_sysadmin_18/beamerouterthemeTACC16.sty b/my_docs/18/TACC_sysadmin_18/beamerouterthemeTACC16.sty new file mode 100755 index 000000000..d5e6388c7 --- /dev/null +++ b/my_docs/18/TACC_sysadmin_18/beamerouterthemeTACC16.sty @@ -0,0 +1,312 @@ +% Antonio Gomez (agomez@tacc.utexas.edu) +% 4-20-17. Added option to put the footer on the right side + + + +\mode + +\usepackage{xcolor} +\usepackage{graphicx} +\usepackage{etoolbox} + + + +% This theme accepts the "rightfooter" option +% When used, it will put the TACC logo at the bottom of the slide on the right side +% By default, it goes to the left + +\xifaspectratio{ + {169} { + \pgfdeclareimage[width=\paperwidth]{titlebackground}{./figures/master169.jpg} + \if@rightfooterOption + \pgfdeclareimage[width=\paperwidth]{background}{./figures/secondary_right169.jpg} +\else + \pgfdeclareimage[width=\paperwidth]{background}{./figures/secondary169.jpg} +\fi +} +}[ +\pgfdeclareimage[width=\paperwidth]{titlebackground}{./figures/master.jpg} + \if@rightfooterOption + \pgfdeclareimage[width=\paperwidth]{background}{./figures/secondary_right.jpg} +\else + \pgfdeclareimage[width=\paperwidth]{background}{./figures/secondary.jpg} +\fi +] + +\setbeamertemplate{background canvas}{% +\xifaspectratio{ + {169} { + \ifnum\c@framenumber=1 % + \begin{picture}(0,0) + \put(-3,-256){% + \pgfuseimage{titlebackground} + } + \end{picture} + \else% + \begin{picture}(0,0) + \put(-3,-260){% + \pgfuseimage{background} + } + \end{picture} + \fi + } + {43} { + \ifnum\c@framenumber=1 % + \begin{picture}(0,0) + \put(-4,-274){% + \pgfuseimage{titlebackground} + } + \end{picture} + \else% + \begin{picture}(0,0) + \put(-4,-274){% + \pgfuseimage{background} + } + \end{picture} + \fi + } +} +} + + + +%\setbeamertemplate{background canvas}{% +% % On title page +% \ifnum\c@framenumber=1 % +% \begin{picture}(0,0) +% \put(0,-253){% +% \pgfuseimage{titlebackground} +% } +% \end{picture} +% +% \else% +% \xifaspectratio{ +% {169} { +% % Other frames background +% \begin{picture}(0,0) +% \put(-4,-260){% +% \pgfuseimage{background} +% } +% \end{picture} +% } +% }[ +% % Other frames background +% \begin{picture}(0,0) +% \put(-4,-274){% +% \pgfuseimage{background} +% } +% \end{picture} +% ] +% \fi% +%} + + +\setbeamertemplate{title page}{ +\vspace{40pt} +\begin{center} +\usebeamerfont{title} {\huge \inserttitle}\par +\vspace{4ex} +\usebeamerfont{author} { + \insertauthor +}\par +\vspace{2ex} +\usebeamerfont{institute}{ + \insertinstitute +} \par +\vspace{2ex} +\usebeamerfont{date}{ + \insertdate +} +\end{center} +} + + +\setbeamertemplate{frametitle}[default][center] +\setbeamertemplate{frametitle}{ + \makeatletter + \regexpatchcmd{\insertframetitle} + {(\c{usebeamertemplate}.*)\c{fi}} + {\c{NoCaseChange}\cB\{\1\cE\}\c{fi}} + {}{}% + \makeatother + \vskip1ex + \insertframetitle +} + +% Here we define what appears at the bottom of each slide: the "footline". +\setbeamertemplate{footline}{% + \leavevmode% + + % Horizontal line dividing the rest of the slide from the footer? + % hrule goes all the way across... + % \hrule height.3pt% + % With \rule, you can specify the thickness + % \rule[raise-height]{width}{thickness} + % \hspace{.025\textwidth}\rule{.95\textwidth}{.5pt} + + \hbox{% + \ifnum \thepage>1 + \if@rightfooterOption + \begin{minipage}{.2\textwidth}% + \hskip .05\textwidth%Give horizontal space else this will set on the left edge of the slide! + \end{minipage} + \else + \begin{minipage}{.4\textwidth}% + \hskip .05\textwidth%Give horizontal space else this will set on the left edge of the slide! + \end{minipage} + \fi + + + \begin{minipage}{\textwidth}% + % \vskip .023\textheight% + \raggedleft% + \setlength{\rightskip}{\textwidth} + \if@rightfooterOption + \hbox{% + \begin{beamercolorbox}[wd=0.7\textwidth,ht=2.25ex,dp=1ex,left]{author in head/foot}% + \insertshorttitle{} \hskip .01\textwidth | \hskip .01\textwidth \insertdate{} \hskip .01\textwidth | \hskip .01\textwidth \insertframenumber{} + \end{beamercolorbox}% + } + \else + \hbox{% + \begin{beamercolorbox}[wd=0.5\textwidth,ht=2.25ex,dp=1ex,left]{author in head/foot}% + \insertshorttitle{} \hskip .01\textwidth | \hskip .01\textwidth \insertdate{} \hskip .01\textwidth | \hskip .01\textwidth \insertframenumber{} + \end{beamercolorbox}% + } + \fi + + \end{minipage}% + \begin{minipage}{.05\textwidth}% + \end{minipage}% + \fi %\thepage>1 + }% + \vskip .023\textheight% + +} + + + + +\ifTACCheadernav + +\usesectionheadtemplate +{\hfill\insertsectionhead} +{\hfill\color{fg!50!bg}\insertsectionhead} + +% Head +\ifbeamer@compress + +% Here we define how the top of the frame looks, the "headline". +\setbeamertemplate{headline} +{% + \ifnum \thepage>1 + \leavevmode% + \begin{beamercolorbox}[wd=.5\paperwidth,ht=2.5ex,dp=1.125ex]{% + section in head/foot}% + \insertsectionnavigationhorizontal{.5\paperwidth}{\hskip0pt plus1filll}{}% + \end{beamercolorbox}% + \begin{beamercolorbox}[wd=.5\paperwidth,ht=2.5ex,dp=1.125ex]{% + subsection in head/foot}% + \insertsubsectionnavigationhorizontal{% + .5\paperwidth}{}{\hskip0pt plus1filll}% + \end{beamercolorbox}% + \fi %\thepage>1 +} + +\else% Not compressed + +\setbeamertemplate{headline} +{% + \ifnum \thepage>1 + \leavevmode% + \@tempdimb=2.4375ex% + \ifnum\beamer@subsectionmax<\beamer@sectionmax% + \multiply\@tempdimb by\beamer@sectionmax% + \else% + \multiply\@tempdimb by\beamer@subsectionmax% + \fi% + \ifdim\@tempdimb>0pt% + \advance\@tempdimb by 1.125ex% + \begin{beamercolorbox}[wd=.5\paperwidth,ht=\@tempdimb]{% + section in head/foot}% + \vbox to\@tempdimb{\vfil\insertsectionnavigation{.5\paperwidth}\vfil}% + \end{beamercolorbox}% + \begin{beamercolorbox}[wd=.5\paperwidth,ht=\@tempdimb]{% + subsection in head/foot}% + \vbox to\@tempdimb{\vfil\insertsubsectionnavigation{.5\paperwidth}\vfil}% + \end{beamercolorbox}% + \fi% + \fi % \thepage>1 +} + +\fi % end if compressed +\fi % TACCheadernav + + +\ifTACCheadertree + +\setbeamertemplate{headline} +{ + \begin{beamercolorbox}[wd=\paperwidth,colsep=1.5pt]{upper separation line head} + \end{beamercolorbox} + % + % Place short title + % + \begin{beamercolorbox}[wd=\paperwidth,ht=2.5ex,dp=1.125ex,% + leftskip=.3cm,rightskip=.3cm plus1fil]{title in head/foot} + \usebeamerfont{title in head/foot}\insertshorttitle + \end{beamercolorbox} + + % + % Place section + % + \begin{beamercolorbox}[wd=\paperwidth,ht=2.5ex,dp=1.125ex,% + leftskip=.3cm,rightskip=.3cm plus1fil]{section in head/foot} + \usebeamerfont{section in head/foot}% + %\ifbeamer@tree@showhooks + \setbox\beamer@tempbox=\hbox{\insertsectionhead}% + \ifdim\wd\beamer@tempbox>1pt% + \hskip2pt\raise1.9pt\hbox{\vrule width0.4pt height1.875ex\vrule width 5pt height0.4pt}% + \hskip1pt% + \fi + \insertsectionhead + \end{beamercolorbox} + +% +% Place subsection +% +\begin{beamercolorbox}[wd=\paperwidth,ht=2.5ex,dp=1.125ex,% + leftskip=.3cm,rightskip=.3cm plus1fil]{subsection in head/foot} + \usebeamerfont{subsection in head/foot}% + %\ifbeamer@tree@showhooks + \setbox\beamer@tempbox=\hbox{\insertsubsectionhead}% + \ifdim\wd\beamer@tempbox>1pt% + \hskip9.4pt\raise1.9pt\hbox{\vrule width0.4pt height1.875ex\vrule width 5pt height0.4pt}% + \hskip1pt% + \fi + \insertsubsectionhead +\end{beamercolorbox} + +% +% Place final separation box +% + \begin{beamercolorbox}[wd=\paperwidth,colsep=1.5pt + ]{lower separation line head} + \end{beamercolorbox} + + % + % Another matching rule which helps to frame the content + % + \hspace{.025\textwidth}\rule{.95\textwidth}{.5pt} +} +\fi % TACCheadertree + + +% The following command suppresses all navigation symbols. This is +% necessary in the TACC theme, since it overlaps where we want the +% logo to be. +\setbeamertemplate{navigation symbols}{} + + +\mode + diff --git a/my_docs/18/TACC_sysadmin_18/beamerthemeTACC.sty b/my_docs/18/TACC_sysadmin_18/beamerthemeTACC.sty deleted file mode 120000 index 5c339abd4..000000000 --- a/my_docs/18/TACC_sysadmin_18/beamerthemeTACC.sty +++ /dev/null @@ -1 +0,0 @@ -../../beamer/beamerthemeTACC.sty \ No newline at end of file diff --git a/my_docs/18/TACC_sysadmin_18/beamerthemeTACC.sty b/my_docs/18/TACC_sysadmin_18/beamerthemeTACC.sty new file mode 100755 index 000000000..c6a1b1269 --- /dev/null +++ b/my_docs/18/TACC_sysadmin_18/beamerthemeTACC.sty @@ -0,0 +1,26 @@ +%% TACC theme for beamer + +\newif\ifTACCheadernav +\DeclareOption{headernav}{\global\TACCheadernavtrue} + +\newif\ifTACCheadertree +\DeclareOption{headertree}{\global\TACCheadertreetrue} +\ProcessOptions + +\mode + +\usefonttheme{TACC} +\usecolortheme{TACC} +\useinnertheme{TACC} +\useoutertheme{TACC} + +\mode + + +\newcommand{\event}[1]{% + \makeatletter% + \def\TACC@eventname{#1}% + \makeatother} + +\newcommand{\sectionframe}[1]{\section{#1}\frame{\Large\textbf{#1}}} +\newcommand{\subsectionframe}[1]{\subsection{#1}\frame{\large\textbf{#1}}} diff --git a/my_docs/18/TACC_sysadmin_18/beamerthemeTACC16.sty b/my_docs/18/TACC_sysadmin_18/beamerthemeTACC16.sty deleted file mode 120000 index 7a9d4d296..000000000 --- a/my_docs/18/TACC_sysadmin_18/beamerthemeTACC16.sty +++ /dev/null @@ -1 +0,0 @@ -../../beamer/beamerthemeTACC16.sty \ No newline at end of file diff --git a/my_docs/18/TACC_sysadmin_18/beamerthemeTACC16.sty b/my_docs/18/TACC_sysadmin_18/beamerthemeTACC16.sty new file mode 100755 index 000000000..b522d0207 --- /dev/null +++ b/my_docs/18/TACC_sysadmin_18/beamerthemeTACC16.sty @@ -0,0 +1,61 @@ +%% TACC theme for beamer + + +\newif\if@rightfooterOption +\@rightfooterOptionfalse +\DeclareOption{rightfooter}{\@rightfooterOptiontrue} +\ProcessOptions + + +\newif\ifTACCheadernav +\DeclareOption{headernav}{\global\TACCheadernavtrue} + +\newif\ifTACCheadertree +\DeclareOption{headertree}{\global\TACCheadertreetrue} +\ProcessOptions + +\usepackage{xparse} +\ExplSyntaxOn +\NewDocumentCommand{\ifaspectratio}{mmm} + { + % Recover the option from those passed to the class + \keys_set:nf { zunbeltz/beameroptions } { \use:c { opt@beamer.cls } } + \str_if_eq:nVTF { #1 } \l_zunbeltz_aspectratio_tl { #2 } { #3 } + } +\NewDocumentCommand{\xifaspectratio}{mO{}} + { + % Recover the option from those passed to the class + \keys_set:nf { zunbeltz/beameroptions } { \use:c { opt@beamer.cls } } + \str_case:VnF \l_zunbeltz_aspectratio_tl { #1 } { #2 } + } +% We need to define only one key, the other are treated as `unknown' +\keys_define:nn { zunbeltz/beameroptions } + { + aspectratio .tl_set:N = \l_zunbeltz_aspectratio_tl, + aspectratio .initial:n = 43, + unknown .code:n = {}, + } + +% Generate the variants we need +\cs_generate_variant:Nn \keys_set:nn { nf } +\cs_generate_variant:Nn \str_if_eq:nnTF { nV } +\cs_generate_variant:Nn \str_case:nnF { V } +\ExplSyntaxOff + +\mode + +\usefonttheme{TACC16} +\useinnertheme{TACC16} +\useoutertheme{TACC16} +\usecolortheme{TACC16} + +\mode + + +\newcommand{\event}[1]{% + \makeatletter% + \def\TACC@eventname{#1}% + \makeatother} + +\newcommand{\sectionframe}[1]{\section{#1}\frame{\Large\textbf{#1}}} +\newcommand{\subsectionframe}[1]{\subsection{#1}\frame{\large\textbf{#1}}} diff --git a/my_docs/18/TACC_sysadmin_18/figures b/my_docs/18/TACC_sysadmin_18/figures deleted file mode 120000 index ddafd8974..000000000 --- a/my_docs/18/TACC_sysadmin_18/figures +++ /dev/null @@ -1 +0,0 @@ -../../beamer/figures \ No newline at end of file diff --git a/my_docs/18/TACC_sysadmin_18/figures/TACC_logo.pdf b/my_docs/18/TACC_sysadmin_18/figures/TACC_logo.pdf new file mode 100755 index 000000000..c018a20cb Binary files /dev/null and b/my_docs/18/TACC_sysadmin_18/figures/TACC_logo.pdf differ diff --git a/my_docs/18/TACC_sysadmin_18/figures/UT_logo.pdf b/my_docs/18/TACC_sysadmin_18/figures/UT_logo.pdf new file mode 100755 index 000000000..d5b42e752 Binary files /dev/null and b/my_docs/18/TACC_sysadmin_18/figures/UT_logo.pdf differ diff --git a/my_docs/18/TACC_sysadmin_18/figures/cc.png b/my_docs/18/TACC_sysadmin_18/figures/cc.png new file mode 100644 index 000000000..8a532ff8f Binary files /dev/null and b/my_docs/18/TACC_sysadmin_18/figures/cc.png differ diff --git a/my_docs/18/TACC_sysadmin_18/figures/isa.png b/my_docs/18/TACC_sysadmin_18/figures/isa.png new file mode 100644 index 000000000..f95d985e7 Binary files /dev/null and b/my_docs/18/TACC_sysadmin_18/figures/isa.png differ diff --git a/my_docs/18/TACC_sysadmin_18/figures/master.jpg b/my_docs/18/TACC_sysadmin_18/figures/master.jpg new file mode 100644 index 000000000..f5c56c04a Binary files /dev/null and b/my_docs/18/TACC_sysadmin_18/figures/master.jpg differ diff --git a/my_docs/18/TACC_sysadmin_18/figures/master169.jpg b/my_docs/18/TACC_sysadmin_18/figures/master169.jpg new file mode 100644 index 000000000..b215776eb Binary files /dev/null and b/my_docs/18/TACC_sysadmin_18/figures/master169.jpg differ diff --git a/my_docs/18/TACC_sysadmin_18/figures/master169.png b/my_docs/18/TACC_sysadmin_18/figures/master169.png new file mode 100644 index 000000000..bc5c0ed12 Binary files /dev/null and b/my_docs/18/TACC_sysadmin_18/figures/master169.png differ diff --git a/my_docs/18/TACC_sysadmin_18/figures/secondary.jpg b/my_docs/18/TACC_sysadmin_18/figures/secondary.jpg new file mode 100644 index 000000000..d905a95c9 Binary files /dev/null and b/my_docs/18/TACC_sysadmin_18/figures/secondary.jpg differ diff --git a/my_docs/18/TACC_sysadmin_18/figures/secondary169.jpg b/my_docs/18/TACC_sysadmin_18/figures/secondary169.jpg new file mode 100644 index 000000000..4eb017957 Binary files /dev/null and b/my_docs/18/TACC_sysadmin_18/figures/secondary169.jpg differ diff --git a/my_docs/18/TACC_sysadmin_18/figures/secondary169.png b/my_docs/18/TACC_sysadmin_18/figures/secondary169.png new file mode 100644 index 000000000..cb9060a56 Binary files /dev/null and b/my_docs/18/TACC_sysadmin_18/figures/secondary169.png differ diff --git a/my_docs/18/TACC_sysadmin_18/figures/secondary_right.jpg b/my_docs/18/TACC_sysadmin_18/figures/secondary_right.jpg new file mode 100644 index 000000000..f25f93a58 Binary files /dev/null and b/my_docs/18/TACC_sysadmin_18/figures/secondary_right.jpg differ diff --git a/my_docs/18/TACC_sysadmin_18/figures/secondary_right169.jpg b/my_docs/18/TACC_sysadmin_18/figures/secondary_right169.jpg new file mode 100644 index 000000000..567a1078f Binary files /dev/null and b/my_docs/18/TACC_sysadmin_18/figures/secondary_right169.jpg differ diff --git a/my_docs/18/TACC_sysadmin_18/themes b/my_docs/18/TACC_sysadmin_18/themes deleted file mode 120000 index a98530730..000000000 --- a/my_docs/18/TACC_sysadmin_18/themes +++ /dev/null @@ -1 +0,0 @@ -../../beamer/themes \ No newline at end of file diff --git a/my_docs/18/TACC_sysadmin_18/themes/beamercolorthemeTACC16.sty b/my_docs/18/TACC_sysadmin_18/themes/beamercolorthemeTACC16.sty new file mode 100644 index 000000000..248ae8cb6 --- /dev/null +++ b/my_docs/18/TACC_sysadmin_18/themes/beamercolorthemeTACC16.sty @@ -0,0 +1,193 @@ +% Copyright 2003 by Till Tantau . +% +% This program can be redistributed and/or modified under the terms +% of the GNU Public License, version 2. + +\mode + +\usepackage{textcase,regexpatch} + +\setbeamertemplate{blocks}[rounded][shadow=true] + + +\definecolor{TACCred}{RGB}{180,13,29} +\definecolor{TACCorange}{RGB}{210,104,43} +\definecolor{TACCblue}{RGB}{21,77,122} +%\definecolor{TACCgreen}{RGB}{30,134,104} +\definecolor{TACCgreen}{RGB}{49,168,51} + +% I downloaded a gimp color palette from +% http://maururu.net/2007/latex-beamer-color-palette/ +% Which provides rgb values (I think) for several of the +% default beamer themes. You can open this in gimp by +% opening the Palettes dialog, right-clicking anywhere and choosing +% 'Import Palette'. A color in there called 'default added blue' +% appeared to be approximately what I wanted. It had the triple +% of values 141 145 208. If you double-click on this in the +% palette editor it gives you a bunch of information. You can't +% use these values directly to set a color...it just comes out white. +% I think definecolor is expecting something normalized by 255. Yes! + + +%%% +% Set the normal text color +%%% +\setbeamercolor{normal text}{fg=black} %,bg=white} +\setbeamercolor{example text}{fg=TACCgreen} +\setbeamercolor{alerted text}{fg=TACCorange} + + +\setbeamercolor{structure}{fg=black} +%\setbeamercolor{structure}{fg=black} + +\setbeamercolor{background canvas}{parent=normal text} +\setbeamercolor{background}{parent=background canvas} + +\setbeamercolor{palette primary}{use=structure,fg=structure.fg} +\setbeamercolor{palette secondary}{use=structure,fg=structure.fg!75!black} +\setbeamercolor{palette tertiary}{use=structure,fg=structure.fg!50!black} +\setbeamercolor{palette quaternary}{fg=black} + +\setbeamercolor{palette sidebar primary}{use=normal text,fg=normal text.fg} +\setbeamercolor{palette sidebar secondary}{use=structure,fg=structure.fg} +\setbeamercolor{palette sidebar tertiary}{use=normal text,fg=normal text.fg} +\setbeamercolor{palette sidebar quaternary}{use=structure,fg=structure.fg} + +\setbeamercolor{math text}{} +\setbeamercolor{math text inlined}{parent=math text} +\setbeamercolor{math text displayed}{parent=math text} + +\setbeamercolor{normal text in math text}{} + +\setbeamercolor{local structure}{parent=structure} + +\setbeamercolor{titlelike}{parent=structure} + +\setbeamercolor{title}{parent=titlelike} +\setbeamercolor{title in head/foot}{parent=palette quaternary} +\setbeamercolor{title in sidebar}{parent=palette sidebar quaternary} + +\setbeamercolor{subtitle}{parent=title} + +\setbeamercolor{author}{} +\setbeamercolor{author in head/foot}{parent=palette primary} +\setbeamercolor{author in sidebar}{use=palette sidebar tertiary,fg=palette sidebar tertiary.fg} + +\setbeamercolor{institute}{} +\setbeamercolor{institute in head/foot}{parent=palette tertiary} +\setbeamercolor{institute in sidebar}{use=palette sidebar tertiary,fg=palette sidebar tertiary.fg} + +\setbeamercolor{date}{} +\setbeamercolor{date in head/foot}{parent=palette secondary} +\setbeamercolor{date in sidebar}{use=palette sidebar tertiary,fg=palette sidebar tertiary.fg} + +\setbeamercolor{titlegraphic}{} + +\setbeamercolor{part name}{} +\setbeamercolor{part title}{parent=titlelike} + +\setbeamercolor{section in toc}{parent=structure} +\setbeamercolor{section in toc shaded}{parent=section in toc} +\setbeamercolor{section in head/foot}{parent=palette tertiary} +\setbeamercolor{section in sidebar}{parent=palette sidebar secondary} +\setbeamercolor{section in sidebar shaded}{use=section in sidebar,fg=section in sidebar.fg!40!bg} +\setbeamercolor{section number projected}{parent=item projected} + +\setbeamercolor{subsection in toc}{} +\setbeamercolor{subsection in toc shaded}{parent=subsection in toc} +\setbeamercolor{subsection in head/foot}{parent=palette secondary} +\setbeamercolor{subsection in sidebar}{parent=palette sidebar primary} +\setbeamercolor{subsection in sidebar shaded}{use=subsection in sidebar,fg=subsection in sidebar.fg!40!bg} +\setbeamercolor{subsection number projected}{parent={subitem projected}} + +\setbeamercolor{subsubsection in toc}{parent=subsection in toc} +\setbeamercolor{subsubsection in toc shaded}{parent=subsubsection in toc} +\setbeamercolor{subsubsection in head/foot}{parent=subsection in head/foot} +\setbeamercolor{subsubsection in sidebar}{parent=subsection in sidebar} +\setbeamercolor{subsubsection in sidebar shaded}{parent=subsection in sidebar shaded} +\setbeamercolor{subsubsection number projected}{parent=subsubitem projected} + +\setbeamercolor{headline}{} +\setbeamercolor{footline}{} + +\setbeamercolor{sidebar}{} +\setbeamercolor{sidebar left}{parent=sidebar} +\setbeamercolor{sidebar right}{parent=sidebar} + +\setbeamercolor{logo}{parent=palette secondary} + +\setbeamercolor{frametitle}{parent=titlelike} +\setbeamercolor{framesubtitle}{parent=frametitle} + +\setbeamercolor{frametitle right}{parent=frametitle} + +\setbeamercolor{caption}{} +\setbeamercolor{caption name}{parent=structure} + +\setbeamercolor{button}{use=local structure,bg=local structure.fg!50!bg,fg=white} +\setbeamercolor{button border}{use=button,fg=button.bg} +\setbeamercolor{navigation symbols}{use=structure,fg=structure.fg!40!bg} +\setbeamercolor{navigation symbols dimmed}{use=structure,fg=structure.fg!20!bg} +\setbeamercolor{mini frame}{parent=section in head/foot} + +\setbeamercolor{block body}{fg=black} +\setbeamercolor{block body alerted}{fg=black} +\setbeamercolor{block body example}{fg=black} + +\setbeamercolor{block title}{bg=TACCblue,fg=white} +\setbeamercolor{block title alerted}{bg=TACCred,fg=white} +\setbeamercolor{block title example}{bg=TACCgreen,fg=white} + +\setbeamercolor{item}{parent=local structure} +\setbeamercolor{subitem}{parent=item} +\setbeamercolor{subsubitem}{parent=subitem} + +\setbeamercolor{item projected}{parent=item,use=item,fg=black,bg=item.fg} +\setbeamercolor{subitem projected}{parent=item projected} +\setbeamercolor{subsubitem projected}{parent=subitem projected} + +\setbeamercolor{enumerate item}{parent=item} +\setbeamercolor{enumerate subitem}{parent=subitem} +\setbeamercolor{enumerate subsubitem}{parent=subsubitem} + +\setbeamercolor{itemize item}{parent=item} +\setbeamercolor{itemize subitem}{parent=subitem} +\setbeamercolor{itemize subsubitem}{parent=subsubitem} + +\setbeamercolor{itemize/enumerate body}{} +\setbeamercolor{itemize/enumerate subbody}{} +\setbeamercolor{itemize/enumerate subsubbody}{} + +\setbeamercolor{description item}{parent=item} + +\setbeamercolor{bibliography item}{parent=item} + +\setbeamercolor{bibliography entry author}{use=structure,fg=structure.fg} +\setbeamercolor{bibliography entry title}{use=normal text,fg=normal text.fg} +\setbeamercolor{bibliography entry location}{use=structure,fg=structure.fg!65!bg} +\setbeamercolor{bibliography entry note}{use=structure,fg=structure.fg!65!bg} + +\setbeamercolor{separation line}{} + +\setbeamercolor{upper separation line head}{parent=separation line} +\setbeamercolor{middle separation line head}{parent=separation line} +\setbeamercolor{lower separation line head}{parent=separation line} + +\setbeamercolor{upper separation line foot}{parent=separation line} +\setbeamercolor{middle separation line foot}{parent=separation line} +\setbeamercolor{lower separation line foot}{parent=separation line} + +\setbeamercolor{abstract}{} +\setbeamercolor{abstract title}{parent=structure} + +\setbeamercolor{verse}{} + +\setbeamercolor{quotation}{} +\setbeamercolor{quote}{parent=quotation} + +\setbeamercolor{page number in head/foot}{fg=fg!50!bg} + +\setbeamercolor{qed symbol}{parent=structure} + +\mode + diff --git a/my_docs/18/TACC_sysadmin_18/themes/beamerfontthemeTACC16.sty b/my_docs/18/TACC_sysadmin_18/themes/beamerfontthemeTACC16.sty new file mode 100644 index 000000000..d0fc325cc --- /dev/null +++ b/my_docs/18/TACC_sysadmin_18/themes/beamerfontthemeTACC16.sty @@ -0,0 +1,21 @@ +% Copyright 2003 by Till Tantau +% +% This program can be redistributed and/or modified under the terms +% of the GNU Public License, version 2. + +\mode +\setbeamerfont{title}{parent=structure,size=\LARGE,series=\bfseries} +\setbeamerfont{author}{parent=structure,size=\large, series=\normalfont} +\setbeamerfont{frametitle}{parent=structure,size=\LARGE,series=\bfseries} +\setbeamerfont{framesubtitle}{parent=frametitle,size=\small} + +%\usefonttheme{professionalfonts} % using non standard fonts for beamer +%\usefonttheme{serif} % default family is serif +%\usepackage{fontspec} +%\setmainfont{Century Gothic} + +%\usepackage{fontspec} +\usepackage{libertine} + +\mode + diff --git a/my_docs/18/TACC_sysadmin_18/themes/beamerinnerthemeTACC16.sty b/my_docs/18/TACC_sysadmin_18/themes/beamerinnerthemeTACC16.sty new file mode 100644 index 000000000..f7f454e1d --- /dev/null +++ b/my_docs/18/TACC_sysadmin_18/themes/beamerinnerthemeTACC16.sty @@ -0,0 +1,11 @@ +\mode + +\setbeamertemplate{itemize item}[triangle] +\setbeamertemplate{itemize subitem}[triangle] +\setbeamertemplate{itemize subsubitem}[triangle] +\setbeamertemplate{section in toc}{$\bullet$\hskip.5em\inserttocsection} +%\setbeamertemplate{subsection in toc}{} +\setbeamertemplate{subsubsection in toc}{} + +\mode + diff --git a/my_docs/18/TACC_sysadmin_18/themes/beamerouterthemeTACC16-169.sty b/my_docs/18/TACC_sysadmin_18/themes/beamerouterthemeTACC16-169.sty new file mode 100644 index 000000000..c62f9ed04 --- /dev/null +++ b/my_docs/18/TACC_sysadmin_18/themes/beamerouterthemeTACC16-169.sty @@ -0,0 +1,247 @@ +% Copyright 2003 by Till Tantau +% +% This program can be redistributed and/or modified under the terms +% of the GNU Public License, version 2. + +\mode + +\usepackage{xcolor} +\usepackage{graphicx} +\usepackage{etoolbox} + +\pgfdeclareimage[width=\paperwidth]{titlebackground}{./figures/master169.png} +\pgfdeclareimage[width=\paperwidth]{background}{./figures/secondary169.png} + +\setbeamertemplate{background canvas}{% + \ifnum\c@framenumber=1% + \begin{picture}(0,0) + \put(-0.15,-250){% + \pgfuseimage{titlebackground} + } + %\put(0,-130.7){% + + %\begin{minipage}[b][45mm][t]{\textwidth}%{226mm} + %\begin{center} + % \usebeamerfont{title}{\MakeTextUppercase{\inserttitle}\par} + %\vspace{2ex} + %\usebeamerfont{author}{\insertauthor} + % \end{center} + %\end{minipage} + %} + \end{picture} + % On title page + \else% + % Other frames background + \begin{picture}(0,0) + \put(-0.15,-255.55){% + \pgfuseimage{background} + } + \end{picture} + \fi% +} + + +\setbeamertemplate{title page}{ +\vspace{40pt} +\begin{center} +\usebeamerfont{title} {\huge \inserttitle}\par +\vspace{4ex} +\usebeamerfont{author} { + \insertauthor +}\par +\vspace{2ex} +\usebeamerfont{institute}{ + \insertinstitute +} \par +\vspace{2ex} +\usebeamerfont{date}{ + \insertdate +} +\end{center} +} + + +\setbeamertemplate{frametitle}[default][center] +\setbeamertemplate{frametitle}{ + \makeatletter + \regexpatchcmd{\insertframetitle} + {(\c{usebeamertemplate}.*)\c{fi}} + {\c{NoCaseChange}\cB\{\1\cE\}\c{fi}} + {}{}% + \makeatother + \vskip1ex + \insertframetitle +} + +% Here we define what appears at the bottom of each slide: the "footline". +\setbeamertemplate{footline}{% + \leavevmode% + + % Horizontal line dividing the rest of the slide from the footer? + % hrule goes all the way across... + % \hrule height.3pt% + % With \rule, you can specify the thickness + % \rule[raise-height]{width}{thickness} + % \hspace{.025\textwidth}\rule{.95\textwidth}{.5pt} + + \hbox{% + \ifnum \thepage>1 + % On the left half of the footer, insert the TACC of + \begin{minipage}{.2\textwidth}% + \hskip .05\textwidth%Give horizontal space else this will set on the left edge of the slide! + % \includegraphics[width=.8\textwidth]{TACC_logo.png} + \end{minipage} + + + \begin{minipage}{\textwidth}% + % \vskip .023\textheight% + \raggedleft% + \setlength{\rightskip}{\textwidth} + \hbox{% + \begin{beamercolorbox}[wd=0.7\textwidth,ht=2.25ex,dp=1ex,left]{author in head/foot}% + \insertshorttitle{} \hskip .01\textwidth | \hskip .01\textwidth \insertdate{} \hskip .01\textwidth | \hskip .01\textwidth \insertframenumber{} + \end{beamercolorbox}% + } + + % + % If we are not on the first page, insert a page number + % For some reason, insertframenumber is buggy when you have fragile + % slides with verbatim environments in them... it tends to skip numbers + % for some reason! On the other hand, the pagenumber is incremented + % for *every* slide, including transition slides... + % \hfill\includegraphics[width=\textwidth]{tacc_ut.png} + \end{minipage}% + \begin{minipage}{.05\textwidth}% + \end{minipage}% + \fi %\thepage>1 + }% + \vskip .023\textheight% + +} + + + + +\ifTACCheadernav + +\usesectionheadtemplate +{\hfill\insertsectionhead} +{\hfill\color{fg!50!bg}\insertsectionhead} + +% Head +\ifbeamer@compress + +% Here we define how the top of the frame looks, the "headline". +\setbeamertemplate{headline} +{% + \ifnum \thepage>1 + \leavevmode% + \begin{beamercolorbox}[wd=.5\paperwidth,ht=2.5ex,dp=1.125ex]{% + section in head/foot}% + \insertsectionnavigationhorizontal{.5\paperwidth}{\hskip0pt plus1filll}{}% + \end{beamercolorbox}% + \begin{beamercolorbox}[wd=.5\paperwidth,ht=2.5ex,dp=1.125ex]{% + subsection in head/foot}% + \insertsubsectionnavigationhorizontal{% + .5\paperwidth}{}{\hskip0pt plus1filll}% + \end{beamercolorbox}% + \fi %\thepage>1 +} + +\else% Not compressed + +\setbeamertemplate{headline} +{% + \ifnum \thepage>1 + \leavevmode% + \@tempdimb=2.4375ex% + \ifnum\beamer@subsectionmax<\beamer@sectionmax% + \multiply\@tempdimb by\beamer@sectionmax% + \else% + \multiply\@tempdimb by\beamer@subsectionmax% + \fi% + \ifdim\@tempdimb>0pt% + \advance\@tempdimb by 1.125ex% + \begin{beamercolorbox}[wd=.5\paperwidth,ht=\@tempdimb]{% + section in head/foot}% + \vbox to\@tempdimb{\vfil\insertsectionnavigation{.5\paperwidth}\vfil}% + \end{beamercolorbox}% + \begin{beamercolorbox}[wd=.5\paperwidth,ht=\@tempdimb]{% + subsection in head/foot}% + \vbox to\@tempdimb{\vfil\insertsubsectionnavigation{.5\paperwidth}\vfil}% + \end{beamercolorbox}% + \fi% + \fi % \thepage>1 +} + +\fi % end if compressed +\fi % TACCheadernav + + +\ifTACCheadertree + +\setbeamertemplate{headline} +{ + \begin{beamercolorbox}[wd=\paperwidth,colsep=1.5pt]{upper separation line head} + \end{beamercolorbox} + % + % Place short title + % + \begin{beamercolorbox}[wd=\paperwidth,ht=2.5ex,dp=1.125ex,% + leftskip=.3cm,rightskip=.3cm plus1fil]{title in head/foot} + \usebeamerfont{title in head/foot}\insertshorttitle + \end{beamercolorbox} + + % + % Place section + % + \begin{beamercolorbox}[wd=\paperwidth,ht=2.5ex,dp=1.125ex,% + leftskip=.3cm,rightskip=.3cm plus1fil]{section in head/foot} + \usebeamerfont{section in head/foot}% + %\ifbeamer@tree@showhooks + \setbox\beamer@tempbox=\hbox{\insertsectionhead}% + \ifdim\wd\beamer@tempbox>1pt% + \hskip2pt\raise1.9pt\hbox{\vrule width0.4pt height1.875ex\vrule width 5pt height0.4pt}% + \hskip1pt% + \fi + \insertsectionhead + \end{beamercolorbox} + +% +% Place subsection +% +\begin{beamercolorbox}[wd=\paperwidth,ht=2.5ex,dp=1.125ex,% + leftskip=.3cm,rightskip=.3cm plus1fil]{subsection in head/foot} + \usebeamerfont{subsection in head/foot}% + %\ifbeamer@tree@showhooks + \setbox\beamer@tempbox=\hbox{\insertsubsectionhead}% + \ifdim\wd\beamer@tempbox>1pt% + \hskip9.4pt\raise1.9pt\hbox{\vrule width0.4pt height1.875ex\vrule width 5pt height0.4pt}% + \hskip1pt% + \fi + \insertsubsectionhead +\end{beamercolorbox} + +% +% Place final separation box +% + \begin{beamercolorbox}[wd=\paperwidth,colsep=1.5pt + ]{lower separation line head} + \end{beamercolorbox} + + % + % Another matching rule which helps to frame the content + % + \hspace{.025\textwidth}\rule{.95\textwidth}{.5pt} +} +\fi % TACCheadertree + + +% The following command suppresses all navigation symbols. This is +% necessary in the TACC theme, since it overlaps where we want the +% logo to be. +\setbeamertemplate{navigation symbols}{} + + +\mode + diff --git a/my_docs/18/TACC_sysadmin_18/themes/beamerouterthemeTACC16.sty b/my_docs/18/TACC_sysadmin_18/themes/beamerouterthemeTACC16.sty new file mode 100644 index 000000000..c5b178018 --- /dev/null +++ b/my_docs/18/TACC_sysadmin_18/themes/beamerouterthemeTACC16.sty @@ -0,0 +1,247 @@ +% Copyright 2003 by Till Tantau +% +% This program can be redistributed and/or modified under the terms +% of the GNU Public License, version 2. + +\mode + +\usepackage{xcolor} +\usepackage{graphicx} +\usepackage{etoolbox} + +\pgfdeclareimage[width=\paperwidth]{titlebackground}{master.jpg} +\pgfdeclareimage[width=\paperwidth]{background}{secondary.jpg} + +\setbeamertemplate{background canvas}{% + \ifnum\c@framenumber=1% + \begin{picture}(0,0) + \put(0,-273){% + \pgfuseimage{titlebackground} + } + %\put(0,-130.7){% + + %\begin{minipage}[b][45mm][t]{\textwidth}%{226mm} + %\begin{center} + % \usebeamerfont{title}{\MakeTextUppercase{\inserttitle}\par} + %\vspace{2ex} + %\usebeamerfont{author}{\insertauthor} + % \end{center} + %\end{minipage} + %} + \end{picture} + % On title page + \else% + % Other frames background + \begin{picture}(0,0) + \put(0,-273){% + \pgfuseimage{background} + } + \end{picture} + \fi% +} + + +\setbeamertemplate{title page}{ +\vspace{40pt} +\begin{center} +\usebeamerfont{title} {\huge \inserttitle}\par +\vspace{4ex} +\usebeamerfont{author} { + \insertauthor +}\par +\vspace{2ex} +\usebeamerfont{institute}{ + \insertinstitute +} \par +\vspace{2ex} +\usebeamerfont{date}{ + \insertdate +} +\end{center} +} + + +\setbeamertemplate{frametitle}[default][center] +\setbeamertemplate{frametitle}{ + \makeatletter + \regexpatchcmd{\insertframetitle} + {(\c{usebeamertemplate}.*)\c{fi}} + {\c{NoCaseChange}\cB\{\1\cE\}\c{fi}} + {}{}% + \makeatother + \vskip1ex + \insertframetitle +} + +% Here we define what appears at the bottom of each slide: the "footline". +\setbeamertemplate{footline}{% + \leavevmode% + + % Horizontal line dividing the rest of the slide from the footer? + % hrule goes all the way across... + % \hrule height.3pt% + % With \rule, you can specify the thickness + % \rule[raise-height]{width}{thickness} + % \hspace{.025\textwidth}\rule{.95\textwidth}{.5pt} + + \hbox{% + \ifnum \thepage>1 + % On the left half of the footer, insert the TACC of + \begin{minipage}{.2\textwidth}% + \hskip .05\textwidth%Give horizontal space else this will set on the left edge of the slide! + % \includegraphics[width=.8\textwidth]{figures/TACC_logo.png} + \end{minipage} + + + \begin{minipage}{\textwidth}% + % \vskip .023\textheight% + \raggedleft% + \setlength{\rightskip}{\textwidth} + \hbox{% + \begin{beamercolorbox}[wd=0.7\textwidth,ht=2.25ex,dp=1ex,left]{author in head/foot}% + \insertshorttitle{} \hskip .01\textwidth | \hskip .01\textwidth \insertdate{} \hskip .01\textwidth | \hskip .01\textwidth \insertframenumber{} + \end{beamercolorbox}% + } + + % + % If we are not on the first page, insert a page number + % For some reason, insertframenumber is buggy when you have fragile + % slides with verbatim environments in them... it tends to skip numbers + % for some reason! On the other hand, the pagenumber is incremented + % for *every* slide, including transition slides... + % \hfill\includegraphics[width=\textwidth]{figures/tacc_ut.png} + \end{minipage}% + \begin{minipage}{.05\textwidth}% + \end{minipage}% + \fi %\thepage>1 + }% + \vskip .023\textheight% + +} + + + + +\ifTACCheadernav + +\usesectionheadtemplate +{\hfill\insertsectionhead} +{\hfill\color{fg!50!bg}\insertsectionhead} + +% Head +\ifbeamer@compress + +% Here we define how the top of the frame looks, the "headline". +\setbeamertemplate{headline} +{% + \ifnum \thepage>1 + \leavevmode% + \begin{beamercolorbox}[wd=.5\paperwidth,ht=2.5ex,dp=1.125ex]{% + section in head/foot}% + \insertsectionnavigationhorizontal{.5\paperwidth}{\hskip0pt plus1filll}{}% + \end{beamercolorbox}% + \begin{beamercolorbox}[wd=.5\paperwidth,ht=2.5ex,dp=1.125ex]{% + subsection in head/foot}% + \insertsubsectionnavigationhorizontal{% + .5\paperwidth}{}{\hskip0pt plus1filll}% + \end{beamercolorbox}% + \fi %\thepage>1 +} + +\else% Not compressed + +\setbeamertemplate{headline} +{% + \ifnum \thepage>1 + \leavevmode% + \@tempdimb=2.4375ex% + \ifnum\beamer@subsectionmax<\beamer@sectionmax% + \multiply\@tempdimb by\beamer@sectionmax% + \else% + \multiply\@tempdimb by\beamer@subsectionmax% + \fi% + \ifdim\@tempdimb>0pt% + \advance\@tempdimb by 1.125ex% + \begin{beamercolorbox}[wd=.5\paperwidth,ht=\@tempdimb]{% + section in head/foot}% + \vbox to\@tempdimb{\vfil\insertsectionnavigation{.5\paperwidth}\vfil}% + \end{beamercolorbox}% + \begin{beamercolorbox}[wd=.5\paperwidth,ht=\@tempdimb]{% + subsection in head/foot}% + \vbox to\@tempdimb{\vfil\insertsubsectionnavigation{.5\paperwidth}\vfil}% + \end{beamercolorbox}% + \fi% + \fi % \thepage>1 +} + +\fi % end if compressed +\fi % TACCheadernav + + +\ifTACCheadertree + +\setbeamertemplate{headline} +{ + \begin{beamercolorbox}[wd=\paperwidth,colsep=1.5pt]{upper separation line head} + \end{beamercolorbox} + % + % Place short title + % + \begin{beamercolorbox}[wd=\paperwidth,ht=2.5ex,dp=1.125ex,% + leftskip=.3cm,rightskip=.3cm plus1fil]{title in head/foot} + \usebeamerfont{title in head/foot}\insertshorttitle + \end{beamercolorbox} + + % + % Place section + % + \begin{beamercolorbox}[wd=\paperwidth,ht=2.5ex,dp=1.125ex,% + leftskip=.3cm,rightskip=.3cm plus1fil]{section in head/foot} + \usebeamerfont{section in head/foot}% + %\ifbeamer@tree@showhooks + \setbox\beamer@tempbox=\hbox{\insertsectionhead}% + \ifdim\wd\beamer@tempbox>1pt% + \hskip2pt\raise1.9pt\hbox{\vrule width0.4pt height1.875ex\vrule width 5pt height0.4pt}% + \hskip1pt% + \fi + \insertsectionhead + \end{beamercolorbox} + +% +% Place subsection +% +\begin{beamercolorbox}[wd=\paperwidth,ht=2.5ex,dp=1.125ex,% + leftskip=.3cm,rightskip=.3cm plus1fil]{subsection in head/foot} + \usebeamerfont{subsection in head/foot}% + %\ifbeamer@tree@showhooks + \setbox\beamer@tempbox=\hbox{\insertsubsectionhead}% + \ifdim\wd\beamer@tempbox>1pt% + \hskip9.4pt\raise1.9pt\hbox{\vrule width0.4pt height1.875ex\vrule width 5pt height0.4pt}% + \hskip1pt% + \fi + \insertsubsectionhead +\end{beamercolorbox} + +% +% Place final separation box +% + \begin{beamercolorbox}[wd=\paperwidth,colsep=1.5pt + ]{lower separation line head} + \end{beamercolorbox} + + % + % Another matching rule which helps to frame the content + % + \hspace{.025\textwidth}\rule{.95\textwidth}{.5pt} +} +\fi % TACCheadertree + + +% The following command suppresses all navigation symbols. This is +% necessary in the TACC theme, since it overlaps where we want the +% logo to be. +\setbeamertemplate{navigation symbols}{} + + +\mode + diff --git a/my_docs/18/TACC_sysadmin_18/themes/beamerthemeTACC16-169.sty b/my_docs/18/TACC_sysadmin_18/themes/beamerthemeTACC16-169.sty new file mode 100644 index 000000000..22caf9a05 --- /dev/null +++ b/my_docs/18/TACC_sysadmin_18/themes/beamerthemeTACC16-169.sty @@ -0,0 +1,38 @@ +%% TACC theme for beamer + +\newif\ifTACCheadernav +\DeclareOption{headernav}{\global\TACCheadernavtrue} + +\newif\ifTACCheadertree +\DeclareOption{headertree}{\global\TACCheadertreetrue} +\ProcessOptions + +\mode + +\makeatletter + \def\beamer@calltheme#1#2#3{% + \def\beamer@themelist{#2} + \@for\beamer@themename:=\beamer@themelist\do + {\usepackage[{#1}]{\beamer@themelocation/#3\beamer@themename}}} + + \def\usefolder#1{ + \def\beamer@themelocation{#1} + } + \def\beamer@themelocation{} + +\usefolder{themes} +\usefonttheme{TACC16} +\useinnertheme{TACC16} +\useoutertheme{TACC16-169} +\usecolortheme{TACC16} + +\mode + + +\newcommand{\event}[1]{% + \makeatletter% + \def\TACC@eventname{#1}% + \makeatother} + +\newcommand{\sectionframe}[1]{\section{#1}\frame{\Large\textbf{#1}}} +\newcommand{\subsectionframe}[1]{\subsection{#1}\frame{\large\textbf{#1}}} diff --git a/my_docs/18/TACC_sysadmin_18/themes/beamerthemeTACC16.sty b/my_docs/18/TACC_sysadmin_18/themes/beamerthemeTACC16.sty new file mode 100644 index 000000000..750bdd388 --- /dev/null +++ b/my_docs/18/TACC_sysadmin_18/themes/beamerthemeTACC16.sty @@ -0,0 +1,26 @@ +%% TACC theme for beamer + +\newif\ifTACCheadernav +\DeclareOption{headernav}{\global\TACCheadernavtrue} + +\newif\ifTACCheadertree +\DeclareOption{headertree}{\global\TACCheadertreetrue} +\ProcessOptions + +\mode + +\usefonttheme{TACC16} +\useinnertheme{TACC16} +\useoutertheme{TACC16} +\usecolortheme{TACC16} + +\mode + + +\newcommand{\event}[1]{% + \makeatletter% + \def\TACC@eventname{#1}% + \makeatother} + +\newcommand{\sectionframe}[1]{\section{#1}\frame{\Large\textbf{#1}}} +\newcommand{\subsectionframe}[1]{\subsection{#1}\frame{\large\textbf{#1}}} diff --git a/my_docs/18/TACC_sysadmin_18/themes/example.pdf b/my_docs/18/TACC_sysadmin_18/themes/example.pdf new file mode 100644 index 000000000..add373eee Binary files /dev/null and b/my_docs/18/TACC_sysadmin_18/themes/example.pdf differ diff --git a/my_docs/18/TACC_sysadmin_18/themes/license.tex b/my_docs/18/TACC_sysadmin_18/themes/license.tex new file mode 100644 index 000000000..74ff86759 --- /dev/null +++ b/my_docs/18/TACC_sysadmin_18/themes/license.tex @@ -0,0 +1,14 @@ + +\begin{frame}{License} +\footnotesize +\textcopyright The University of Texas at Austin, \the\year\\ +\vspace{0.5 cm} +This work is licensed under the Creative Commons Attribution Non-Commercial 3.0 Unported License. To view a copy of this license, +visit http://creativecommons.org/licenses/by-nc/3.0/\\ +\vspace{0.5 cm} +When attributing this work, please use the following text: +"Designing and Administering Large-scale Systems", Texas Advanced Computing Center, \the\year. Available under a Creative Commons Attribution Non-Commercial 3.0 Unported License. +\newline +\newline +\includegraphics[width=1cm]{./figures/cc.png} +\end{frame} \ No newline at end of file diff --git a/my_docs/18/sc18/EB_BoF_Lighting/beamercolorthemeTACC.sty b/my_docs/18/sc18/EB_BoF_Lighting/beamercolorthemeTACC.sty deleted file mode 120000 index c03d8d59c..000000000 --- a/my_docs/18/sc18/EB_BoF_Lighting/beamercolorthemeTACC.sty +++ /dev/null @@ -1 +0,0 @@ -../../../beamer/beamercolorthemeTACC.sty \ No newline at end of file diff --git a/my_docs/18/sc18/EB_BoF_Lighting/beamercolorthemeTACC.sty b/my_docs/18/sc18/EB_BoF_Lighting/beamercolorthemeTACC.sty new file mode 100755 index 000000000..78beb6a4a --- /dev/null +++ b/my_docs/18/sc18/EB_BoF_Lighting/beamercolorthemeTACC.sty @@ -0,0 +1,323 @@ +% Copyright 2003 by Till Tantau . +% +% This program can be redistributed and/or modified under the terms +% of the GNU Public License, version 2. + +\mode + +% I downloaded a gimp color palette from +% http://maururu.net/2007/latex-beamer-color-palette/ +% Which provides rgb values (I think) for several of the +% default beamer themes. You can open this in gimp by +% opening the Palettes dialog, right-clicking anywhere and choosing +% 'Import Palette'. A color in there called 'default added blue' +% appeared to be approximately what I wanted. It had the triple +% of values 141 145 208. If you double-click on this in the +% palette editor it gives you a bunch of information. You can't +% use these values directly to set a color...it just comes out white. +% I think definecolor is expecting something normalized by 255. Yes! + + +% bluish colors +\definecolor{defaddedblue}{rgb}{0.5529,.5686,.8157} % 141,145,208 +\definecolor{defblockheader}{rgb}{.1921,.2235,.6824} % 49,57,174 +\definecolor{flyaddedblue}{rgb}{.5961,.6118,.8431} % 152,156,215 + +% bluish-greys +\definecolor{beetleaddedblue1}{rgb}{.3333,.4039,.6196} % 85 103 158, dark +\definecolor{beetleaddedblue2}{rgb}{.4510,.5098,.7020} % 115 130 179, medium +\definecolor{beetleaddedblue3}{rgb}{.7059,.7255,.7961} % 180 185 203, light (greyest) + +% very light blue-greys +\definecolor{deflightouter1}{rgb}{.7608,.7647,.9020} % 194 195 230, dark +\definecolor{deflightouter2}{rgb}{.8 ,.8039,.9176} % 204 205 234, medium +\definecolor{deflightouter3}{rgb}{.8392,.8431,.9373} % 214 215 239, light + +% reddish colors +\definecolor{flyalertblockheader}{rgb}{.7373,.1294,.1333} % 188 33 34 +\definecolor{flyaddedred}{rgb}{.8667,.5647,.5647}% 221 144 144 +\definecolor{beaverouterframe}{rgb}{.5529,.0980,.0980}% 141 25 25 + +% greens (green is used for 'examples' in beamer) +\definecolor{defexblock}{rgb}{.9098,.9333,.9020} % 232 238 230, light +\definecolor{defaddedgreen}{rgb}{.5412,.6510,.4706} % 138 166 120, medium +\definecolor{defexblockheader}{rgb}{.1686,.3647,.0392} % 43 93 10, dark + +\definecolor{lightexblock}{rgb}{.9137,.9451,.9020} % 233 241 230, light +\definecolor{lightexblockheader}{rgb}{.8235,.8980,.8} % 210 229 204, medium +\definecolor{lightexblockheadertext}{rgb}{.2431,.5098,.0745} % 62 130 19, dark + + +%%% +% Set the normal text color +%%% +\setbeamercolor{normal text}{fg=black,bg=white} + +%%% +% Set the alerted text color +%%% +% \setbeamercolor{alerted text}{fg=red} +\setbeamercolor{alerted text}{fg=red!50!black} % half black/half red for green bg +% \setbeamercolor{alerted text}{fg=beaverouterframe} +% \setbeamercolor{alerted text}{fg=defblockheader} % doesn't stand out enough + + +% Set the 'example' text +\setbeamercolor{example text}{fg=green!50!black} + +\setbeamercolor{structure}{fg=black} + +\setbeamercolor{background canvas}{parent=normal text} +\setbeamercolor{background}{parent=background canvas} + +\setbeamercolor{palette primary}{use=structure,fg=structure.fg} +\setbeamercolor{palette secondary}{use=structure,fg=structure.fg!75!black} +\setbeamercolor{palette tertiary}{use=structure,fg=structure.fg!50!black} +\setbeamercolor{palette quaternary}{fg=black} + +\setbeamercolor{palette sidebar primary}{use=normal text,fg=normal text.fg} +\setbeamercolor{palette sidebar secondary}{use=structure,fg=structure.fg} +\setbeamercolor{palette sidebar tertiary}{use=normal text,fg=normal text.fg} +\setbeamercolor{palette sidebar quaternary}{use=structure,fg=structure.fg} + +\setbeamercolor{math text}{} +\setbeamercolor{math text inlined}{parent=math text} +\setbeamercolor{math text displayed}{parent=math text} + +\setbeamercolor{normal text in math text}{} + +\setbeamercolor{local structure}{parent=structure} + +\setbeamercolor{titlelike}{parent=structure} + +\setbeamercolor{title}{parent=titlelike} +\setbeamercolor{title in head/foot}{parent=palette quaternary} +\setbeamercolor{title in sidebar}{parent=palette sidebar quaternary} + +\setbeamercolor{subtitle}{parent=title} + +\setbeamercolor{author}{} +\setbeamercolor{author in head/foot}{parent=palette primary} +\setbeamercolor{author in sidebar}{use=palette sidebar tertiary,fg=palette sidebar tertiary.fg} + +\setbeamercolor{institute}{} +\setbeamercolor{institute in head/foot}{parent=palette tertiary} +\setbeamercolor{institute in sidebar}{use=palette sidebar tertiary,fg=palette sidebar tertiary.fg} + +\setbeamercolor{date}{} +\setbeamercolor{date in head/foot}{parent=palette secondary} +\setbeamercolor{date in sidebar}{use=palette sidebar tertiary,fg=palette sidebar tertiary.fg} + +\setbeamercolor{titlegraphic}{} + +\setbeamercolor{part name}{} +\setbeamercolor{part title}{parent=titlelike} + +\setbeamercolor{section in toc}{parent=structure} +\setbeamercolor{section in toc shaded}{parent=section in toc} +\setbeamercolor{section in head/foot}{parent=palette tertiary} +\setbeamercolor{section in sidebar}{parent=palette sidebar secondary} +\setbeamercolor{section in sidebar shaded}{use=section in sidebar,fg=section in sidebar.fg!40!bg} +\setbeamercolor{section number projected}{parent=item projected} + +\setbeamercolor{subsection in toc}{} +\setbeamercolor{subsection in toc shaded}{parent=subsection in toc} +\setbeamercolor{subsection in head/foot}{parent=palette secondary} +\setbeamercolor{subsection in sidebar}{parent=palette sidebar primary} +\setbeamercolor{subsection in sidebar shaded}{use=subsection in sidebar,fg=subsection in sidebar.fg!40!bg} +\setbeamercolor{subsection number projected}{parent={subitem projected}} + +\setbeamercolor{subsubsection in toc}{parent=subsection in toc} +\setbeamercolor{subsubsection in toc shaded}{parent=subsubsection in toc} +\setbeamercolor{subsubsection in head/foot}{parent=subsection in head/foot} +\setbeamercolor{subsubsection in sidebar}{parent=subsection in sidebar} +\setbeamercolor{subsubsection in sidebar shaded}{parent=subsection in sidebar shaded} +\setbeamercolor{subsubsection number projected}{parent=subsubitem projected} + +\setbeamercolor{headline}{} +\setbeamercolor{footline}{} + +\setbeamercolor{sidebar}{} +\setbeamercolor{sidebar left}{parent=sidebar} +\setbeamercolor{sidebar right}{parent=sidebar} + +\setbeamercolor{logo}{parent=palette secondary} + +\setbeamercolor{frametitle}{parent=titlelike} +\setbeamercolor{framesubtitle}{parent=frametitle} + +\setbeamercolor{frametitle right}{parent=frametitle} + +\setbeamercolor{caption}{} +\setbeamercolor{caption name}{parent=structure} + +\setbeamercolor{button}{use=local structure,bg=local structure.fg!50!bg,fg=white} +\setbeamercolor{button border}{use=button,fg=button.bg} +\setbeamercolor{navigation symbols}{use=structure,fg=structure.fg!40!bg} +\setbeamercolor{navigation symbols dimmed}{use=structure,fg=structure.fg!20!bg} +\setbeamercolor{mini frame}{parent=section in head/foot} + +% Color expressions are defined in the xcolor package +% +% Ex: Mixture of 40% green, 60% yellow: green!40!yellow +% +% The complement of any color can be obtained by prepending +% a minus sign: -green!40!yellow +% +% One can also combine up to three colors (in differing proportions) +% using the rgb command. For example, the following command combines +% 3 parts of the first color, with 2 parts of the second, and one part +% "red" +% +%\color{rgb:-green!40!yellow,3;green!40!yellow,2;red,1} +% Unfortunately, I don't think this works as an argument to setbeamercolor... +% "Orange" bg=green!30!yellow!30!red +% close to burnt orange: red!75!green +% lightgray is a color, but gray!25!white looks better +% +% A nice pair of greens +% (dark, a little too dark to be under black text...) -red!75!green!50!blue!25 +% (light) -red!75!green!50!blue!25!gray +% +% Some colors are only available via options to the xcolor package, eg. +% x11names,DarkOliveGreen4 +% svgnames, Chartreuse +% dvipsnames, ForestGreen +% +% but beamer does not seem to have any of these. +% +% The base color names which are always available are: +% black +% blue +% brown +% cyan +% darkgray +% gray +% green +% lightgray +% lime +% magenta +% olive +% orange +% pink +% purple +% red +% teal +% violet +% white +% yellow + +% From the beamer user guide, pg. 167 +% Inner color themes only specify the colors of elements used in inner +% themes. Most noticably, they specify the colors used for blocks. +% ... + +% Example color definition +% beamercolorthemedefault.sty:\definecolor{beamer@blendedblue}{rgb}{0.2,0.2,0.7} +% beamercolorthemedefault.sty:\setbeamercolor{structure}{fg=beamer@blendedblue} + +% The greens +% \setbeamercolor{block body}{bg=-red!75!green!50!blue!25!gray} +% \setbeamercolor{block title}{parent=structure,bg=-red!75!green!50!blue!25,fg=-red!75!green!50!blue!25!gray} + +%%% +% Set the block body and title background/foreground colors +%%% +% \setbeamercolor{block body}{bg=flyaddedblue} +% \setbeamercolor{block title}{bg=defblockheader,fg=flyaddedblue} + +% Purplish blues, too dark overall +% \setbeamercolor{block body}{bg=beetleaddedblue3} +% \setbeamercolor{block title}{bg=beetleaddedblue2,fg=beetleaddedblue3} + +% Very light blue greys +% 1. Not enough contrast +% \setbeamercolor{block body}{bg=deflightouter3} +% \setbeamercolor{block title}{bg=deflightouter2,fg=deflightouter3} + +% 2. Not enough contrast +% \setbeamercolor{block body}{bg=deflightouter3} +% \setbeamercolor{block title}{bg=deflightouter1,fg=deflightouter3} + +% 3. Combination of deflightouter and fly. The block bg is +% lighter than the all-beetle color scheme I previously thought was best. +% Currently I like this one the best +\setbeamercolor{block body}{bg=deflightouter3} +\setbeamercolor{block title}{bg=beetleaddedblue2,fg=deflightouter3} + +% 4. Greens. Looks like a highlighter. I don't really trust greens +% on projectors... It's almost too bright/hurts your eyes. +% \setbeamercolor{block body}{bg=defexblock} +% \setbeamercolor{block title}{bg=defaddedgreen,fg=defexblock} + +% This looks pretty good ... it's similar to the greens we had before +% but should be lighter. The blocks are just a little too "mint" colored +% though... +% \setbeamercolor{block body}{bg=defexblock} +% \setbeamercolor{block title}{bg=defexblockheader,fg=defexblock} + +% Pea Soup! +%\setbeamercolor{block body}{bg=defaddedgreen} +%\setbeamercolor{block title}{bg=defexblockheader,fg=defaddedgreen} + + +% Changing these didn't seem to do anything...I had to change the +% 'alerted text' color instead +\setbeamercolor{block body alerted}{} +\setbeamercolor{block body example}{} +\setbeamercolor{block title alerted}{parent=alerted text} +\setbeamercolor{block title example}{parent=example text} + +\setbeamercolor{item}{parent=local structure} +\setbeamercolor{subitem}{parent=item} +\setbeamercolor{subsubitem}{parent=subitem} + +\setbeamercolor{item projected}{parent=item,use=item,fg=white,bg=item.fg} +\setbeamercolor{subitem projected}{parent=item projected} +\setbeamercolor{subsubitem projected}{parent=subitem projected} + +\setbeamercolor{enumerate item}{parent=item} +\setbeamercolor{enumerate subitem}{parent=subitem} +\setbeamercolor{enumerate subsubitem}{parent=subsubitem} + +\setbeamercolor{itemize item}{parent=item} +\setbeamercolor{itemize subitem}{parent=subitem} +\setbeamercolor{itemize subsubitem}{parent=subsubitem} + +\setbeamercolor{itemize/enumerate body}{} +\setbeamercolor{itemize/enumerate subbody}{} +\setbeamercolor{itemize/enumerate subsubbody}{} + +\setbeamercolor{description item}{parent=item} + +\setbeamercolor{bibliography item}{parent=item} + +\setbeamercolor{bibliography entry author}{use=structure,fg=structure.fg} +\setbeamercolor{bibliography entry title}{use=normal text,fg=normal text.fg} +\setbeamercolor{bibliography entry location}{use=structure,fg=structure.fg!65!bg} +\setbeamercolor{bibliography entry note}{use=structure,fg=structure.fg!65!bg} + +\setbeamercolor{separation line}{} + +\setbeamercolor{upper separation line head}{parent=separation line} +\setbeamercolor{middle separation line head}{parent=separation line} +\setbeamercolor{lower separation line head}{parent=separation line} + +\setbeamercolor{upper separation line foot}{parent=separation line} +\setbeamercolor{middle separation line foot}{parent=separation line} +\setbeamercolor{lower separation line foot}{parent=separation line} + +\setbeamercolor{abstract}{} +\setbeamercolor{abstract title}{parent=structure} + +\setbeamercolor{verse}{} + +\setbeamercolor{quotation}{} +\setbeamercolor{quote}{parent=quotation} + +\setbeamercolor{page number in head/foot}{fg=fg!50!bg} + +\setbeamercolor{qed symbol}{parent=structure} + +\mode + diff --git a/my_docs/18/sc18/EB_BoF_Lighting/beamercolorthemeTACC16.sty b/my_docs/18/sc18/EB_BoF_Lighting/beamercolorthemeTACC16.sty deleted file mode 120000 index e5e16b765..000000000 --- a/my_docs/18/sc18/EB_BoF_Lighting/beamercolorthemeTACC16.sty +++ /dev/null @@ -1 +0,0 @@ -../../../beamer/beamercolorthemeTACC16.sty \ No newline at end of file diff --git a/my_docs/18/sc18/EB_BoF_Lighting/beamercolorthemeTACC16.sty b/my_docs/18/sc18/EB_BoF_Lighting/beamercolorthemeTACC16.sty new file mode 100755 index 000000000..779dde91f --- /dev/null +++ b/my_docs/18/sc18/EB_BoF_Lighting/beamercolorthemeTACC16.sty @@ -0,0 +1,192 @@ +% Copyright 2003 by Till Tantau . +% +% This program can be redistributed and/or modified under the terms +% of the GNU Public License, version 2. + +\mode + +\usepackage{textcase,regexpatch} + +\setbeamertemplate{blocks}[rounded][shadow=true] + + +\definecolor{TACCred}{RGB}{180,13,29} +\definecolor{TACCorange}{RGB}{210,104,43} +\definecolor{TACCblue}{RGB}{108, 134, 191} +\definecolor{TACCgreen}{RGB}{23,106,70} + +% I downloaded a gimp color palette from +% http://maururu.net/2007/latex-beamer-color-palette/ +% Which provides rgb values (I think) for several of the +% default beamer themes. You can open this in gimp by +% opening the Palettes dialog, right-clicking anywhere and choosing +% 'Import Palette'. A color in there called 'default added blue' +% appeared to be approximately what I wanted. It had the triple +% of values 141 145 208. If you double-click on this in the +% palette editor it gives you a bunch of information. You can't +% use these values directly to set a color...it just comes out white. +% I think definecolor is expecting something normalized by 255. Yes! + + +%%% +% Set the normal text color +%%% +\setbeamercolor{normal text}{fg=black} %,bg=white} +\setbeamercolor{example text}{fg=TACCgreen} +\setbeamercolor{alerted text}{fg=TACCorange} + + +\setbeamercolor{structure}{fg=black} +%\setbeamercolor{structure}{fg=black} + +\setbeamercolor{background canvas}{parent=normal text} +\setbeamercolor{background}{parent=background canvas} + +\setbeamercolor{palette primary}{use=structure,fg=structure.fg} +\setbeamercolor{palette secondary}{use=structure,fg=structure.fg!75!black} +\setbeamercolor{palette tertiary}{use=structure,fg=structure.fg!50!black} +\setbeamercolor{palette quaternary}{fg=black} + +\setbeamercolor{palette sidebar primary}{use=normal text,fg=normal text.fg} +\setbeamercolor{palette sidebar secondary}{use=structure,fg=structure.fg} +\setbeamercolor{palette sidebar tertiary}{use=normal text,fg=normal text.fg} +\setbeamercolor{palette sidebar quaternary}{use=structure,fg=structure.fg} + +\setbeamercolor{math text}{} +\setbeamercolor{math text inlined}{parent=math text} +\setbeamercolor{math text displayed}{parent=math text} + +\setbeamercolor{normal text in math text}{} + +\setbeamercolor{local structure}{parent=structure} + +\setbeamercolor{titlelike}{parent=structure} + +\setbeamercolor{title}{parent=titlelike} +\setbeamercolor{title in head/foot}{parent=palette quaternary} +\setbeamercolor{title in sidebar}{parent=palette sidebar quaternary} + +\setbeamercolor{subtitle}{parent=title} + +\setbeamercolor{author}{} +\setbeamercolor{author in head/foot}{parent=palette primary} +\setbeamercolor{author in sidebar}{use=palette sidebar tertiary,fg=palette sidebar tertiary.fg} + +\setbeamercolor{institute}{} +\setbeamercolor{institute in head/foot}{parent=palette tertiary} +\setbeamercolor{institute in sidebar}{use=palette sidebar tertiary,fg=palette sidebar tertiary.fg} + +\setbeamercolor{date}{} +\setbeamercolor{date in head/foot}{parent=palette secondary} +\setbeamercolor{date in sidebar}{use=palette sidebar tertiary,fg=palette sidebar tertiary.fg} + +\setbeamercolor{titlegraphic}{} + +\setbeamercolor{part name}{} +\setbeamercolor{part title}{parent=titlelike} + +\setbeamercolor{section in toc}{parent=structure} +\setbeamercolor{section in toc shaded}{parent=section in toc} +\setbeamercolor{section in head/foot}{parent=palette tertiary} +\setbeamercolor{section in sidebar}{parent=palette sidebar secondary} +\setbeamercolor{section in sidebar shaded}{use=section in sidebar,fg=section in sidebar.fg!40!bg} +\setbeamercolor{section number projected}{parent=item projected} + +\setbeamercolor{subsection in toc}{} +\setbeamercolor{subsection in toc shaded}{parent=subsection in toc} +\setbeamercolor{subsection in head/foot}{parent=palette secondary} +\setbeamercolor{subsection in sidebar}{parent=palette sidebar primary} +\setbeamercolor{subsection in sidebar shaded}{use=subsection in sidebar,fg=subsection in sidebar.fg!40!bg} +\setbeamercolor{subsection number projected}{parent={subitem projected}} + +\setbeamercolor{subsubsection in toc}{parent=subsection in toc} +\setbeamercolor{subsubsection in toc shaded}{parent=subsubsection in toc} +\setbeamercolor{subsubsection in head/foot}{parent=subsection in head/foot} +\setbeamercolor{subsubsection in sidebar}{parent=subsection in sidebar} +\setbeamercolor{subsubsection in sidebar shaded}{parent=subsection in sidebar shaded} +\setbeamercolor{subsubsection number projected}{parent=subsubitem projected} + +\setbeamercolor{headline}{} +\setbeamercolor{footline}{} + +\setbeamercolor{sidebar}{} +\setbeamercolor{sidebar left}{parent=sidebar} +\setbeamercolor{sidebar right}{parent=sidebar} + +\setbeamercolor{logo}{parent=palette secondary} + +\setbeamercolor{frametitle}{parent=titlelike} +\setbeamercolor{framesubtitle}{parent=frametitle} + +\setbeamercolor{frametitle right}{parent=frametitle} + +\setbeamercolor{caption}{} +\setbeamercolor{caption name}{parent=structure} + +\setbeamercolor{button}{use=local structure,bg=local structure.fg!50!bg,fg=white} +\setbeamercolor{button border}{use=button,fg=button.bg} +\setbeamercolor{navigation symbols}{use=structure,fg=structure.fg!40!bg} +\setbeamercolor{navigation symbols dimmed}{use=structure,fg=structure.fg!20!bg} +\setbeamercolor{mini frame}{parent=section in head/foot} + +\setbeamercolor{block body}{fg=black} +\setbeamercolor{block body alerted}{fg=black} +\setbeamercolor{block body example}{fg=black} + +\setbeamercolor{block title}{bg=TACCblue,fg=white} +\setbeamercolor{block title alerted}{bg=TACCred,fg=white} +\setbeamercolor{block title example}{bg=TACCgreen,fg=white} + +\setbeamercolor{item}{parent=local structure} +\setbeamercolor{subitem}{parent=item} +\setbeamercolor{subsubitem}{parent=subitem} + +\setbeamercolor{item projected}{parent=item,use=item,fg=black,bg=item.fg} +\setbeamercolor{subitem projected}{parent=item projected} +\setbeamercolor{subsubitem projected}{parent=subitem projected} + +\setbeamercolor{enumerate item}{parent=item} +\setbeamercolor{enumerate subitem}{parent=subitem} +\setbeamercolor{enumerate subsubitem}{parent=subsubitem} + +\setbeamercolor{itemize item}{parent=item} +\setbeamercolor{itemize subitem}{parent=subitem} +\setbeamercolor{itemize subsubitem}{parent=subsubitem} + +\setbeamercolor{itemize/enumerate body}{} +\setbeamercolor{itemize/enumerate subbody}{} +\setbeamercolor{itemize/enumerate subsubbody}{} + +\setbeamercolor{description item}{parent=item} + +\setbeamercolor{bibliography item}{parent=item} + +\setbeamercolor{bibliography entry author}{use=structure,fg=structure.fg} +\setbeamercolor{bibliography entry title}{use=normal text,fg=normal text.fg} +\setbeamercolor{bibliography entry location}{use=structure,fg=structure.fg!65!bg} +\setbeamercolor{bibliography entry note}{use=structure,fg=structure.fg!65!bg} + +\setbeamercolor{separation line}{} + +\setbeamercolor{upper separation line head}{parent=separation line} +\setbeamercolor{middle separation line head}{parent=separation line} +\setbeamercolor{lower separation line head}{parent=separation line} + +\setbeamercolor{upper separation line foot}{parent=separation line} +\setbeamercolor{middle separation line foot}{parent=separation line} +\setbeamercolor{lower separation line foot}{parent=separation line} + +\setbeamercolor{abstract}{} +\setbeamercolor{abstract title}{parent=structure} + +\setbeamercolor{verse}{} + +\setbeamercolor{quotation}{} +\setbeamercolor{quote}{parent=quotation} + +\setbeamercolor{page number in head/foot}{fg=fg!50!bg} + +\setbeamercolor{qed symbol}{parent=structure} + +\mode + diff --git a/my_docs/18/sc18/EB_BoF_Lighting/beamerfontthemeTACC.sty b/my_docs/18/sc18/EB_BoF_Lighting/beamerfontthemeTACC.sty deleted file mode 120000 index 25bb9ea22..000000000 --- a/my_docs/18/sc18/EB_BoF_Lighting/beamerfontthemeTACC.sty +++ /dev/null @@ -1 +0,0 @@ -../../../beamer/beamerfontthemeTACC.sty \ No newline at end of file diff --git a/my_docs/18/sc18/EB_BoF_Lighting/beamerfontthemeTACC.sty b/my_docs/18/sc18/EB_BoF_Lighting/beamerfontthemeTACC.sty new file mode 100755 index 000000000..ef9ce1e5e --- /dev/null +++ b/my_docs/18/sc18/EB_BoF_Lighting/beamerfontthemeTACC.sty @@ -0,0 +1,12 @@ +% Copyright 2003 by Till Tantau +% +% This program can be redistributed and/or modified under the terms +% of the GNU Public License, version 2. + +\mode + +\setbeamerfont{frametitle}{parent=structure,size=\LARGE,series=\bfseries} +\setbeamerfont{framesubtitle}{parent=frametitle,size=\small} + +\mode + \ No newline at end of file diff --git a/my_docs/18/sc18/EB_BoF_Lighting/beamerfontthemeTACC16.sty b/my_docs/18/sc18/EB_BoF_Lighting/beamerfontthemeTACC16.sty deleted file mode 120000 index abc5b5d6c..000000000 --- a/my_docs/18/sc18/EB_BoF_Lighting/beamerfontthemeTACC16.sty +++ /dev/null @@ -1 +0,0 @@ -../../../beamer/beamerfontthemeTACC16.sty \ No newline at end of file diff --git a/my_docs/18/sc18/EB_BoF_Lighting/beamerfontthemeTACC16.sty b/my_docs/18/sc18/EB_BoF_Lighting/beamerfontthemeTACC16.sty new file mode 100755 index 000000000..b65271835 --- /dev/null +++ b/my_docs/18/sc18/EB_BoF_Lighting/beamerfontthemeTACC16.sty @@ -0,0 +1,21 @@ +% Copyright 2003 by Till Tantau +% +% This program can be redistributed and/or modified under the terms +% of the GNU Public License, version 2. + +\mode +\setbeamerfont{title}{parent=structure,size=\LARGE,series=\bfseries} +\setbeamerfont{author}{parent=structure,size=\large, series=\normalfont} +\setbeamerfont{frametitle}{parent=structure,size=\LARGE,series=\bfseries} +\setbeamerfont{framesubtitle}{parent=frametitle,size=\small} + +%\usefonttheme{professionalfonts} % using non standard fonts for beamer +%\usefonttheme{serif} % default family is serif +%\usepackage{fontspec} +%\setmainfont{Century Gothic} + +\usepackage{fontspec} +\usepackage{libertine} + +\mode + diff --git a/my_docs/18/sc18/EB_BoF_Lighting/beamerinnerthemeTACC.sty b/my_docs/18/sc18/EB_BoF_Lighting/beamerinnerthemeTACC.sty deleted file mode 120000 index 39f13a172..000000000 --- a/my_docs/18/sc18/EB_BoF_Lighting/beamerinnerthemeTACC.sty +++ /dev/null @@ -1 +0,0 @@ -../../../beamer/beamerinnerthemeTACC.sty \ No newline at end of file diff --git a/my_docs/18/sc18/EB_BoF_Lighting/beamerinnerthemeTACC.sty b/my_docs/18/sc18/EB_BoF_Lighting/beamerinnerthemeTACC.sty new file mode 100755 index 000000000..29e2bce81 --- /dev/null +++ b/my_docs/18/sc18/EB_BoF_Lighting/beamerinnerthemeTACC.sty @@ -0,0 +1,11 @@ +\mode + +\setbeamertemplate{itemize item}[circle] +\setbeamertemplate{itemize subitem}{{}--{}} +\setbeamertemplate{itemize subsubitem}[circle] +\setbeamertemplate{section in toc}{$\bullet$\hskip.5em\inserttocsection} +%\setbeamertemplate{subsection in toc}{} +\setbeamertemplate{subsubsection in toc}{} + +\mode + diff --git a/my_docs/18/sc18/EB_BoF_Lighting/beamerinnerthemeTACC16.sty b/my_docs/18/sc18/EB_BoF_Lighting/beamerinnerthemeTACC16.sty deleted file mode 120000 index dd9b03a0c..000000000 --- a/my_docs/18/sc18/EB_BoF_Lighting/beamerinnerthemeTACC16.sty +++ /dev/null @@ -1 +0,0 @@ -../../../beamer/beamerinnerthemeTACC16.sty \ No newline at end of file diff --git a/my_docs/18/sc18/EB_BoF_Lighting/beamerinnerthemeTACC16.sty b/my_docs/18/sc18/EB_BoF_Lighting/beamerinnerthemeTACC16.sty new file mode 100755 index 000000000..f7f454e1d --- /dev/null +++ b/my_docs/18/sc18/EB_BoF_Lighting/beamerinnerthemeTACC16.sty @@ -0,0 +1,11 @@ +\mode + +\setbeamertemplate{itemize item}[triangle] +\setbeamertemplate{itemize subitem}[triangle] +\setbeamertemplate{itemize subsubitem}[triangle] +\setbeamertemplate{section in toc}{$\bullet$\hskip.5em\inserttocsection} +%\setbeamertemplate{subsection in toc}{} +\setbeamertemplate{subsubsection in toc}{} + +\mode + diff --git a/my_docs/18/sc18/EB_BoF_Lighting/beamerouterthemeTACC.sty b/my_docs/18/sc18/EB_BoF_Lighting/beamerouterthemeTACC.sty deleted file mode 120000 index 374bd4f45..000000000 --- a/my_docs/18/sc18/EB_BoF_Lighting/beamerouterthemeTACC.sty +++ /dev/null @@ -1 +0,0 @@ -../../../beamer/beamerouterthemeTACC.sty \ No newline at end of file diff --git a/my_docs/18/sc18/EB_BoF_Lighting/beamerouterthemeTACC.sty b/my_docs/18/sc18/EB_BoF_Lighting/beamerouterthemeTACC.sty new file mode 100755 index 000000000..038580303 --- /dev/null +++ b/my_docs/18/sc18/EB_BoF_Lighting/beamerouterthemeTACC.sty @@ -0,0 +1,196 @@ +% Copyright 2003 by Till Tantau +% +% This program can be redistributed and/or modified under the terms +% of the GNU Public License, version 2. + +\mode + +\setbeamertemplate{frametitle}[default][center] +\addtobeamertemplate{frametitle}{\vskip 4ex minus 4ex}{} + +% Here we define what appears at the bottom of each slide: the "footline". +\setbeamertemplate{footline}{% + \leavevmode% + + % Horizontal line dividing the rest of the slide from the footer? + % hrule goes all the way across... + % \hrule height.3pt% + % With \rule, you can specify the thickness + % \rule[raise-height]{width}{thickness} + \hspace{.025\textwidth}\rule{.95\textwidth}{.5pt} + + \hbox{% + % On the left half of the footer, insert the TACC logo + \begin{minipage}{.5\textwidth}% + \hskip .033\textwidth%Give horizontal space else this will set on the left edge of the slide! + % TACC logo with custom viewport! + \includegraphics[viewport=1 -1 135 35, clip=true, width=.4\textwidth]{figures/TACC_logo} + \end{minipage} + % + \begin{minipage}{.5\textwidth}% + \vskip .023\textheight% + \raggedleft% + \setlength{\rightskip}{.033\textwidth} + % + % If we are not on the first page, insert a page number + % For some reason, insertframenumber is buggy when you have fragile + % slides with verbatim environments in them... it tends to skip numbers + % for some reason! On the other hand, the pagenumber is incremented + % for *every* slide, including transition slides... + \ifnum \thepage>1 + % \insertshorttitle + \insertframenumber + % \insertframenumber/\inserttotalframenumber + % \insertpagenumber + \else % Do a phantom of whatever you do on other pages, so spacing matches + %$\phantom{\insertshorttitle}$ + $\phantom{\insertframenumber}$ + %$\phantom{\insertframenumber/\inserttotalframenumber}$ + %$\phantom{\insertpagenumber}$ + \fi + \hfill\includegraphics[width=.5\textwidth]{figures/UT_logo}% + \end{minipage}% + }% + \vskip .023\textheight% +} + + + + +\ifTACCheadernav + +\usesectionheadtemplate +{\hfill\insertsectionhead} +{\hfill\color{fg!50!bg}\insertsectionhead} + +% Head +\ifbeamer@compress + +% Here we define how the top of the frame looks, the "headline". +\setbeamertemplate{headline} +{% + \ifnum \thepage>1 + \leavevmode% + \begin{beamercolorbox}[wd=.5\paperwidth,ht=2.5ex,dp=1.125ex]{% + section in head/foot}% + \insertsectionnavigationhorizontal{.5\paperwidth}{\hskip0pt plus1filll}{}% + \end{beamercolorbox}% + \begin{beamercolorbox}[wd=.5\paperwidth,ht=2.5ex,dp=1.125ex]{% + subsection in head/foot}% + \insertsubsectionnavigationhorizontal{% + .5\paperwidth}{}{\hskip0pt plus1filll}% + \end{beamercolorbox}% + \fi %\thepage>1 +} + +\else% Not compressed + +\setbeamertemplate{headline} +{% + \ifnum \thepage>1 + \leavevmode% + \@tempdimb=2.4375ex% + \ifnum\beamer@subsectionmax<\beamer@sectionmax% + \multiply\@tempdimb by\beamer@sectionmax% + \else% + \multiply\@tempdimb by\beamer@subsectionmax% + \fi% + \ifdim\@tempdimb>0pt% + \advance\@tempdimb by 1.125ex% + \begin{beamercolorbox}[wd=.5\paperwidth,ht=\@tempdimb]{% + section in head/foot}% + \vbox to\@tempdimb{\vfil\insertsectionnavigation{.5\paperwidth}\vfil}% + \end{beamercolorbox}% + \begin{beamercolorbox}[wd=.5\paperwidth,ht=\@tempdimb]{% + subsection in head/foot}% + \vbox to\@tempdimb{\vfil\insertsubsectionnavigation{.5\paperwidth}\vfil}% + \end{beamercolorbox}% + \fi% + \fi % \thepage>1 +} + +\fi % end if compressed +\fi % TACCheadernav + + +\ifTACCheadertree + +\setbeamertemplate{headline} +{ + \begin{beamercolorbox}[wd=\paperwidth,colsep=1.5pt + ]{upper separation line head} + \end{beamercolorbox} + % + % Place short title + % + \begin{beamercolorbox}[wd=\paperwidth,ht=2.5ex,dp=1.125ex,% + leftskip=.3cm,rightskip=.3cm plus1fil]{title in head/foot} + \usebeamerfont{title in head/foot}\insertshorttitle + \end{beamercolorbox} + + % + % Place section + % + \begin{beamercolorbox}[wd=\paperwidth,ht=2.5ex,dp=1.125ex,% + leftskip=.3cm,rightskip=.3cm plus1fil]{section in head/foot} + \usebeamerfont{section in head/foot}% + %\ifbeamer@tree@showhooks + \setbox\beamer@tempbox=\hbox{\insertsectionhead}% + \ifdim\wd\beamer@tempbox>1pt% + \hskip2pt\raise1.9pt\hbox{\vrule width0.4pt height1.875ex\vrule width 5pt height0.4pt}% + \hskip1pt% + \fi% \ifdim + %\else% + %\hskip6pt% + %\fi% \ifbeamer + \insertsectionhead + \end{beamercolorbox} + +% +% Place subsection +% +\begin{beamercolorbox}[wd=\paperwidth,ht=2.5ex,dp=1.125ex,% + leftskip=.3cm,rightskip=.3cm plus1fil]{subsection in head/foot} + \usebeamerfont{subsection in head/foot}% + %\ifbeamer@tree@showhooks + \setbox\beamer@tempbox=\hbox{\insertsubsectionhead}% + \ifdim\wd\beamer@tempbox>1pt% + \hskip9.4pt\raise1.9pt\hbox{\vrule width0.4pt height1.875ex\vrule width 5pt height0.4pt}% + \hskip1pt% + \fi% \ifdim + %\else% + %\hskip12pt% + %\fi% \ifbeamer + \insertsubsectionhead +\end{beamercolorbox} + +% +% Place final separation box +% + \begin{beamercolorbox}[wd=\paperwidth,colsep=1.5pt + ]{lower separation line head} + \end{beamercolorbox} + + % + % Another matching rule which helps to frame the content + % + \hspace{.025\textwidth}\rule{.95\textwidth}{.5pt} +} +\fi % TACCheadertree + + +% The following command suppresses all navigation symbols. This is +% necessary in the TACC theme, since it overlaps where we want the +% logo to be. +\setbeamertemplate{navigation symbols}{} + +% Align the navigation symbols vertically (still overlaps our logo!) +%\setbeamertemplate{navigation symbols}[vertical]{} + +% Only places the slide-forward and slide-back symbol, but yes, +% this still overlaps our logo! +%\setbeamertemplate{navigation symbols}[only frame symbol]{} + + +\mode + diff --git a/my_docs/18/sc18/EB_BoF_Lighting/beamerouterthemeTACC16.sty b/my_docs/18/sc18/EB_BoF_Lighting/beamerouterthemeTACC16.sty deleted file mode 120000 index 6d5f742b3..000000000 --- a/my_docs/18/sc18/EB_BoF_Lighting/beamerouterthemeTACC16.sty +++ /dev/null @@ -1 +0,0 @@ -../../../beamer/beamerouterthemeTACC16.sty \ No newline at end of file diff --git a/my_docs/18/sc18/EB_BoF_Lighting/beamerouterthemeTACC16.sty b/my_docs/18/sc18/EB_BoF_Lighting/beamerouterthemeTACC16.sty new file mode 100755 index 000000000..d5e6388c7 --- /dev/null +++ b/my_docs/18/sc18/EB_BoF_Lighting/beamerouterthemeTACC16.sty @@ -0,0 +1,312 @@ +% Antonio Gomez (agomez@tacc.utexas.edu) +% 4-20-17. Added option to put the footer on the right side + + + +\mode + +\usepackage{xcolor} +\usepackage{graphicx} +\usepackage{etoolbox} + + + +% This theme accepts the "rightfooter" option +% When used, it will put the TACC logo at the bottom of the slide on the right side +% By default, it goes to the left + +\xifaspectratio{ + {169} { + \pgfdeclareimage[width=\paperwidth]{titlebackground}{./figures/master169.jpg} + \if@rightfooterOption + \pgfdeclareimage[width=\paperwidth]{background}{./figures/secondary_right169.jpg} +\else + \pgfdeclareimage[width=\paperwidth]{background}{./figures/secondary169.jpg} +\fi +} +}[ +\pgfdeclareimage[width=\paperwidth]{titlebackground}{./figures/master.jpg} + \if@rightfooterOption + \pgfdeclareimage[width=\paperwidth]{background}{./figures/secondary_right.jpg} +\else + \pgfdeclareimage[width=\paperwidth]{background}{./figures/secondary.jpg} +\fi +] + +\setbeamertemplate{background canvas}{% +\xifaspectratio{ + {169} { + \ifnum\c@framenumber=1 % + \begin{picture}(0,0) + \put(-3,-256){% + \pgfuseimage{titlebackground} + } + \end{picture} + \else% + \begin{picture}(0,0) + \put(-3,-260){% + \pgfuseimage{background} + } + \end{picture} + \fi + } + {43} { + \ifnum\c@framenumber=1 % + \begin{picture}(0,0) + \put(-4,-274){% + \pgfuseimage{titlebackground} + } + \end{picture} + \else% + \begin{picture}(0,0) + \put(-4,-274){% + \pgfuseimage{background} + } + \end{picture} + \fi + } +} +} + + + +%\setbeamertemplate{background canvas}{% +% % On title page +% \ifnum\c@framenumber=1 % +% \begin{picture}(0,0) +% \put(0,-253){% +% \pgfuseimage{titlebackground} +% } +% \end{picture} +% +% \else% +% \xifaspectratio{ +% {169} { +% % Other frames background +% \begin{picture}(0,0) +% \put(-4,-260){% +% \pgfuseimage{background} +% } +% \end{picture} +% } +% }[ +% % Other frames background +% \begin{picture}(0,0) +% \put(-4,-274){% +% \pgfuseimage{background} +% } +% \end{picture} +% ] +% \fi% +%} + + +\setbeamertemplate{title page}{ +\vspace{40pt} +\begin{center} +\usebeamerfont{title} {\huge \inserttitle}\par +\vspace{4ex} +\usebeamerfont{author} { + \insertauthor +}\par +\vspace{2ex} +\usebeamerfont{institute}{ + \insertinstitute +} \par +\vspace{2ex} +\usebeamerfont{date}{ + \insertdate +} +\end{center} +} + + +\setbeamertemplate{frametitle}[default][center] +\setbeamertemplate{frametitle}{ + \makeatletter + \regexpatchcmd{\insertframetitle} + {(\c{usebeamertemplate}.*)\c{fi}} + {\c{NoCaseChange}\cB\{\1\cE\}\c{fi}} + {}{}% + \makeatother + \vskip1ex + \insertframetitle +} + +% Here we define what appears at the bottom of each slide: the "footline". +\setbeamertemplate{footline}{% + \leavevmode% + + % Horizontal line dividing the rest of the slide from the footer? + % hrule goes all the way across... + % \hrule height.3pt% + % With \rule, you can specify the thickness + % \rule[raise-height]{width}{thickness} + % \hspace{.025\textwidth}\rule{.95\textwidth}{.5pt} + + \hbox{% + \ifnum \thepage>1 + \if@rightfooterOption + \begin{minipage}{.2\textwidth}% + \hskip .05\textwidth%Give horizontal space else this will set on the left edge of the slide! + \end{minipage} + \else + \begin{minipage}{.4\textwidth}% + \hskip .05\textwidth%Give horizontal space else this will set on the left edge of the slide! + \end{minipage} + \fi + + + \begin{minipage}{\textwidth}% + % \vskip .023\textheight% + \raggedleft% + \setlength{\rightskip}{\textwidth} + \if@rightfooterOption + \hbox{% + \begin{beamercolorbox}[wd=0.7\textwidth,ht=2.25ex,dp=1ex,left]{author in head/foot}% + \insertshorttitle{} \hskip .01\textwidth | \hskip .01\textwidth \insertdate{} \hskip .01\textwidth | \hskip .01\textwidth \insertframenumber{} + \end{beamercolorbox}% + } + \else + \hbox{% + \begin{beamercolorbox}[wd=0.5\textwidth,ht=2.25ex,dp=1ex,left]{author in head/foot}% + \insertshorttitle{} \hskip .01\textwidth | \hskip .01\textwidth \insertdate{} \hskip .01\textwidth | \hskip .01\textwidth \insertframenumber{} + \end{beamercolorbox}% + } + \fi + + \end{minipage}% + \begin{minipage}{.05\textwidth}% + \end{minipage}% + \fi %\thepage>1 + }% + \vskip .023\textheight% + +} + + + + +\ifTACCheadernav + +\usesectionheadtemplate +{\hfill\insertsectionhead} +{\hfill\color{fg!50!bg}\insertsectionhead} + +% Head +\ifbeamer@compress + +% Here we define how the top of the frame looks, the "headline". +\setbeamertemplate{headline} +{% + \ifnum \thepage>1 + \leavevmode% + \begin{beamercolorbox}[wd=.5\paperwidth,ht=2.5ex,dp=1.125ex]{% + section in head/foot}% + \insertsectionnavigationhorizontal{.5\paperwidth}{\hskip0pt plus1filll}{}% + \end{beamercolorbox}% + \begin{beamercolorbox}[wd=.5\paperwidth,ht=2.5ex,dp=1.125ex]{% + subsection in head/foot}% + \insertsubsectionnavigationhorizontal{% + .5\paperwidth}{}{\hskip0pt plus1filll}% + \end{beamercolorbox}% + \fi %\thepage>1 +} + +\else% Not compressed + +\setbeamertemplate{headline} +{% + \ifnum \thepage>1 + \leavevmode% + \@tempdimb=2.4375ex% + \ifnum\beamer@subsectionmax<\beamer@sectionmax% + \multiply\@tempdimb by\beamer@sectionmax% + \else% + \multiply\@tempdimb by\beamer@subsectionmax% + \fi% + \ifdim\@tempdimb>0pt% + \advance\@tempdimb by 1.125ex% + \begin{beamercolorbox}[wd=.5\paperwidth,ht=\@tempdimb]{% + section in head/foot}% + \vbox to\@tempdimb{\vfil\insertsectionnavigation{.5\paperwidth}\vfil}% + \end{beamercolorbox}% + \begin{beamercolorbox}[wd=.5\paperwidth,ht=\@tempdimb]{% + subsection in head/foot}% + \vbox to\@tempdimb{\vfil\insertsubsectionnavigation{.5\paperwidth}\vfil}% + \end{beamercolorbox}% + \fi% + \fi % \thepage>1 +} + +\fi % end if compressed +\fi % TACCheadernav + + +\ifTACCheadertree + +\setbeamertemplate{headline} +{ + \begin{beamercolorbox}[wd=\paperwidth,colsep=1.5pt]{upper separation line head} + \end{beamercolorbox} + % + % Place short title + % + \begin{beamercolorbox}[wd=\paperwidth,ht=2.5ex,dp=1.125ex,% + leftskip=.3cm,rightskip=.3cm plus1fil]{title in head/foot} + \usebeamerfont{title in head/foot}\insertshorttitle + \end{beamercolorbox} + + % + % Place section + % + \begin{beamercolorbox}[wd=\paperwidth,ht=2.5ex,dp=1.125ex,% + leftskip=.3cm,rightskip=.3cm plus1fil]{section in head/foot} + \usebeamerfont{section in head/foot}% + %\ifbeamer@tree@showhooks + \setbox\beamer@tempbox=\hbox{\insertsectionhead}% + \ifdim\wd\beamer@tempbox>1pt% + \hskip2pt\raise1.9pt\hbox{\vrule width0.4pt height1.875ex\vrule width 5pt height0.4pt}% + \hskip1pt% + \fi + \insertsectionhead + \end{beamercolorbox} + +% +% Place subsection +% +\begin{beamercolorbox}[wd=\paperwidth,ht=2.5ex,dp=1.125ex,% + leftskip=.3cm,rightskip=.3cm plus1fil]{subsection in head/foot} + \usebeamerfont{subsection in head/foot}% + %\ifbeamer@tree@showhooks + \setbox\beamer@tempbox=\hbox{\insertsubsectionhead}% + \ifdim\wd\beamer@tempbox>1pt% + \hskip9.4pt\raise1.9pt\hbox{\vrule width0.4pt height1.875ex\vrule width 5pt height0.4pt}% + \hskip1pt% + \fi + \insertsubsectionhead +\end{beamercolorbox} + +% +% Place final separation box +% + \begin{beamercolorbox}[wd=\paperwidth,colsep=1.5pt + ]{lower separation line head} + \end{beamercolorbox} + + % + % Another matching rule which helps to frame the content + % + \hspace{.025\textwidth}\rule{.95\textwidth}{.5pt} +} +\fi % TACCheadertree + + +% The following command suppresses all navigation symbols. This is +% necessary in the TACC theme, since it overlaps where we want the +% logo to be. +\setbeamertemplate{navigation symbols}{} + + +\mode + diff --git a/my_docs/18/sc18/EB_BoF_Lighting/beamerthemeTACC.sty b/my_docs/18/sc18/EB_BoF_Lighting/beamerthemeTACC.sty deleted file mode 120000 index f292272c6..000000000 --- a/my_docs/18/sc18/EB_BoF_Lighting/beamerthemeTACC.sty +++ /dev/null @@ -1 +0,0 @@ -../../../beamer/beamerthemeTACC.sty \ No newline at end of file diff --git a/my_docs/18/sc18/EB_BoF_Lighting/beamerthemeTACC.sty b/my_docs/18/sc18/EB_BoF_Lighting/beamerthemeTACC.sty new file mode 100755 index 000000000..c6a1b1269 --- /dev/null +++ b/my_docs/18/sc18/EB_BoF_Lighting/beamerthemeTACC.sty @@ -0,0 +1,26 @@ +%% TACC theme for beamer + +\newif\ifTACCheadernav +\DeclareOption{headernav}{\global\TACCheadernavtrue} + +\newif\ifTACCheadertree +\DeclareOption{headertree}{\global\TACCheadertreetrue} +\ProcessOptions + +\mode + +\usefonttheme{TACC} +\usecolortheme{TACC} +\useinnertheme{TACC} +\useoutertheme{TACC} + +\mode + + +\newcommand{\event}[1]{% + \makeatletter% + \def\TACC@eventname{#1}% + \makeatother} + +\newcommand{\sectionframe}[1]{\section{#1}\frame{\Large\textbf{#1}}} +\newcommand{\subsectionframe}[1]{\subsection{#1}\frame{\large\textbf{#1}}} diff --git a/my_docs/18/sc18/EB_BoF_Lighting/beamerthemeTACC16.sty b/my_docs/18/sc18/EB_BoF_Lighting/beamerthemeTACC16.sty deleted file mode 120000 index 6cdb13570..000000000 --- a/my_docs/18/sc18/EB_BoF_Lighting/beamerthemeTACC16.sty +++ /dev/null @@ -1 +0,0 @@ -../../../beamer/beamerthemeTACC16.sty \ No newline at end of file diff --git a/my_docs/18/sc18/EB_BoF_Lighting/beamerthemeTACC16.sty b/my_docs/18/sc18/EB_BoF_Lighting/beamerthemeTACC16.sty new file mode 100755 index 000000000..b522d0207 --- /dev/null +++ b/my_docs/18/sc18/EB_BoF_Lighting/beamerthemeTACC16.sty @@ -0,0 +1,61 @@ +%% TACC theme for beamer + + +\newif\if@rightfooterOption +\@rightfooterOptionfalse +\DeclareOption{rightfooter}{\@rightfooterOptiontrue} +\ProcessOptions + + +\newif\ifTACCheadernav +\DeclareOption{headernav}{\global\TACCheadernavtrue} + +\newif\ifTACCheadertree +\DeclareOption{headertree}{\global\TACCheadertreetrue} +\ProcessOptions + +\usepackage{xparse} +\ExplSyntaxOn +\NewDocumentCommand{\ifaspectratio}{mmm} + { + % Recover the option from those passed to the class + \keys_set:nf { zunbeltz/beameroptions } { \use:c { opt@beamer.cls } } + \str_if_eq:nVTF { #1 } \l_zunbeltz_aspectratio_tl { #2 } { #3 } + } +\NewDocumentCommand{\xifaspectratio}{mO{}} + { + % Recover the option from those passed to the class + \keys_set:nf { zunbeltz/beameroptions } { \use:c { opt@beamer.cls } } + \str_case:VnF \l_zunbeltz_aspectratio_tl { #1 } { #2 } + } +% We need to define only one key, the other are treated as `unknown' +\keys_define:nn { zunbeltz/beameroptions } + { + aspectratio .tl_set:N = \l_zunbeltz_aspectratio_tl, + aspectratio .initial:n = 43, + unknown .code:n = {}, + } + +% Generate the variants we need +\cs_generate_variant:Nn \keys_set:nn { nf } +\cs_generate_variant:Nn \str_if_eq:nnTF { nV } +\cs_generate_variant:Nn \str_case:nnF { V } +\ExplSyntaxOff + +\mode + +\usefonttheme{TACC16} +\useinnertheme{TACC16} +\useoutertheme{TACC16} +\usecolortheme{TACC16} + +\mode + + +\newcommand{\event}[1]{% + \makeatletter% + \def\TACC@eventname{#1}% + \makeatother} + +\newcommand{\sectionframe}[1]{\section{#1}\frame{\Large\textbf{#1}}} +\newcommand{\subsectionframe}[1]{\subsection{#1}\frame{\large\textbf{#1}}} diff --git a/my_docs/18/sc18/EB_BoF_Lighting/figures b/my_docs/18/sc18/EB_BoF_Lighting/figures deleted file mode 120000 index 9a68d5598..000000000 --- a/my_docs/18/sc18/EB_BoF_Lighting/figures +++ /dev/null @@ -1 +0,0 @@ -../../../beamer/figures \ No newline at end of file diff --git a/my_docs/18/sc18/EB_BoF_Lighting/figures/TACC_logo.pdf b/my_docs/18/sc18/EB_BoF_Lighting/figures/TACC_logo.pdf new file mode 100755 index 000000000..c018a20cb Binary files /dev/null and b/my_docs/18/sc18/EB_BoF_Lighting/figures/TACC_logo.pdf differ diff --git a/my_docs/18/sc18/EB_BoF_Lighting/figures/UT_logo.pdf b/my_docs/18/sc18/EB_BoF_Lighting/figures/UT_logo.pdf new file mode 100755 index 000000000..d5b42e752 Binary files /dev/null and b/my_docs/18/sc18/EB_BoF_Lighting/figures/UT_logo.pdf differ diff --git a/my_docs/18/sc18/EB_BoF_Lighting/figures/cc.png b/my_docs/18/sc18/EB_BoF_Lighting/figures/cc.png new file mode 100644 index 000000000..8a532ff8f Binary files /dev/null and b/my_docs/18/sc18/EB_BoF_Lighting/figures/cc.png differ diff --git a/my_docs/18/sc18/EB_BoF_Lighting/figures/isa.png b/my_docs/18/sc18/EB_BoF_Lighting/figures/isa.png new file mode 100644 index 000000000..f95d985e7 Binary files /dev/null and b/my_docs/18/sc18/EB_BoF_Lighting/figures/isa.png differ diff --git a/my_docs/18/sc18/EB_BoF_Lighting/figures/master.jpg b/my_docs/18/sc18/EB_BoF_Lighting/figures/master.jpg new file mode 100644 index 000000000..f5c56c04a Binary files /dev/null and b/my_docs/18/sc18/EB_BoF_Lighting/figures/master.jpg differ diff --git a/my_docs/18/sc18/EB_BoF_Lighting/figures/master169.jpg b/my_docs/18/sc18/EB_BoF_Lighting/figures/master169.jpg new file mode 100644 index 000000000..b215776eb Binary files /dev/null and b/my_docs/18/sc18/EB_BoF_Lighting/figures/master169.jpg differ diff --git a/my_docs/18/sc18/EB_BoF_Lighting/figures/master169.png b/my_docs/18/sc18/EB_BoF_Lighting/figures/master169.png new file mode 100644 index 000000000..bc5c0ed12 Binary files /dev/null and b/my_docs/18/sc18/EB_BoF_Lighting/figures/master169.png differ diff --git a/my_docs/18/sc18/EB_BoF_Lighting/figures/secondary.jpg b/my_docs/18/sc18/EB_BoF_Lighting/figures/secondary.jpg new file mode 100644 index 000000000..d905a95c9 Binary files /dev/null and b/my_docs/18/sc18/EB_BoF_Lighting/figures/secondary.jpg differ diff --git a/my_docs/18/sc18/EB_BoF_Lighting/figures/secondary169.jpg b/my_docs/18/sc18/EB_BoF_Lighting/figures/secondary169.jpg new file mode 100644 index 000000000..4eb017957 Binary files /dev/null and b/my_docs/18/sc18/EB_BoF_Lighting/figures/secondary169.jpg differ diff --git a/my_docs/18/sc18/EB_BoF_Lighting/figures/secondary169.png b/my_docs/18/sc18/EB_BoF_Lighting/figures/secondary169.png new file mode 100644 index 000000000..cb9060a56 Binary files /dev/null and b/my_docs/18/sc18/EB_BoF_Lighting/figures/secondary169.png differ diff --git a/my_docs/18/sc18/EB_BoF_Lighting/figures/secondary_right.jpg b/my_docs/18/sc18/EB_BoF_Lighting/figures/secondary_right.jpg new file mode 100644 index 000000000..f25f93a58 Binary files /dev/null and b/my_docs/18/sc18/EB_BoF_Lighting/figures/secondary_right.jpg differ diff --git a/my_docs/18/sc18/EB_BoF_Lighting/figures/secondary_right169.jpg b/my_docs/18/sc18/EB_BoF_Lighting/figures/secondary_right169.jpg new file mode 100644 index 000000000..567a1078f Binary files /dev/null and b/my_docs/18/sc18/EB_BoF_Lighting/figures/secondary_right169.jpg differ diff --git a/my_docs/18/sc18/EB_BoF_Lighting/themes b/my_docs/18/sc18/EB_BoF_Lighting/themes deleted file mode 120000 index 776bbbb44..000000000 --- a/my_docs/18/sc18/EB_BoF_Lighting/themes +++ /dev/null @@ -1 +0,0 @@ -../../../beamer/themes \ No newline at end of file diff --git a/my_docs/18/sc18/EB_BoF_Lighting/themes/beamercolorthemeTACC16.sty b/my_docs/18/sc18/EB_BoF_Lighting/themes/beamercolorthemeTACC16.sty new file mode 100644 index 000000000..248ae8cb6 --- /dev/null +++ b/my_docs/18/sc18/EB_BoF_Lighting/themes/beamercolorthemeTACC16.sty @@ -0,0 +1,193 @@ +% Copyright 2003 by Till Tantau . +% +% This program can be redistributed and/or modified under the terms +% of the GNU Public License, version 2. + +\mode + +\usepackage{textcase,regexpatch} + +\setbeamertemplate{blocks}[rounded][shadow=true] + + +\definecolor{TACCred}{RGB}{180,13,29} +\definecolor{TACCorange}{RGB}{210,104,43} +\definecolor{TACCblue}{RGB}{21,77,122} +%\definecolor{TACCgreen}{RGB}{30,134,104} +\definecolor{TACCgreen}{RGB}{49,168,51} + +% I downloaded a gimp color palette from +% http://maururu.net/2007/latex-beamer-color-palette/ +% Which provides rgb values (I think) for several of the +% default beamer themes. You can open this in gimp by +% opening the Palettes dialog, right-clicking anywhere and choosing +% 'Import Palette'. A color in there called 'default added blue' +% appeared to be approximately what I wanted. It had the triple +% of values 141 145 208. If you double-click on this in the +% palette editor it gives you a bunch of information. You can't +% use these values directly to set a color...it just comes out white. +% I think definecolor is expecting something normalized by 255. Yes! + + +%%% +% Set the normal text color +%%% +\setbeamercolor{normal text}{fg=black} %,bg=white} +\setbeamercolor{example text}{fg=TACCgreen} +\setbeamercolor{alerted text}{fg=TACCorange} + + +\setbeamercolor{structure}{fg=black} +%\setbeamercolor{structure}{fg=black} + +\setbeamercolor{background canvas}{parent=normal text} +\setbeamercolor{background}{parent=background canvas} + +\setbeamercolor{palette primary}{use=structure,fg=structure.fg} +\setbeamercolor{palette secondary}{use=structure,fg=structure.fg!75!black} +\setbeamercolor{palette tertiary}{use=structure,fg=structure.fg!50!black} +\setbeamercolor{palette quaternary}{fg=black} + +\setbeamercolor{palette sidebar primary}{use=normal text,fg=normal text.fg} +\setbeamercolor{palette sidebar secondary}{use=structure,fg=structure.fg} +\setbeamercolor{palette sidebar tertiary}{use=normal text,fg=normal text.fg} +\setbeamercolor{palette sidebar quaternary}{use=structure,fg=structure.fg} + +\setbeamercolor{math text}{} +\setbeamercolor{math text inlined}{parent=math text} +\setbeamercolor{math text displayed}{parent=math text} + +\setbeamercolor{normal text in math text}{} + +\setbeamercolor{local structure}{parent=structure} + +\setbeamercolor{titlelike}{parent=structure} + +\setbeamercolor{title}{parent=titlelike} +\setbeamercolor{title in head/foot}{parent=palette quaternary} +\setbeamercolor{title in sidebar}{parent=palette sidebar quaternary} + +\setbeamercolor{subtitle}{parent=title} + +\setbeamercolor{author}{} +\setbeamercolor{author in head/foot}{parent=palette primary} +\setbeamercolor{author in sidebar}{use=palette sidebar tertiary,fg=palette sidebar tertiary.fg} + +\setbeamercolor{institute}{} +\setbeamercolor{institute in head/foot}{parent=palette tertiary} +\setbeamercolor{institute in sidebar}{use=palette sidebar tertiary,fg=palette sidebar tertiary.fg} + +\setbeamercolor{date}{} +\setbeamercolor{date in head/foot}{parent=palette secondary} +\setbeamercolor{date in sidebar}{use=palette sidebar tertiary,fg=palette sidebar tertiary.fg} + +\setbeamercolor{titlegraphic}{} + +\setbeamercolor{part name}{} +\setbeamercolor{part title}{parent=titlelike} + +\setbeamercolor{section in toc}{parent=structure} +\setbeamercolor{section in toc shaded}{parent=section in toc} +\setbeamercolor{section in head/foot}{parent=palette tertiary} +\setbeamercolor{section in sidebar}{parent=palette sidebar secondary} +\setbeamercolor{section in sidebar shaded}{use=section in sidebar,fg=section in sidebar.fg!40!bg} +\setbeamercolor{section number projected}{parent=item projected} + +\setbeamercolor{subsection in toc}{} +\setbeamercolor{subsection in toc shaded}{parent=subsection in toc} +\setbeamercolor{subsection in head/foot}{parent=palette secondary} +\setbeamercolor{subsection in sidebar}{parent=palette sidebar primary} +\setbeamercolor{subsection in sidebar shaded}{use=subsection in sidebar,fg=subsection in sidebar.fg!40!bg} +\setbeamercolor{subsection number projected}{parent={subitem projected}} + +\setbeamercolor{subsubsection in toc}{parent=subsection in toc} +\setbeamercolor{subsubsection in toc shaded}{parent=subsubsection in toc} +\setbeamercolor{subsubsection in head/foot}{parent=subsection in head/foot} +\setbeamercolor{subsubsection in sidebar}{parent=subsection in sidebar} +\setbeamercolor{subsubsection in sidebar shaded}{parent=subsection in sidebar shaded} +\setbeamercolor{subsubsection number projected}{parent=subsubitem projected} + +\setbeamercolor{headline}{} +\setbeamercolor{footline}{} + +\setbeamercolor{sidebar}{} +\setbeamercolor{sidebar left}{parent=sidebar} +\setbeamercolor{sidebar right}{parent=sidebar} + +\setbeamercolor{logo}{parent=palette secondary} + +\setbeamercolor{frametitle}{parent=titlelike} +\setbeamercolor{framesubtitle}{parent=frametitle} + +\setbeamercolor{frametitle right}{parent=frametitle} + +\setbeamercolor{caption}{} +\setbeamercolor{caption name}{parent=structure} + +\setbeamercolor{button}{use=local structure,bg=local structure.fg!50!bg,fg=white} +\setbeamercolor{button border}{use=button,fg=button.bg} +\setbeamercolor{navigation symbols}{use=structure,fg=structure.fg!40!bg} +\setbeamercolor{navigation symbols dimmed}{use=structure,fg=structure.fg!20!bg} +\setbeamercolor{mini frame}{parent=section in head/foot} + +\setbeamercolor{block body}{fg=black} +\setbeamercolor{block body alerted}{fg=black} +\setbeamercolor{block body example}{fg=black} + +\setbeamercolor{block title}{bg=TACCblue,fg=white} +\setbeamercolor{block title alerted}{bg=TACCred,fg=white} +\setbeamercolor{block title example}{bg=TACCgreen,fg=white} + +\setbeamercolor{item}{parent=local structure} +\setbeamercolor{subitem}{parent=item} +\setbeamercolor{subsubitem}{parent=subitem} + +\setbeamercolor{item projected}{parent=item,use=item,fg=black,bg=item.fg} +\setbeamercolor{subitem projected}{parent=item projected} +\setbeamercolor{subsubitem projected}{parent=subitem projected} + +\setbeamercolor{enumerate item}{parent=item} +\setbeamercolor{enumerate subitem}{parent=subitem} +\setbeamercolor{enumerate subsubitem}{parent=subsubitem} + +\setbeamercolor{itemize item}{parent=item} +\setbeamercolor{itemize subitem}{parent=subitem} +\setbeamercolor{itemize subsubitem}{parent=subsubitem} + +\setbeamercolor{itemize/enumerate body}{} +\setbeamercolor{itemize/enumerate subbody}{} +\setbeamercolor{itemize/enumerate subsubbody}{} + +\setbeamercolor{description item}{parent=item} + +\setbeamercolor{bibliography item}{parent=item} + +\setbeamercolor{bibliography entry author}{use=structure,fg=structure.fg} +\setbeamercolor{bibliography entry title}{use=normal text,fg=normal text.fg} +\setbeamercolor{bibliography entry location}{use=structure,fg=structure.fg!65!bg} +\setbeamercolor{bibliography entry note}{use=structure,fg=structure.fg!65!bg} + +\setbeamercolor{separation line}{} + +\setbeamercolor{upper separation line head}{parent=separation line} +\setbeamercolor{middle separation line head}{parent=separation line} +\setbeamercolor{lower separation line head}{parent=separation line} + +\setbeamercolor{upper separation line foot}{parent=separation line} +\setbeamercolor{middle separation line foot}{parent=separation line} +\setbeamercolor{lower separation line foot}{parent=separation line} + +\setbeamercolor{abstract}{} +\setbeamercolor{abstract title}{parent=structure} + +\setbeamercolor{verse}{} + +\setbeamercolor{quotation}{} +\setbeamercolor{quote}{parent=quotation} + +\setbeamercolor{page number in head/foot}{fg=fg!50!bg} + +\setbeamercolor{qed symbol}{parent=structure} + +\mode + diff --git a/my_docs/18/sc18/EB_BoF_Lighting/themes/beamerfontthemeTACC16.sty b/my_docs/18/sc18/EB_BoF_Lighting/themes/beamerfontthemeTACC16.sty new file mode 100644 index 000000000..d0fc325cc --- /dev/null +++ b/my_docs/18/sc18/EB_BoF_Lighting/themes/beamerfontthemeTACC16.sty @@ -0,0 +1,21 @@ +% Copyright 2003 by Till Tantau +% +% This program can be redistributed and/or modified under the terms +% of the GNU Public License, version 2. + +\mode +\setbeamerfont{title}{parent=structure,size=\LARGE,series=\bfseries} +\setbeamerfont{author}{parent=structure,size=\large, series=\normalfont} +\setbeamerfont{frametitle}{parent=structure,size=\LARGE,series=\bfseries} +\setbeamerfont{framesubtitle}{parent=frametitle,size=\small} + +%\usefonttheme{professionalfonts} % using non standard fonts for beamer +%\usefonttheme{serif} % default family is serif +%\usepackage{fontspec} +%\setmainfont{Century Gothic} + +%\usepackage{fontspec} +\usepackage{libertine} + +\mode + diff --git a/my_docs/18/sc18/EB_BoF_Lighting/themes/beamerinnerthemeTACC16.sty b/my_docs/18/sc18/EB_BoF_Lighting/themes/beamerinnerthemeTACC16.sty new file mode 100644 index 000000000..f7f454e1d --- /dev/null +++ b/my_docs/18/sc18/EB_BoF_Lighting/themes/beamerinnerthemeTACC16.sty @@ -0,0 +1,11 @@ +\mode + +\setbeamertemplate{itemize item}[triangle] +\setbeamertemplate{itemize subitem}[triangle] +\setbeamertemplate{itemize subsubitem}[triangle] +\setbeamertemplate{section in toc}{$\bullet$\hskip.5em\inserttocsection} +%\setbeamertemplate{subsection in toc}{} +\setbeamertemplate{subsubsection in toc}{} + +\mode + diff --git a/my_docs/18/sc18/EB_BoF_Lighting/themes/beamerouterthemeTACC16-169.sty b/my_docs/18/sc18/EB_BoF_Lighting/themes/beamerouterthemeTACC16-169.sty new file mode 100644 index 000000000..c62f9ed04 --- /dev/null +++ b/my_docs/18/sc18/EB_BoF_Lighting/themes/beamerouterthemeTACC16-169.sty @@ -0,0 +1,247 @@ +% Copyright 2003 by Till Tantau +% +% This program can be redistributed and/or modified under the terms +% of the GNU Public License, version 2. + +\mode + +\usepackage{xcolor} +\usepackage{graphicx} +\usepackage{etoolbox} + +\pgfdeclareimage[width=\paperwidth]{titlebackground}{./figures/master169.png} +\pgfdeclareimage[width=\paperwidth]{background}{./figures/secondary169.png} + +\setbeamertemplate{background canvas}{% + \ifnum\c@framenumber=1% + \begin{picture}(0,0) + \put(-0.15,-250){% + \pgfuseimage{titlebackground} + } + %\put(0,-130.7){% + + %\begin{minipage}[b][45mm][t]{\textwidth}%{226mm} + %\begin{center} + % \usebeamerfont{title}{\MakeTextUppercase{\inserttitle}\par} + %\vspace{2ex} + %\usebeamerfont{author}{\insertauthor} + % \end{center} + %\end{minipage} + %} + \end{picture} + % On title page + \else% + % Other frames background + \begin{picture}(0,0) + \put(-0.15,-255.55){% + \pgfuseimage{background} + } + \end{picture} + \fi% +} + + +\setbeamertemplate{title page}{ +\vspace{40pt} +\begin{center} +\usebeamerfont{title} {\huge \inserttitle}\par +\vspace{4ex} +\usebeamerfont{author} { + \insertauthor +}\par +\vspace{2ex} +\usebeamerfont{institute}{ + \insertinstitute +} \par +\vspace{2ex} +\usebeamerfont{date}{ + \insertdate +} +\end{center} +} + + +\setbeamertemplate{frametitle}[default][center] +\setbeamertemplate{frametitle}{ + \makeatletter + \regexpatchcmd{\insertframetitle} + {(\c{usebeamertemplate}.*)\c{fi}} + {\c{NoCaseChange}\cB\{\1\cE\}\c{fi}} + {}{}% + \makeatother + \vskip1ex + \insertframetitle +} + +% Here we define what appears at the bottom of each slide: the "footline". +\setbeamertemplate{footline}{% + \leavevmode% + + % Horizontal line dividing the rest of the slide from the footer? + % hrule goes all the way across... + % \hrule height.3pt% + % With \rule, you can specify the thickness + % \rule[raise-height]{width}{thickness} + % \hspace{.025\textwidth}\rule{.95\textwidth}{.5pt} + + \hbox{% + \ifnum \thepage>1 + % On the left half of the footer, insert the TACC of + \begin{minipage}{.2\textwidth}% + \hskip .05\textwidth%Give horizontal space else this will set on the left edge of the slide! + % \includegraphics[width=.8\textwidth]{TACC_logo.png} + \end{minipage} + + + \begin{minipage}{\textwidth}% + % \vskip .023\textheight% + \raggedleft% + \setlength{\rightskip}{\textwidth} + \hbox{% + \begin{beamercolorbox}[wd=0.7\textwidth,ht=2.25ex,dp=1ex,left]{author in head/foot}% + \insertshorttitle{} \hskip .01\textwidth | \hskip .01\textwidth \insertdate{} \hskip .01\textwidth | \hskip .01\textwidth \insertframenumber{} + \end{beamercolorbox}% + } + + % + % If we are not on the first page, insert a page number + % For some reason, insertframenumber is buggy when you have fragile + % slides with verbatim environments in them... it tends to skip numbers + % for some reason! On the other hand, the pagenumber is incremented + % for *every* slide, including transition slides... + % \hfill\includegraphics[width=\textwidth]{tacc_ut.png} + \end{minipage}% + \begin{minipage}{.05\textwidth}% + \end{minipage}% + \fi %\thepage>1 + }% + \vskip .023\textheight% + +} + + + + +\ifTACCheadernav + +\usesectionheadtemplate +{\hfill\insertsectionhead} +{\hfill\color{fg!50!bg}\insertsectionhead} + +% Head +\ifbeamer@compress + +% Here we define how the top of the frame looks, the "headline". +\setbeamertemplate{headline} +{% + \ifnum \thepage>1 + \leavevmode% + \begin{beamercolorbox}[wd=.5\paperwidth,ht=2.5ex,dp=1.125ex]{% + section in head/foot}% + \insertsectionnavigationhorizontal{.5\paperwidth}{\hskip0pt plus1filll}{}% + \end{beamercolorbox}% + \begin{beamercolorbox}[wd=.5\paperwidth,ht=2.5ex,dp=1.125ex]{% + subsection in head/foot}% + \insertsubsectionnavigationhorizontal{% + .5\paperwidth}{}{\hskip0pt plus1filll}% + \end{beamercolorbox}% + \fi %\thepage>1 +} + +\else% Not compressed + +\setbeamertemplate{headline} +{% + \ifnum \thepage>1 + \leavevmode% + \@tempdimb=2.4375ex% + \ifnum\beamer@subsectionmax<\beamer@sectionmax% + \multiply\@tempdimb by\beamer@sectionmax% + \else% + \multiply\@tempdimb by\beamer@subsectionmax% + \fi% + \ifdim\@tempdimb>0pt% + \advance\@tempdimb by 1.125ex% + \begin{beamercolorbox}[wd=.5\paperwidth,ht=\@tempdimb]{% + section in head/foot}% + \vbox to\@tempdimb{\vfil\insertsectionnavigation{.5\paperwidth}\vfil}% + \end{beamercolorbox}% + \begin{beamercolorbox}[wd=.5\paperwidth,ht=\@tempdimb]{% + subsection in head/foot}% + \vbox to\@tempdimb{\vfil\insertsubsectionnavigation{.5\paperwidth}\vfil}% + \end{beamercolorbox}% + \fi% + \fi % \thepage>1 +} + +\fi % end if compressed +\fi % TACCheadernav + + +\ifTACCheadertree + +\setbeamertemplate{headline} +{ + \begin{beamercolorbox}[wd=\paperwidth,colsep=1.5pt]{upper separation line head} + \end{beamercolorbox} + % + % Place short title + % + \begin{beamercolorbox}[wd=\paperwidth,ht=2.5ex,dp=1.125ex,% + leftskip=.3cm,rightskip=.3cm plus1fil]{title in head/foot} + \usebeamerfont{title in head/foot}\insertshorttitle + \end{beamercolorbox} + + % + % Place section + % + \begin{beamercolorbox}[wd=\paperwidth,ht=2.5ex,dp=1.125ex,% + leftskip=.3cm,rightskip=.3cm plus1fil]{section in head/foot} + \usebeamerfont{section in head/foot}% + %\ifbeamer@tree@showhooks + \setbox\beamer@tempbox=\hbox{\insertsectionhead}% + \ifdim\wd\beamer@tempbox>1pt% + \hskip2pt\raise1.9pt\hbox{\vrule width0.4pt height1.875ex\vrule width 5pt height0.4pt}% + \hskip1pt% + \fi + \insertsectionhead + \end{beamercolorbox} + +% +% Place subsection +% +\begin{beamercolorbox}[wd=\paperwidth,ht=2.5ex,dp=1.125ex,% + leftskip=.3cm,rightskip=.3cm plus1fil]{subsection in head/foot} + \usebeamerfont{subsection in head/foot}% + %\ifbeamer@tree@showhooks + \setbox\beamer@tempbox=\hbox{\insertsubsectionhead}% + \ifdim\wd\beamer@tempbox>1pt% + \hskip9.4pt\raise1.9pt\hbox{\vrule width0.4pt height1.875ex\vrule width 5pt height0.4pt}% + \hskip1pt% + \fi + \insertsubsectionhead +\end{beamercolorbox} + +% +% Place final separation box +% + \begin{beamercolorbox}[wd=\paperwidth,colsep=1.5pt + ]{lower separation line head} + \end{beamercolorbox} + + % + % Another matching rule which helps to frame the content + % + \hspace{.025\textwidth}\rule{.95\textwidth}{.5pt} +} +\fi % TACCheadertree + + +% The following command suppresses all navigation symbols. This is +% necessary in the TACC theme, since it overlaps where we want the +% logo to be. +\setbeamertemplate{navigation symbols}{} + + +\mode + diff --git a/my_docs/18/sc18/EB_BoF_Lighting/themes/beamerouterthemeTACC16.sty b/my_docs/18/sc18/EB_BoF_Lighting/themes/beamerouterthemeTACC16.sty new file mode 100644 index 000000000..c5b178018 --- /dev/null +++ b/my_docs/18/sc18/EB_BoF_Lighting/themes/beamerouterthemeTACC16.sty @@ -0,0 +1,247 @@ +% Copyright 2003 by Till Tantau +% +% This program can be redistributed and/or modified under the terms +% of the GNU Public License, version 2. + +\mode + +\usepackage{xcolor} +\usepackage{graphicx} +\usepackage{etoolbox} + +\pgfdeclareimage[width=\paperwidth]{titlebackground}{master.jpg} +\pgfdeclareimage[width=\paperwidth]{background}{secondary.jpg} + +\setbeamertemplate{background canvas}{% + \ifnum\c@framenumber=1% + \begin{picture}(0,0) + \put(0,-273){% + \pgfuseimage{titlebackground} + } + %\put(0,-130.7){% + + %\begin{minipage}[b][45mm][t]{\textwidth}%{226mm} + %\begin{center} + % \usebeamerfont{title}{\MakeTextUppercase{\inserttitle}\par} + %\vspace{2ex} + %\usebeamerfont{author}{\insertauthor} + % \end{center} + %\end{minipage} + %} + \end{picture} + % On title page + \else% + % Other frames background + \begin{picture}(0,0) + \put(0,-273){% + \pgfuseimage{background} + } + \end{picture} + \fi% +} + + +\setbeamertemplate{title page}{ +\vspace{40pt} +\begin{center} +\usebeamerfont{title} {\huge \inserttitle}\par +\vspace{4ex} +\usebeamerfont{author} { + \insertauthor +}\par +\vspace{2ex} +\usebeamerfont{institute}{ + \insertinstitute +} \par +\vspace{2ex} +\usebeamerfont{date}{ + \insertdate +} +\end{center} +} + + +\setbeamertemplate{frametitle}[default][center] +\setbeamertemplate{frametitle}{ + \makeatletter + \regexpatchcmd{\insertframetitle} + {(\c{usebeamertemplate}.*)\c{fi}} + {\c{NoCaseChange}\cB\{\1\cE\}\c{fi}} + {}{}% + \makeatother + \vskip1ex + \insertframetitle +} + +% Here we define what appears at the bottom of each slide: the "footline". +\setbeamertemplate{footline}{% + \leavevmode% + + % Horizontal line dividing the rest of the slide from the footer? + % hrule goes all the way across... + % \hrule height.3pt% + % With \rule, you can specify the thickness + % \rule[raise-height]{width}{thickness} + % \hspace{.025\textwidth}\rule{.95\textwidth}{.5pt} + + \hbox{% + \ifnum \thepage>1 + % On the left half of the footer, insert the TACC of + \begin{minipage}{.2\textwidth}% + \hskip .05\textwidth%Give horizontal space else this will set on the left edge of the slide! + % \includegraphics[width=.8\textwidth]{figures/TACC_logo.png} + \end{minipage} + + + \begin{minipage}{\textwidth}% + % \vskip .023\textheight% + \raggedleft% + \setlength{\rightskip}{\textwidth} + \hbox{% + \begin{beamercolorbox}[wd=0.7\textwidth,ht=2.25ex,dp=1ex,left]{author in head/foot}% + \insertshorttitle{} \hskip .01\textwidth | \hskip .01\textwidth \insertdate{} \hskip .01\textwidth | \hskip .01\textwidth \insertframenumber{} + \end{beamercolorbox}% + } + + % + % If we are not on the first page, insert a page number + % For some reason, insertframenumber is buggy when you have fragile + % slides with verbatim environments in them... it tends to skip numbers + % for some reason! On the other hand, the pagenumber is incremented + % for *every* slide, including transition slides... + % \hfill\includegraphics[width=\textwidth]{figures/tacc_ut.png} + \end{minipage}% + \begin{minipage}{.05\textwidth}% + \end{minipage}% + \fi %\thepage>1 + }% + \vskip .023\textheight% + +} + + + + +\ifTACCheadernav + +\usesectionheadtemplate +{\hfill\insertsectionhead} +{\hfill\color{fg!50!bg}\insertsectionhead} + +% Head +\ifbeamer@compress + +% Here we define how the top of the frame looks, the "headline". +\setbeamertemplate{headline} +{% + \ifnum \thepage>1 + \leavevmode% + \begin{beamercolorbox}[wd=.5\paperwidth,ht=2.5ex,dp=1.125ex]{% + section in head/foot}% + \insertsectionnavigationhorizontal{.5\paperwidth}{\hskip0pt plus1filll}{}% + \end{beamercolorbox}% + \begin{beamercolorbox}[wd=.5\paperwidth,ht=2.5ex,dp=1.125ex]{% + subsection in head/foot}% + \insertsubsectionnavigationhorizontal{% + .5\paperwidth}{}{\hskip0pt plus1filll}% + \end{beamercolorbox}% + \fi %\thepage>1 +} + +\else% Not compressed + +\setbeamertemplate{headline} +{% + \ifnum \thepage>1 + \leavevmode% + \@tempdimb=2.4375ex% + \ifnum\beamer@subsectionmax<\beamer@sectionmax% + \multiply\@tempdimb by\beamer@sectionmax% + \else% + \multiply\@tempdimb by\beamer@subsectionmax% + \fi% + \ifdim\@tempdimb>0pt% + \advance\@tempdimb by 1.125ex% + \begin{beamercolorbox}[wd=.5\paperwidth,ht=\@tempdimb]{% + section in head/foot}% + \vbox to\@tempdimb{\vfil\insertsectionnavigation{.5\paperwidth}\vfil}% + \end{beamercolorbox}% + \begin{beamercolorbox}[wd=.5\paperwidth,ht=\@tempdimb]{% + subsection in head/foot}% + \vbox to\@tempdimb{\vfil\insertsubsectionnavigation{.5\paperwidth}\vfil}% + \end{beamercolorbox}% + \fi% + \fi % \thepage>1 +} + +\fi % end if compressed +\fi % TACCheadernav + + +\ifTACCheadertree + +\setbeamertemplate{headline} +{ + \begin{beamercolorbox}[wd=\paperwidth,colsep=1.5pt]{upper separation line head} + \end{beamercolorbox} + % + % Place short title + % + \begin{beamercolorbox}[wd=\paperwidth,ht=2.5ex,dp=1.125ex,% + leftskip=.3cm,rightskip=.3cm plus1fil]{title in head/foot} + \usebeamerfont{title in head/foot}\insertshorttitle + \end{beamercolorbox} + + % + % Place section + % + \begin{beamercolorbox}[wd=\paperwidth,ht=2.5ex,dp=1.125ex,% + leftskip=.3cm,rightskip=.3cm plus1fil]{section in head/foot} + \usebeamerfont{section in head/foot}% + %\ifbeamer@tree@showhooks + \setbox\beamer@tempbox=\hbox{\insertsectionhead}% + \ifdim\wd\beamer@tempbox>1pt% + \hskip2pt\raise1.9pt\hbox{\vrule width0.4pt height1.875ex\vrule width 5pt height0.4pt}% + \hskip1pt% + \fi + \insertsectionhead + \end{beamercolorbox} + +% +% Place subsection +% +\begin{beamercolorbox}[wd=\paperwidth,ht=2.5ex,dp=1.125ex,% + leftskip=.3cm,rightskip=.3cm plus1fil]{subsection in head/foot} + \usebeamerfont{subsection in head/foot}% + %\ifbeamer@tree@showhooks + \setbox\beamer@tempbox=\hbox{\insertsubsectionhead}% + \ifdim\wd\beamer@tempbox>1pt% + \hskip9.4pt\raise1.9pt\hbox{\vrule width0.4pt height1.875ex\vrule width 5pt height0.4pt}% + \hskip1pt% + \fi + \insertsubsectionhead +\end{beamercolorbox} + +% +% Place final separation box +% + \begin{beamercolorbox}[wd=\paperwidth,colsep=1.5pt + ]{lower separation line head} + \end{beamercolorbox} + + % + % Another matching rule which helps to frame the content + % + \hspace{.025\textwidth}\rule{.95\textwidth}{.5pt} +} +\fi % TACCheadertree + + +% The following command suppresses all navigation symbols. This is +% necessary in the TACC theme, since it overlaps where we want the +% logo to be. +\setbeamertemplate{navigation symbols}{} + + +\mode + diff --git a/my_docs/18/sc18/EB_BoF_Lighting/themes/beamerthemeTACC16-169.sty b/my_docs/18/sc18/EB_BoF_Lighting/themes/beamerthemeTACC16-169.sty new file mode 100644 index 000000000..22caf9a05 --- /dev/null +++ b/my_docs/18/sc18/EB_BoF_Lighting/themes/beamerthemeTACC16-169.sty @@ -0,0 +1,38 @@ +%% TACC theme for beamer + +\newif\ifTACCheadernav +\DeclareOption{headernav}{\global\TACCheadernavtrue} + +\newif\ifTACCheadertree +\DeclareOption{headertree}{\global\TACCheadertreetrue} +\ProcessOptions + +\mode + +\makeatletter + \def\beamer@calltheme#1#2#3{% + \def\beamer@themelist{#2} + \@for\beamer@themename:=\beamer@themelist\do + {\usepackage[{#1}]{\beamer@themelocation/#3\beamer@themename}}} + + \def\usefolder#1{ + \def\beamer@themelocation{#1} + } + \def\beamer@themelocation{} + +\usefolder{themes} +\usefonttheme{TACC16} +\useinnertheme{TACC16} +\useoutertheme{TACC16-169} +\usecolortheme{TACC16} + +\mode + + +\newcommand{\event}[1]{% + \makeatletter% + \def\TACC@eventname{#1}% + \makeatother} + +\newcommand{\sectionframe}[1]{\section{#1}\frame{\Large\textbf{#1}}} +\newcommand{\subsectionframe}[1]{\subsection{#1}\frame{\large\textbf{#1}}} diff --git a/my_docs/18/sc18/EB_BoF_Lighting/themes/beamerthemeTACC16.sty b/my_docs/18/sc18/EB_BoF_Lighting/themes/beamerthemeTACC16.sty new file mode 100644 index 000000000..750bdd388 --- /dev/null +++ b/my_docs/18/sc18/EB_BoF_Lighting/themes/beamerthemeTACC16.sty @@ -0,0 +1,26 @@ +%% TACC theme for beamer + +\newif\ifTACCheadernav +\DeclareOption{headernav}{\global\TACCheadernavtrue} + +\newif\ifTACCheadertree +\DeclareOption{headertree}{\global\TACCheadertreetrue} +\ProcessOptions + +\mode + +\usefonttheme{TACC16} +\useinnertheme{TACC16} +\useoutertheme{TACC16} +\usecolortheme{TACC16} + +\mode + + +\newcommand{\event}[1]{% + \makeatletter% + \def\TACC@eventname{#1}% + \makeatother} + +\newcommand{\sectionframe}[1]{\section{#1}\frame{\Large\textbf{#1}}} +\newcommand{\subsectionframe}[1]{\subsection{#1}\frame{\large\textbf{#1}}} diff --git a/my_docs/18/sc18/EB_BoF_Lighting/themes/example.pdf b/my_docs/18/sc18/EB_BoF_Lighting/themes/example.pdf new file mode 100644 index 000000000..add373eee Binary files /dev/null and b/my_docs/18/sc18/EB_BoF_Lighting/themes/example.pdf differ diff --git a/my_docs/18/sc18/EB_BoF_Lighting/themes/license.tex b/my_docs/18/sc18/EB_BoF_Lighting/themes/license.tex new file mode 100644 index 000000000..74ff86759 --- /dev/null +++ b/my_docs/18/sc18/EB_BoF_Lighting/themes/license.tex @@ -0,0 +1,14 @@ + +\begin{frame}{License} +\footnotesize +\textcopyright The University of Texas at Austin, \the\year\\ +\vspace{0.5 cm} +This work is licensed under the Creative Commons Attribution Non-Commercial 3.0 Unported License. To view a copy of this license, +visit http://creativecommons.org/licenses/by-nc/3.0/\\ +\vspace{0.5 cm} +When attributing this work, please use the following text: +"Designing and Administering Large-scale Systems", Texas Advanced Computing Center, \the\year. Available under a Creative Commons Attribution Non-Commercial 3.0 Unported License. +\newline +\newline +\includegraphics[width=1cm]{./figures/cc.png} +\end{frame} \ No newline at end of file diff --git a/my_docs/18/sc18/booth/beamercolorthemeTACC.sty b/my_docs/18/sc18/booth/beamercolorthemeTACC.sty deleted file mode 120000 index c03d8d59c..000000000 --- a/my_docs/18/sc18/booth/beamercolorthemeTACC.sty +++ /dev/null @@ -1 +0,0 @@ -../../../beamer/beamercolorthemeTACC.sty \ No newline at end of file diff --git a/my_docs/18/sc18/booth/beamercolorthemeTACC.sty b/my_docs/18/sc18/booth/beamercolorthemeTACC.sty new file mode 100755 index 000000000..78beb6a4a --- /dev/null +++ b/my_docs/18/sc18/booth/beamercolorthemeTACC.sty @@ -0,0 +1,323 @@ +% Copyright 2003 by Till Tantau . +% +% This program can be redistributed and/or modified under the terms +% of the GNU Public License, version 2. + +\mode + +% I downloaded a gimp color palette from +% http://maururu.net/2007/latex-beamer-color-palette/ +% Which provides rgb values (I think) for several of the +% default beamer themes. You can open this in gimp by +% opening the Palettes dialog, right-clicking anywhere and choosing +% 'Import Palette'. A color in there called 'default added blue' +% appeared to be approximately what I wanted. It had the triple +% of values 141 145 208. If you double-click on this in the +% palette editor it gives you a bunch of information. You can't +% use these values directly to set a color...it just comes out white. +% I think definecolor is expecting something normalized by 255. Yes! + + +% bluish colors +\definecolor{defaddedblue}{rgb}{0.5529,.5686,.8157} % 141,145,208 +\definecolor{defblockheader}{rgb}{.1921,.2235,.6824} % 49,57,174 +\definecolor{flyaddedblue}{rgb}{.5961,.6118,.8431} % 152,156,215 + +% bluish-greys +\definecolor{beetleaddedblue1}{rgb}{.3333,.4039,.6196} % 85 103 158, dark +\definecolor{beetleaddedblue2}{rgb}{.4510,.5098,.7020} % 115 130 179, medium +\definecolor{beetleaddedblue3}{rgb}{.7059,.7255,.7961} % 180 185 203, light (greyest) + +% very light blue-greys +\definecolor{deflightouter1}{rgb}{.7608,.7647,.9020} % 194 195 230, dark +\definecolor{deflightouter2}{rgb}{.8 ,.8039,.9176} % 204 205 234, medium +\definecolor{deflightouter3}{rgb}{.8392,.8431,.9373} % 214 215 239, light + +% reddish colors +\definecolor{flyalertblockheader}{rgb}{.7373,.1294,.1333} % 188 33 34 +\definecolor{flyaddedred}{rgb}{.8667,.5647,.5647}% 221 144 144 +\definecolor{beaverouterframe}{rgb}{.5529,.0980,.0980}% 141 25 25 + +% greens (green is used for 'examples' in beamer) +\definecolor{defexblock}{rgb}{.9098,.9333,.9020} % 232 238 230, light +\definecolor{defaddedgreen}{rgb}{.5412,.6510,.4706} % 138 166 120, medium +\definecolor{defexblockheader}{rgb}{.1686,.3647,.0392} % 43 93 10, dark + +\definecolor{lightexblock}{rgb}{.9137,.9451,.9020} % 233 241 230, light +\definecolor{lightexblockheader}{rgb}{.8235,.8980,.8} % 210 229 204, medium +\definecolor{lightexblockheadertext}{rgb}{.2431,.5098,.0745} % 62 130 19, dark + + +%%% +% Set the normal text color +%%% +\setbeamercolor{normal text}{fg=black,bg=white} + +%%% +% Set the alerted text color +%%% +% \setbeamercolor{alerted text}{fg=red} +\setbeamercolor{alerted text}{fg=red!50!black} % half black/half red for green bg +% \setbeamercolor{alerted text}{fg=beaverouterframe} +% \setbeamercolor{alerted text}{fg=defblockheader} % doesn't stand out enough + + +% Set the 'example' text +\setbeamercolor{example text}{fg=green!50!black} + +\setbeamercolor{structure}{fg=black} + +\setbeamercolor{background canvas}{parent=normal text} +\setbeamercolor{background}{parent=background canvas} + +\setbeamercolor{palette primary}{use=structure,fg=structure.fg} +\setbeamercolor{palette secondary}{use=structure,fg=structure.fg!75!black} +\setbeamercolor{palette tertiary}{use=structure,fg=structure.fg!50!black} +\setbeamercolor{palette quaternary}{fg=black} + +\setbeamercolor{palette sidebar primary}{use=normal text,fg=normal text.fg} +\setbeamercolor{palette sidebar secondary}{use=structure,fg=structure.fg} +\setbeamercolor{palette sidebar tertiary}{use=normal text,fg=normal text.fg} +\setbeamercolor{palette sidebar quaternary}{use=structure,fg=structure.fg} + +\setbeamercolor{math text}{} +\setbeamercolor{math text inlined}{parent=math text} +\setbeamercolor{math text displayed}{parent=math text} + +\setbeamercolor{normal text in math text}{} + +\setbeamercolor{local structure}{parent=structure} + +\setbeamercolor{titlelike}{parent=structure} + +\setbeamercolor{title}{parent=titlelike} +\setbeamercolor{title in head/foot}{parent=palette quaternary} +\setbeamercolor{title in sidebar}{parent=palette sidebar quaternary} + +\setbeamercolor{subtitle}{parent=title} + +\setbeamercolor{author}{} +\setbeamercolor{author in head/foot}{parent=palette primary} +\setbeamercolor{author in sidebar}{use=palette sidebar tertiary,fg=palette sidebar tertiary.fg} + +\setbeamercolor{institute}{} +\setbeamercolor{institute in head/foot}{parent=palette tertiary} +\setbeamercolor{institute in sidebar}{use=palette sidebar tertiary,fg=palette sidebar tertiary.fg} + +\setbeamercolor{date}{} +\setbeamercolor{date in head/foot}{parent=palette secondary} +\setbeamercolor{date in sidebar}{use=palette sidebar tertiary,fg=palette sidebar tertiary.fg} + +\setbeamercolor{titlegraphic}{} + +\setbeamercolor{part name}{} +\setbeamercolor{part title}{parent=titlelike} + +\setbeamercolor{section in toc}{parent=structure} +\setbeamercolor{section in toc shaded}{parent=section in toc} +\setbeamercolor{section in head/foot}{parent=palette tertiary} +\setbeamercolor{section in sidebar}{parent=palette sidebar secondary} +\setbeamercolor{section in sidebar shaded}{use=section in sidebar,fg=section in sidebar.fg!40!bg} +\setbeamercolor{section number projected}{parent=item projected} + +\setbeamercolor{subsection in toc}{} +\setbeamercolor{subsection in toc shaded}{parent=subsection in toc} +\setbeamercolor{subsection in head/foot}{parent=palette secondary} +\setbeamercolor{subsection in sidebar}{parent=palette sidebar primary} +\setbeamercolor{subsection in sidebar shaded}{use=subsection in sidebar,fg=subsection in sidebar.fg!40!bg} +\setbeamercolor{subsection number projected}{parent={subitem projected}} + +\setbeamercolor{subsubsection in toc}{parent=subsection in toc} +\setbeamercolor{subsubsection in toc shaded}{parent=subsubsection in toc} +\setbeamercolor{subsubsection in head/foot}{parent=subsection in head/foot} +\setbeamercolor{subsubsection in sidebar}{parent=subsection in sidebar} +\setbeamercolor{subsubsection in sidebar shaded}{parent=subsection in sidebar shaded} +\setbeamercolor{subsubsection number projected}{parent=subsubitem projected} + +\setbeamercolor{headline}{} +\setbeamercolor{footline}{} + +\setbeamercolor{sidebar}{} +\setbeamercolor{sidebar left}{parent=sidebar} +\setbeamercolor{sidebar right}{parent=sidebar} + +\setbeamercolor{logo}{parent=palette secondary} + +\setbeamercolor{frametitle}{parent=titlelike} +\setbeamercolor{framesubtitle}{parent=frametitle} + +\setbeamercolor{frametitle right}{parent=frametitle} + +\setbeamercolor{caption}{} +\setbeamercolor{caption name}{parent=structure} + +\setbeamercolor{button}{use=local structure,bg=local structure.fg!50!bg,fg=white} +\setbeamercolor{button border}{use=button,fg=button.bg} +\setbeamercolor{navigation symbols}{use=structure,fg=structure.fg!40!bg} +\setbeamercolor{navigation symbols dimmed}{use=structure,fg=structure.fg!20!bg} +\setbeamercolor{mini frame}{parent=section in head/foot} + +% Color expressions are defined in the xcolor package +% +% Ex: Mixture of 40% green, 60% yellow: green!40!yellow +% +% The complement of any color can be obtained by prepending +% a minus sign: -green!40!yellow +% +% One can also combine up to three colors (in differing proportions) +% using the rgb command. For example, the following command combines +% 3 parts of the first color, with 2 parts of the second, and one part +% "red" +% +%\color{rgb:-green!40!yellow,3;green!40!yellow,2;red,1} +% Unfortunately, I don't think this works as an argument to setbeamercolor... +% "Orange" bg=green!30!yellow!30!red +% close to burnt orange: red!75!green +% lightgray is a color, but gray!25!white looks better +% +% A nice pair of greens +% (dark, a little too dark to be under black text...) -red!75!green!50!blue!25 +% (light) -red!75!green!50!blue!25!gray +% +% Some colors are only available via options to the xcolor package, eg. +% x11names,DarkOliveGreen4 +% svgnames, Chartreuse +% dvipsnames, ForestGreen +% +% but beamer does not seem to have any of these. +% +% The base color names which are always available are: +% black +% blue +% brown +% cyan +% darkgray +% gray +% green +% lightgray +% lime +% magenta +% olive +% orange +% pink +% purple +% red +% teal +% violet +% white +% yellow + +% From the beamer user guide, pg. 167 +% Inner color themes only specify the colors of elements used in inner +% themes. Most noticably, they specify the colors used for blocks. +% ... + +% Example color definition +% beamercolorthemedefault.sty:\definecolor{beamer@blendedblue}{rgb}{0.2,0.2,0.7} +% beamercolorthemedefault.sty:\setbeamercolor{structure}{fg=beamer@blendedblue} + +% The greens +% \setbeamercolor{block body}{bg=-red!75!green!50!blue!25!gray} +% \setbeamercolor{block title}{parent=structure,bg=-red!75!green!50!blue!25,fg=-red!75!green!50!blue!25!gray} + +%%% +% Set the block body and title background/foreground colors +%%% +% \setbeamercolor{block body}{bg=flyaddedblue} +% \setbeamercolor{block title}{bg=defblockheader,fg=flyaddedblue} + +% Purplish blues, too dark overall +% \setbeamercolor{block body}{bg=beetleaddedblue3} +% \setbeamercolor{block title}{bg=beetleaddedblue2,fg=beetleaddedblue3} + +% Very light blue greys +% 1. Not enough contrast +% \setbeamercolor{block body}{bg=deflightouter3} +% \setbeamercolor{block title}{bg=deflightouter2,fg=deflightouter3} + +% 2. Not enough contrast +% \setbeamercolor{block body}{bg=deflightouter3} +% \setbeamercolor{block title}{bg=deflightouter1,fg=deflightouter3} + +% 3. Combination of deflightouter and fly. The block bg is +% lighter than the all-beetle color scheme I previously thought was best. +% Currently I like this one the best +\setbeamercolor{block body}{bg=deflightouter3} +\setbeamercolor{block title}{bg=beetleaddedblue2,fg=deflightouter3} + +% 4. Greens. Looks like a highlighter. I don't really trust greens +% on projectors... It's almost too bright/hurts your eyes. +% \setbeamercolor{block body}{bg=defexblock} +% \setbeamercolor{block title}{bg=defaddedgreen,fg=defexblock} + +% This looks pretty good ... it's similar to the greens we had before +% but should be lighter. The blocks are just a little too "mint" colored +% though... +% \setbeamercolor{block body}{bg=defexblock} +% \setbeamercolor{block title}{bg=defexblockheader,fg=defexblock} + +% Pea Soup! +%\setbeamercolor{block body}{bg=defaddedgreen} +%\setbeamercolor{block title}{bg=defexblockheader,fg=defaddedgreen} + + +% Changing these didn't seem to do anything...I had to change the +% 'alerted text' color instead +\setbeamercolor{block body alerted}{} +\setbeamercolor{block body example}{} +\setbeamercolor{block title alerted}{parent=alerted text} +\setbeamercolor{block title example}{parent=example text} + +\setbeamercolor{item}{parent=local structure} +\setbeamercolor{subitem}{parent=item} +\setbeamercolor{subsubitem}{parent=subitem} + +\setbeamercolor{item projected}{parent=item,use=item,fg=white,bg=item.fg} +\setbeamercolor{subitem projected}{parent=item projected} +\setbeamercolor{subsubitem projected}{parent=subitem projected} + +\setbeamercolor{enumerate item}{parent=item} +\setbeamercolor{enumerate subitem}{parent=subitem} +\setbeamercolor{enumerate subsubitem}{parent=subsubitem} + +\setbeamercolor{itemize item}{parent=item} +\setbeamercolor{itemize subitem}{parent=subitem} +\setbeamercolor{itemize subsubitem}{parent=subsubitem} + +\setbeamercolor{itemize/enumerate body}{} +\setbeamercolor{itemize/enumerate subbody}{} +\setbeamercolor{itemize/enumerate subsubbody}{} + +\setbeamercolor{description item}{parent=item} + +\setbeamercolor{bibliography item}{parent=item} + +\setbeamercolor{bibliography entry author}{use=structure,fg=structure.fg} +\setbeamercolor{bibliography entry title}{use=normal text,fg=normal text.fg} +\setbeamercolor{bibliography entry location}{use=structure,fg=structure.fg!65!bg} +\setbeamercolor{bibliography entry note}{use=structure,fg=structure.fg!65!bg} + +\setbeamercolor{separation line}{} + +\setbeamercolor{upper separation line head}{parent=separation line} +\setbeamercolor{middle separation line head}{parent=separation line} +\setbeamercolor{lower separation line head}{parent=separation line} + +\setbeamercolor{upper separation line foot}{parent=separation line} +\setbeamercolor{middle separation line foot}{parent=separation line} +\setbeamercolor{lower separation line foot}{parent=separation line} + +\setbeamercolor{abstract}{} +\setbeamercolor{abstract title}{parent=structure} + +\setbeamercolor{verse}{} + +\setbeamercolor{quotation}{} +\setbeamercolor{quote}{parent=quotation} + +\setbeamercolor{page number in head/foot}{fg=fg!50!bg} + +\setbeamercolor{qed symbol}{parent=structure} + +\mode + diff --git a/my_docs/18/sc18/booth/beamercolorthemeTACC16.sty b/my_docs/18/sc18/booth/beamercolorthemeTACC16.sty deleted file mode 120000 index e5e16b765..000000000 --- a/my_docs/18/sc18/booth/beamercolorthemeTACC16.sty +++ /dev/null @@ -1 +0,0 @@ -../../../beamer/beamercolorthemeTACC16.sty \ No newline at end of file diff --git a/my_docs/18/sc18/booth/beamercolorthemeTACC16.sty b/my_docs/18/sc18/booth/beamercolorthemeTACC16.sty new file mode 100755 index 000000000..779dde91f --- /dev/null +++ b/my_docs/18/sc18/booth/beamercolorthemeTACC16.sty @@ -0,0 +1,192 @@ +% Copyright 2003 by Till Tantau . +% +% This program can be redistributed and/or modified under the terms +% of the GNU Public License, version 2. + +\mode + +\usepackage{textcase,regexpatch} + +\setbeamertemplate{blocks}[rounded][shadow=true] + + +\definecolor{TACCred}{RGB}{180,13,29} +\definecolor{TACCorange}{RGB}{210,104,43} +\definecolor{TACCblue}{RGB}{108, 134, 191} +\definecolor{TACCgreen}{RGB}{23,106,70} + +% I downloaded a gimp color palette from +% http://maururu.net/2007/latex-beamer-color-palette/ +% Which provides rgb values (I think) for several of the +% default beamer themes. You can open this in gimp by +% opening the Palettes dialog, right-clicking anywhere and choosing +% 'Import Palette'. A color in there called 'default added blue' +% appeared to be approximately what I wanted. It had the triple +% of values 141 145 208. If you double-click on this in the +% palette editor it gives you a bunch of information. You can't +% use these values directly to set a color...it just comes out white. +% I think definecolor is expecting something normalized by 255. Yes! + + +%%% +% Set the normal text color +%%% +\setbeamercolor{normal text}{fg=black} %,bg=white} +\setbeamercolor{example text}{fg=TACCgreen} +\setbeamercolor{alerted text}{fg=TACCorange} + + +\setbeamercolor{structure}{fg=black} +%\setbeamercolor{structure}{fg=black} + +\setbeamercolor{background canvas}{parent=normal text} +\setbeamercolor{background}{parent=background canvas} + +\setbeamercolor{palette primary}{use=structure,fg=structure.fg} +\setbeamercolor{palette secondary}{use=structure,fg=structure.fg!75!black} +\setbeamercolor{palette tertiary}{use=structure,fg=structure.fg!50!black} +\setbeamercolor{palette quaternary}{fg=black} + +\setbeamercolor{palette sidebar primary}{use=normal text,fg=normal text.fg} +\setbeamercolor{palette sidebar secondary}{use=structure,fg=structure.fg} +\setbeamercolor{palette sidebar tertiary}{use=normal text,fg=normal text.fg} +\setbeamercolor{palette sidebar quaternary}{use=structure,fg=structure.fg} + +\setbeamercolor{math text}{} +\setbeamercolor{math text inlined}{parent=math text} +\setbeamercolor{math text displayed}{parent=math text} + +\setbeamercolor{normal text in math text}{} + +\setbeamercolor{local structure}{parent=structure} + +\setbeamercolor{titlelike}{parent=structure} + +\setbeamercolor{title}{parent=titlelike} +\setbeamercolor{title in head/foot}{parent=palette quaternary} +\setbeamercolor{title in sidebar}{parent=palette sidebar quaternary} + +\setbeamercolor{subtitle}{parent=title} + +\setbeamercolor{author}{} +\setbeamercolor{author in head/foot}{parent=palette primary} +\setbeamercolor{author in sidebar}{use=palette sidebar tertiary,fg=palette sidebar tertiary.fg} + +\setbeamercolor{institute}{} +\setbeamercolor{institute in head/foot}{parent=palette tertiary} +\setbeamercolor{institute in sidebar}{use=palette sidebar tertiary,fg=palette sidebar tertiary.fg} + +\setbeamercolor{date}{} +\setbeamercolor{date in head/foot}{parent=palette secondary} +\setbeamercolor{date in sidebar}{use=palette sidebar tertiary,fg=palette sidebar tertiary.fg} + +\setbeamercolor{titlegraphic}{} + +\setbeamercolor{part name}{} +\setbeamercolor{part title}{parent=titlelike} + +\setbeamercolor{section in toc}{parent=structure} +\setbeamercolor{section in toc shaded}{parent=section in toc} +\setbeamercolor{section in head/foot}{parent=palette tertiary} +\setbeamercolor{section in sidebar}{parent=palette sidebar secondary} +\setbeamercolor{section in sidebar shaded}{use=section in sidebar,fg=section in sidebar.fg!40!bg} +\setbeamercolor{section number projected}{parent=item projected} + +\setbeamercolor{subsection in toc}{} +\setbeamercolor{subsection in toc shaded}{parent=subsection in toc} +\setbeamercolor{subsection in head/foot}{parent=palette secondary} +\setbeamercolor{subsection in sidebar}{parent=palette sidebar primary} +\setbeamercolor{subsection in sidebar shaded}{use=subsection in sidebar,fg=subsection in sidebar.fg!40!bg} +\setbeamercolor{subsection number projected}{parent={subitem projected}} + +\setbeamercolor{subsubsection in toc}{parent=subsection in toc} +\setbeamercolor{subsubsection in toc shaded}{parent=subsubsection in toc} +\setbeamercolor{subsubsection in head/foot}{parent=subsection in head/foot} +\setbeamercolor{subsubsection in sidebar}{parent=subsection in sidebar} +\setbeamercolor{subsubsection in sidebar shaded}{parent=subsection in sidebar shaded} +\setbeamercolor{subsubsection number projected}{parent=subsubitem projected} + +\setbeamercolor{headline}{} +\setbeamercolor{footline}{} + +\setbeamercolor{sidebar}{} +\setbeamercolor{sidebar left}{parent=sidebar} +\setbeamercolor{sidebar right}{parent=sidebar} + +\setbeamercolor{logo}{parent=palette secondary} + +\setbeamercolor{frametitle}{parent=titlelike} +\setbeamercolor{framesubtitle}{parent=frametitle} + +\setbeamercolor{frametitle right}{parent=frametitle} + +\setbeamercolor{caption}{} +\setbeamercolor{caption name}{parent=structure} + +\setbeamercolor{button}{use=local structure,bg=local structure.fg!50!bg,fg=white} +\setbeamercolor{button border}{use=button,fg=button.bg} +\setbeamercolor{navigation symbols}{use=structure,fg=structure.fg!40!bg} +\setbeamercolor{navigation symbols dimmed}{use=structure,fg=structure.fg!20!bg} +\setbeamercolor{mini frame}{parent=section in head/foot} + +\setbeamercolor{block body}{fg=black} +\setbeamercolor{block body alerted}{fg=black} +\setbeamercolor{block body example}{fg=black} + +\setbeamercolor{block title}{bg=TACCblue,fg=white} +\setbeamercolor{block title alerted}{bg=TACCred,fg=white} +\setbeamercolor{block title example}{bg=TACCgreen,fg=white} + +\setbeamercolor{item}{parent=local structure} +\setbeamercolor{subitem}{parent=item} +\setbeamercolor{subsubitem}{parent=subitem} + +\setbeamercolor{item projected}{parent=item,use=item,fg=black,bg=item.fg} +\setbeamercolor{subitem projected}{parent=item projected} +\setbeamercolor{subsubitem projected}{parent=subitem projected} + +\setbeamercolor{enumerate item}{parent=item} +\setbeamercolor{enumerate subitem}{parent=subitem} +\setbeamercolor{enumerate subsubitem}{parent=subsubitem} + +\setbeamercolor{itemize item}{parent=item} +\setbeamercolor{itemize subitem}{parent=subitem} +\setbeamercolor{itemize subsubitem}{parent=subsubitem} + +\setbeamercolor{itemize/enumerate body}{} +\setbeamercolor{itemize/enumerate subbody}{} +\setbeamercolor{itemize/enumerate subsubbody}{} + +\setbeamercolor{description item}{parent=item} + +\setbeamercolor{bibliography item}{parent=item} + +\setbeamercolor{bibliography entry author}{use=structure,fg=structure.fg} +\setbeamercolor{bibliography entry title}{use=normal text,fg=normal text.fg} +\setbeamercolor{bibliography entry location}{use=structure,fg=structure.fg!65!bg} +\setbeamercolor{bibliography entry note}{use=structure,fg=structure.fg!65!bg} + +\setbeamercolor{separation line}{} + +\setbeamercolor{upper separation line head}{parent=separation line} +\setbeamercolor{middle separation line head}{parent=separation line} +\setbeamercolor{lower separation line head}{parent=separation line} + +\setbeamercolor{upper separation line foot}{parent=separation line} +\setbeamercolor{middle separation line foot}{parent=separation line} +\setbeamercolor{lower separation line foot}{parent=separation line} + +\setbeamercolor{abstract}{} +\setbeamercolor{abstract title}{parent=structure} + +\setbeamercolor{verse}{} + +\setbeamercolor{quotation}{} +\setbeamercolor{quote}{parent=quotation} + +\setbeamercolor{page number in head/foot}{fg=fg!50!bg} + +\setbeamercolor{qed symbol}{parent=structure} + +\mode + diff --git a/my_docs/18/sc18/booth/beamerfontthemeTACC.sty b/my_docs/18/sc18/booth/beamerfontthemeTACC.sty deleted file mode 120000 index 25bb9ea22..000000000 --- a/my_docs/18/sc18/booth/beamerfontthemeTACC.sty +++ /dev/null @@ -1 +0,0 @@ -../../../beamer/beamerfontthemeTACC.sty \ No newline at end of file diff --git a/my_docs/18/sc18/booth/beamerfontthemeTACC.sty b/my_docs/18/sc18/booth/beamerfontthemeTACC.sty new file mode 100755 index 000000000..ef9ce1e5e --- /dev/null +++ b/my_docs/18/sc18/booth/beamerfontthemeTACC.sty @@ -0,0 +1,12 @@ +% Copyright 2003 by Till Tantau +% +% This program can be redistributed and/or modified under the terms +% of the GNU Public License, version 2. + +\mode + +\setbeamerfont{frametitle}{parent=structure,size=\LARGE,series=\bfseries} +\setbeamerfont{framesubtitle}{parent=frametitle,size=\small} + +\mode + \ No newline at end of file diff --git a/my_docs/18/sc18/booth/beamerfontthemeTACC16.sty b/my_docs/18/sc18/booth/beamerfontthemeTACC16.sty deleted file mode 120000 index abc5b5d6c..000000000 --- a/my_docs/18/sc18/booth/beamerfontthemeTACC16.sty +++ /dev/null @@ -1 +0,0 @@ -../../../beamer/beamerfontthemeTACC16.sty \ No newline at end of file diff --git a/my_docs/18/sc18/booth/beamerfontthemeTACC16.sty b/my_docs/18/sc18/booth/beamerfontthemeTACC16.sty new file mode 100755 index 000000000..b65271835 --- /dev/null +++ b/my_docs/18/sc18/booth/beamerfontthemeTACC16.sty @@ -0,0 +1,21 @@ +% Copyright 2003 by Till Tantau +% +% This program can be redistributed and/or modified under the terms +% of the GNU Public License, version 2. + +\mode +\setbeamerfont{title}{parent=structure,size=\LARGE,series=\bfseries} +\setbeamerfont{author}{parent=structure,size=\large, series=\normalfont} +\setbeamerfont{frametitle}{parent=structure,size=\LARGE,series=\bfseries} +\setbeamerfont{framesubtitle}{parent=frametitle,size=\small} + +%\usefonttheme{professionalfonts} % using non standard fonts for beamer +%\usefonttheme{serif} % default family is serif +%\usepackage{fontspec} +%\setmainfont{Century Gothic} + +\usepackage{fontspec} +\usepackage{libertine} + +\mode + diff --git a/my_docs/18/sc18/booth/beamerinnerthemeTACC.sty b/my_docs/18/sc18/booth/beamerinnerthemeTACC.sty deleted file mode 120000 index 39f13a172..000000000 --- a/my_docs/18/sc18/booth/beamerinnerthemeTACC.sty +++ /dev/null @@ -1 +0,0 @@ -../../../beamer/beamerinnerthemeTACC.sty \ No newline at end of file diff --git a/my_docs/18/sc18/booth/beamerinnerthemeTACC.sty b/my_docs/18/sc18/booth/beamerinnerthemeTACC.sty new file mode 100755 index 000000000..29e2bce81 --- /dev/null +++ b/my_docs/18/sc18/booth/beamerinnerthemeTACC.sty @@ -0,0 +1,11 @@ +\mode + +\setbeamertemplate{itemize item}[circle] +\setbeamertemplate{itemize subitem}{{}--{}} +\setbeamertemplate{itemize subsubitem}[circle] +\setbeamertemplate{section in toc}{$\bullet$\hskip.5em\inserttocsection} +%\setbeamertemplate{subsection in toc}{} +\setbeamertemplate{subsubsection in toc}{} + +\mode + diff --git a/my_docs/18/sc18/booth/beamerinnerthemeTACC16.sty b/my_docs/18/sc18/booth/beamerinnerthemeTACC16.sty deleted file mode 120000 index dd9b03a0c..000000000 --- a/my_docs/18/sc18/booth/beamerinnerthemeTACC16.sty +++ /dev/null @@ -1 +0,0 @@ -../../../beamer/beamerinnerthemeTACC16.sty \ No newline at end of file diff --git a/my_docs/18/sc18/booth/beamerinnerthemeTACC16.sty b/my_docs/18/sc18/booth/beamerinnerthemeTACC16.sty new file mode 100755 index 000000000..f7f454e1d --- /dev/null +++ b/my_docs/18/sc18/booth/beamerinnerthemeTACC16.sty @@ -0,0 +1,11 @@ +\mode + +\setbeamertemplate{itemize item}[triangle] +\setbeamertemplate{itemize subitem}[triangle] +\setbeamertemplate{itemize subsubitem}[triangle] +\setbeamertemplate{section in toc}{$\bullet$\hskip.5em\inserttocsection} +%\setbeamertemplate{subsection in toc}{} +\setbeamertemplate{subsubsection in toc}{} + +\mode + diff --git a/my_docs/18/sc18/booth/beamerouterthemeTACC.sty b/my_docs/18/sc18/booth/beamerouterthemeTACC.sty deleted file mode 120000 index 374bd4f45..000000000 --- a/my_docs/18/sc18/booth/beamerouterthemeTACC.sty +++ /dev/null @@ -1 +0,0 @@ -../../../beamer/beamerouterthemeTACC.sty \ No newline at end of file diff --git a/my_docs/18/sc18/booth/beamerouterthemeTACC.sty b/my_docs/18/sc18/booth/beamerouterthemeTACC.sty new file mode 100755 index 000000000..038580303 --- /dev/null +++ b/my_docs/18/sc18/booth/beamerouterthemeTACC.sty @@ -0,0 +1,196 @@ +% Copyright 2003 by Till Tantau +% +% This program can be redistributed and/or modified under the terms +% of the GNU Public License, version 2. + +\mode + +\setbeamertemplate{frametitle}[default][center] +\addtobeamertemplate{frametitle}{\vskip 4ex minus 4ex}{} + +% Here we define what appears at the bottom of each slide: the "footline". +\setbeamertemplate{footline}{% + \leavevmode% + + % Horizontal line dividing the rest of the slide from the footer? + % hrule goes all the way across... + % \hrule height.3pt% + % With \rule, you can specify the thickness + % \rule[raise-height]{width}{thickness} + \hspace{.025\textwidth}\rule{.95\textwidth}{.5pt} + + \hbox{% + % On the left half of the footer, insert the TACC logo + \begin{minipage}{.5\textwidth}% + \hskip .033\textwidth%Give horizontal space else this will set on the left edge of the slide! + % TACC logo with custom viewport! + \includegraphics[viewport=1 -1 135 35, clip=true, width=.4\textwidth]{figures/TACC_logo} + \end{minipage} + % + \begin{minipage}{.5\textwidth}% + \vskip .023\textheight% + \raggedleft% + \setlength{\rightskip}{.033\textwidth} + % + % If we are not on the first page, insert a page number + % For some reason, insertframenumber is buggy when you have fragile + % slides with verbatim environments in them... it tends to skip numbers + % for some reason! On the other hand, the pagenumber is incremented + % for *every* slide, including transition slides... + \ifnum \thepage>1 + % \insertshorttitle + \insertframenumber + % \insertframenumber/\inserttotalframenumber + % \insertpagenumber + \else % Do a phantom of whatever you do on other pages, so spacing matches + %$\phantom{\insertshorttitle}$ + $\phantom{\insertframenumber}$ + %$\phantom{\insertframenumber/\inserttotalframenumber}$ + %$\phantom{\insertpagenumber}$ + \fi + \hfill\includegraphics[width=.5\textwidth]{figures/UT_logo}% + \end{minipage}% + }% + \vskip .023\textheight% +} + + + + +\ifTACCheadernav + +\usesectionheadtemplate +{\hfill\insertsectionhead} +{\hfill\color{fg!50!bg}\insertsectionhead} + +% Head +\ifbeamer@compress + +% Here we define how the top of the frame looks, the "headline". +\setbeamertemplate{headline} +{% + \ifnum \thepage>1 + \leavevmode% + \begin{beamercolorbox}[wd=.5\paperwidth,ht=2.5ex,dp=1.125ex]{% + section in head/foot}% + \insertsectionnavigationhorizontal{.5\paperwidth}{\hskip0pt plus1filll}{}% + \end{beamercolorbox}% + \begin{beamercolorbox}[wd=.5\paperwidth,ht=2.5ex,dp=1.125ex]{% + subsection in head/foot}% + \insertsubsectionnavigationhorizontal{% + .5\paperwidth}{}{\hskip0pt plus1filll}% + \end{beamercolorbox}% + \fi %\thepage>1 +} + +\else% Not compressed + +\setbeamertemplate{headline} +{% + \ifnum \thepage>1 + \leavevmode% + \@tempdimb=2.4375ex% + \ifnum\beamer@subsectionmax<\beamer@sectionmax% + \multiply\@tempdimb by\beamer@sectionmax% + \else% + \multiply\@tempdimb by\beamer@subsectionmax% + \fi% + \ifdim\@tempdimb>0pt% + \advance\@tempdimb by 1.125ex% + \begin{beamercolorbox}[wd=.5\paperwidth,ht=\@tempdimb]{% + section in head/foot}% + \vbox to\@tempdimb{\vfil\insertsectionnavigation{.5\paperwidth}\vfil}% + \end{beamercolorbox}% + \begin{beamercolorbox}[wd=.5\paperwidth,ht=\@tempdimb]{% + subsection in head/foot}% + \vbox to\@tempdimb{\vfil\insertsubsectionnavigation{.5\paperwidth}\vfil}% + \end{beamercolorbox}% + \fi% + \fi % \thepage>1 +} + +\fi % end if compressed +\fi % TACCheadernav + + +\ifTACCheadertree + +\setbeamertemplate{headline} +{ + \begin{beamercolorbox}[wd=\paperwidth,colsep=1.5pt + ]{upper separation line head} + \end{beamercolorbox} + % + % Place short title + % + \begin{beamercolorbox}[wd=\paperwidth,ht=2.5ex,dp=1.125ex,% + leftskip=.3cm,rightskip=.3cm plus1fil]{title in head/foot} + \usebeamerfont{title in head/foot}\insertshorttitle + \end{beamercolorbox} + + % + % Place section + % + \begin{beamercolorbox}[wd=\paperwidth,ht=2.5ex,dp=1.125ex,% + leftskip=.3cm,rightskip=.3cm plus1fil]{section in head/foot} + \usebeamerfont{section in head/foot}% + %\ifbeamer@tree@showhooks + \setbox\beamer@tempbox=\hbox{\insertsectionhead}% + \ifdim\wd\beamer@tempbox>1pt% + \hskip2pt\raise1.9pt\hbox{\vrule width0.4pt height1.875ex\vrule width 5pt height0.4pt}% + \hskip1pt% + \fi% \ifdim + %\else% + %\hskip6pt% + %\fi% \ifbeamer + \insertsectionhead + \end{beamercolorbox} + +% +% Place subsection +% +\begin{beamercolorbox}[wd=\paperwidth,ht=2.5ex,dp=1.125ex,% + leftskip=.3cm,rightskip=.3cm plus1fil]{subsection in head/foot} + \usebeamerfont{subsection in head/foot}% + %\ifbeamer@tree@showhooks + \setbox\beamer@tempbox=\hbox{\insertsubsectionhead}% + \ifdim\wd\beamer@tempbox>1pt% + \hskip9.4pt\raise1.9pt\hbox{\vrule width0.4pt height1.875ex\vrule width 5pt height0.4pt}% + \hskip1pt% + \fi% \ifdim + %\else% + %\hskip12pt% + %\fi% \ifbeamer + \insertsubsectionhead +\end{beamercolorbox} + +% +% Place final separation box +% + \begin{beamercolorbox}[wd=\paperwidth,colsep=1.5pt + ]{lower separation line head} + \end{beamercolorbox} + + % + % Another matching rule which helps to frame the content + % + \hspace{.025\textwidth}\rule{.95\textwidth}{.5pt} +} +\fi % TACCheadertree + + +% The following command suppresses all navigation symbols. This is +% necessary in the TACC theme, since it overlaps where we want the +% logo to be. +\setbeamertemplate{navigation symbols}{} + +% Align the navigation symbols vertically (still overlaps our logo!) +%\setbeamertemplate{navigation symbols}[vertical]{} + +% Only places the slide-forward and slide-back symbol, but yes, +% this still overlaps our logo! +%\setbeamertemplate{navigation symbols}[only frame symbol]{} + + +\mode + diff --git a/my_docs/18/sc18/booth/beamerouterthemeTACC16.sty b/my_docs/18/sc18/booth/beamerouterthemeTACC16.sty deleted file mode 120000 index 6d5f742b3..000000000 --- a/my_docs/18/sc18/booth/beamerouterthemeTACC16.sty +++ /dev/null @@ -1 +0,0 @@ -../../../beamer/beamerouterthemeTACC16.sty \ No newline at end of file diff --git a/my_docs/18/sc18/booth/beamerouterthemeTACC16.sty b/my_docs/18/sc18/booth/beamerouterthemeTACC16.sty new file mode 100755 index 000000000..d5e6388c7 --- /dev/null +++ b/my_docs/18/sc18/booth/beamerouterthemeTACC16.sty @@ -0,0 +1,312 @@ +% Antonio Gomez (agomez@tacc.utexas.edu) +% 4-20-17. Added option to put the footer on the right side + + + +\mode + +\usepackage{xcolor} +\usepackage{graphicx} +\usepackage{etoolbox} + + + +% This theme accepts the "rightfooter" option +% When used, it will put the TACC logo at the bottom of the slide on the right side +% By default, it goes to the left + +\xifaspectratio{ + {169} { + \pgfdeclareimage[width=\paperwidth]{titlebackground}{./figures/master169.jpg} + \if@rightfooterOption + \pgfdeclareimage[width=\paperwidth]{background}{./figures/secondary_right169.jpg} +\else + \pgfdeclareimage[width=\paperwidth]{background}{./figures/secondary169.jpg} +\fi +} +}[ +\pgfdeclareimage[width=\paperwidth]{titlebackground}{./figures/master.jpg} + \if@rightfooterOption + \pgfdeclareimage[width=\paperwidth]{background}{./figures/secondary_right.jpg} +\else + \pgfdeclareimage[width=\paperwidth]{background}{./figures/secondary.jpg} +\fi +] + +\setbeamertemplate{background canvas}{% +\xifaspectratio{ + {169} { + \ifnum\c@framenumber=1 % + \begin{picture}(0,0) + \put(-3,-256){% + \pgfuseimage{titlebackground} + } + \end{picture} + \else% + \begin{picture}(0,0) + \put(-3,-260){% + \pgfuseimage{background} + } + \end{picture} + \fi + } + {43} { + \ifnum\c@framenumber=1 % + \begin{picture}(0,0) + \put(-4,-274){% + \pgfuseimage{titlebackground} + } + \end{picture} + \else% + \begin{picture}(0,0) + \put(-4,-274){% + \pgfuseimage{background} + } + \end{picture} + \fi + } +} +} + + + +%\setbeamertemplate{background canvas}{% +% % On title page +% \ifnum\c@framenumber=1 % +% \begin{picture}(0,0) +% \put(0,-253){% +% \pgfuseimage{titlebackground} +% } +% \end{picture} +% +% \else% +% \xifaspectratio{ +% {169} { +% % Other frames background +% \begin{picture}(0,0) +% \put(-4,-260){% +% \pgfuseimage{background} +% } +% \end{picture} +% } +% }[ +% % Other frames background +% \begin{picture}(0,0) +% \put(-4,-274){% +% \pgfuseimage{background} +% } +% \end{picture} +% ] +% \fi% +%} + + +\setbeamertemplate{title page}{ +\vspace{40pt} +\begin{center} +\usebeamerfont{title} {\huge \inserttitle}\par +\vspace{4ex} +\usebeamerfont{author} { + \insertauthor +}\par +\vspace{2ex} +\usebeamerfont{institute}{ + \insertinstitute +} \par +\vspace{2ex} +\usebeamerfont{date}{ + \insertdate +} +\end{center} +} + + +\setbeamertemplate{frametitle}[default][center] +\setbeamertemplate{frametitle}{ + \makeatletter + \regexpatchcmd{\insertframetitle} + {(\c{usebeamertemplate}.*)\c{fi}} + {\c{NoCaseChange}\cB\{\1\cE\}\c{fi}} + {}{}% + \makeatother + \vskip1ex + \insertframetitle +} + +% Here we define what appears at the bottom of each slide: the "footline". +\setbeamertemplate{footline}{% + \leavevmode% + + % Horizontal line dividing the rest of the slide from the footer? + % hrule goes all the way across... + % \hrule height.3pt% + % With \rule, you can specify the thickness + % \rule[raise-height]{width}{thickness} + % \hspace{.025\textwidth}\rule{.95\textwidth}{.5pt} + + \hbox{% + \ifnum \thepage>1 + \if@rightfooterOption + \begin{minipage}{.2\textwidth}% + \hskip .05\textwidth%Give horizontal space else this will set on the left edge of the slide! + \end{minipage} + \else + \begin{minipage}{.4\textwidth}% + \hskip .05\textwidth%Give horizontal space else this will set on the left edge of the slide! + \end{minipage} + \fi + + + \begin{minipage}{\textwidth}% + % \vskip .023\textheight% + \raggedleft% + \setlength{\rightskip}{\textwidth} + \if@rightfooterOption + \hbox{% + \begin{beamercolorbox}[wd=0.7\textwidth,ht=2.25ex,dp=1ex,left]{author in head/foot}% + \insertshorttitle{} \hskip .01\textwidth | \hskip .01\textwidth \insertdate{} \hskip .01\textwidth | \hskip .01\textwidth \insertframenumber{} + \end{beamercolorbox}% + } + \else + \hbox{% + \begin{beamercolorbox}[wd=0.5\textwidth,ht=2.25ex,dp=1ex,left]{author in head/foot}% + \insertshorttitle{} \hskip .01\textwidth | \hskip .01\textwidth \insertdate{} \hskip .01\textwidth | \hskip .01\textwidth \insertframenumber{} + \end{beamercolorbox}% + } + \fi + + \end{minipage}% + \begin{minipage}{.05\textwidth}% + \end{minipage}% + \fi %\thepage>1 + }% + \vskip .023\textheight% + +} + + + + +\ifTACCheadernav + +\usesectionheadtemplate +{\hfill\insertsectionhead} +{\hfill\color{fg!50!bg}\insertsectionhead} + +% Head +\ifbeamer@compress + +% Here we define how the top of the frame looks, the "headline". +\setbeamertemplate{headline} +{% + \ifnum \thepage>1 + \leavevmode% + \begin{beamercolorbox}[wd=.5\paperwidth,ht=2.5ex,dp=1.125ex]{% + section in head/foot}% + \insertsectionnavigationhorizontal{.5\paperwidth}{\hskip0pt plus1filll}{}% + \end{beamercolorbox}% + \begin{beamercolorbox}[wd=.5\paperwidth,ht=2.5ex,dp=1.125ex]{% + subsection in head/foot}% + \insertsubsectionnavigationhorizontal{% + .5\paperwidth}{}{\hskip0pt plus1filll}% + \end{beamercolorbox}% + \fi %\thepage>1 +} + +\else% Not compressed + +\setbeamertemplate{headline} +{% + \ifnum \thepage>1 + \leavevmode% + \@tempdimb=2.4375ex% + \ifnum\beamer@subsectionmax<\beamer@sectionmax% + \multiply\@tempdimb by\beamer@sectionmax% + \else% + \multiply\@tempdimb by\beamer@subsectionmax% + \fi% + \ifdim\@tempdimb>0pt% + \advance\@tempdimb by 1.125ex% + \begin{beamercolorbox}[wd=.5\paperwidth,ht=\@tempdimb]{% + section in head/foot}% + \vbox to\@tempdimb{\vfil\insertsectionnavigation{.5\paperwidth}\vfil}% + \end{beamercolorbox}% + \begin{beamercolorbox}[wd=.5\paperwidth,ht=\@tempdimb]{% + subsection in head/foot}% + \vbox to\@tempdimb{\vfil\insertsubsectionnavigation{.5\paperwidth}\vfil}% + \end{beamercolorbox}% + \fi% + \fi % \thepage>1 +} + +\fi % end if compressed +\fi % TACCheadernav + + +\ifTACCheadertree + +\setbeamertemplate{headline} +{ + \begin{beamercolorbox}[wd=\paperwidth,colsep=1.5pt]{upper separation line head} + \end{beamercolorbox} + % + % Place short title + % + \begin{beamercolorbox}[wd=\paperwidth,ht=2.5ex,dp=1.125ex,% + leftskip=.3cm,rightskip=.3cm plus1fil]{title in head/foot} + \usebeamerfont{title in head/foot}\insertshorttitle + \end{beamercolorbox} + + % + % Place section + % + \begin{beamercolorbox}[wd=\paperwidth,ht=2.5ex,dp=1.125ex,% + leftskip=.3cm,rightskip=.3cm plus1fil]{section in head/foot} + \usebeamerfont{section in head/foot}% + %\ifbeamer@tree@showhooks + \setbox\beamer@tempbox=\hbox{\insertsectionhead}% + \ifdim\wd\beamer@tempbox>1pt% + \hskip2pt\raise1.9pt\hbox{\vrule width0.4pt height1.875ex\vrule width 5pt height0.4pt}% + \hskip1pt% + \fi + \insertsectionhead + \end{beamercolorbox} + +% +% Place subsection +% +\begin{beamercolorbox}[wd=\paperwidth,ht=2.5ex,dp=1.125ex,% + leftskip=.3cm,rightskip=.3cm plus1fil]{subsection in head/foot} + \usebeamerfont{subsection in head/foot}% + %\ifbeamer@tree@showhooks + \setbox\beamer@tempbox=\hbox{\insertsubsectionhead}% + \ifdim\wd\beamer@tempbox>1pt% + \hskip9.4pt\raise1.9pt\hbox{\vrule width0.4pt height1.875ex\vrule width 5pt height0.4pt}% + \hskip1pt% + \fi + \insertsubsectionhead +\end{beamercolorbox} + +% +% Place final separation box +% + \begin{beamercolorbox}[wd=\paperwidth,colsep=1.5pt + ]{lower separation line head} + \end{beamercolorbox} + + % + % Another matching rule which helps to frame the content + % + \hspace{.025\textwidth}\rule{.95\textwidth}{.5pt} +} +\fi % TACCheadertree + + +% The following command suppresses all navigation symbols. This is +% necessary in the TACC theme, since it overlaps where we want the +% logo to be. +\setbeamertemplate{navigation symbols}{} + + +\mode + diff --git a/my_docs/18/sc18/booth/beamerthemeTACC.sty b/my_docs/18/sc18/booth/beamerthemeTACC.sty deleted file mode 120000 index f292272c6..000000000 --- a/my_docs/18/sc18/booth/beamerthemeTACC.sty +++ /dev/null @@ -1 +0,0 @@ -../../../beamer/beamerthemeTACC.sty \ No newline at end of file diff --git a/my_docs/18/sc18/booth/beamerthemeTACC.sty b/my_docs/18/sc18/booth/beamerthemeTACC.sty new file mode 100755 index 000000000..c6a1b1269 --- /dev/null +++ b/my_docs/18/sc18/booth/beamerthemeTACC.sty @@ -0,0 +1,26 @@ +%% TACC theme for beamer + +\newif\ifTACCheadernav +\DeclareOption{headernav}{\global\TACCheadernavtrue} + +\newif\ifTACCheadertree +\DeclareOption{headertree}{\global\TACCheadertreetrue} +\ProcessOptions + +\mode + +\usefonttheme{TACC} +\usecolortheme{TACC} +\useinnertheme{TACC} +\useoutertheme{TACC} + +\mode + + +\newcommand{\event}[1]{% + \makeatletter% + \def\TACC@eventname{#1}% + \makeatother} + +\newcommand{\sectionframe}[1]{\section{#1}\frame{\Large\textbf{#1}}} +\newcommand{\subsectionframe}[1]{\subsection{#1}\frame{\large\textbf{#1}}} diff --git a/my_docs/18/sc18/booth/beamerthemeTACC16.sty b/my_docs/18/sc18/booth/beamerthemeTACC16.sty deleted file mode 120000 index 6cdb13570..000000000 --- a/my_docs/18/sc18/booth/beamerthemeTACC16.sty +++ /dev/null @@ -1 +0,0 @@ -../../../beamer/beamerthemeTACC16.sty \ No newline at end of file diff --git a/my_docs/18/sc18/booth/beamerthemeTACC16.sty b/my_docs/18/sc18/booth/beamerthemeTACC16.sty new file mode 100755 index 000000000..b522d0207 --- /dev/null +++ b/my_docs/18/sc18/booth/beamerthemeTACC16.sty @@ -0,0 +1,61 @@ +%% TACC theme for beamer + + +\newif\if@rightfooterOption +\@rightfooterOptionfalse +\DeclareOption{rightfooter}{\@rightfooterOptiontrue} +\ProcessOptions + + +\newif\ifTACCheadernav +\DeclareOption{headernav}{\global\TACCheadernavtrue} + +\newif\ifTACCheadertree +\DeclareOption{headertree}{\global\TACCheadertreetrue} +\ProcessOptions + +\usepackage{xparse} +\ExplSyntaxOn +\NewDocumentCommand{\ifaspectratio}{mmm} + { + % Recover the option from those passed to the class + \keys_set:nf { zunbeltz/beameroptions } { \use:c { opt@beamer.cls } } + \str_if_eq:nVTF { #1 } \l_zunbeltz_aspectratio_tl { #2 } { #3 } + } +\NewDocumentCommand{\xifaspectratio}{mO{}} + { + % Recover the option from those passed to the class + \keys_set:nf { zunbeltz/beameroptions } { \use:c { opt@beamer.cls } } + \str_case:VnF \l_zunbeltz_aspectratio_tl { #1 } { #2 } + } +% We need to define only one key, the other are treated as `unknown' +\keys_define:nn { zunbeltz/beameroptions } + { + aspectratio .tl_set:N = \l_zunbeltz_aspectratio_tl, + aspectratio .initial:n = 43, + unknown .code:n = {}, + } + +% Generate the variants we need +\cs_generate_variant:Nn \keys_set:nn { nf } +\cs_generate_variant:Nn \str_if_eq:nnTF { nV } +\cs_generate_variant:Nn \str_case:nnF { V } +\ExplSyntaxOff + +\mode + +\usefonttheme{TACC16} +\useinnertheme{TACC16} +\useoutertheme{TACC16} +\usecolortheme{TACC16} + +\mode + + +\newcommand{\event}[1]{% + \makeatletter% + \def\TACC@eventname{#1}% + \makeatother} + +\newcommand{\sectionframe}[1]{\section{#1}\frame{\Large\textbf{#1}}} +\newcommand{\subsectionframe}[1]{\subsection{#1}\frame{\large\textbf{#1}}} diff --git a/my_docs/18/sc18/booth/figures b/my_docs/18/sc18/booth/figures deleted file mode 120000 index 9a68d5598..000000000 --- a/my_docs/18/sc18/booth/figures +++ /dev/null @@ -1 +0,0 @@ -../../../beamer/figures \ No newline at end of file diff --git a/my_docs/18/sc18/booth/figures/TACC_logo.pdf b/my_docs/18/sc18/booth/figures/TACC_logo.pdf new file mode 100755 index 000000000..c018a20cb Binary files /dev/null and b/my_docs/18/sc18/booth/figures/TACC_logo.pdf differ diff --git a/my_docs/18/sc18/booth/figures/UT_logo.pdf b/my_docs/18/sc18/booth/figures/UT_logo.pdf new file mode 100755 index 000000000..d5b42e752 Binary files /dev/null and b/my_docs/18/sc18/booth/figures/UT_logo.pdf differ diff --git a/my_docs/18/sc18/booth/figures/cc.png b/my_docs/18/sc18/booth/figures/cc.png new file mode 100644 index 000000000..8a532ff8f Binary files /dev/null and b/my_docs/18/sc18/booth/figures/cc.png differ diff --git a/my_docs/18/sc18/booth/figures/isa.png b/my_docs/18/sc18/booth/figures/isa.png new file mode 100644 index 000000000..f95d985e7 Binary files /dev/null and b/my_docs/18/sc18/booth/figures/isa.png differ diff --git a/my_docs/18/sc18/booth/figures/master.jpg b/my_docs/18/sc18/booth/figures/master.jpg new file mode 100644 index 000000000..f5c56c04a Binary files /dev/null and b/my_docs/18/sc18/booth/figures/master.jpg differ diff --git a/my_docs/18/sc18/booth/figures/master169.jpg b/my_docs/18/sc18/booth/figures/master169.jpg new file mode 100644 index 000000000..b215776eb Binary files /dev/null and b/my_docs/18/sc18/booth/figures/master169.jpg differ diff --git a/my_docs/18/sc18/booth/figures/master169.png b/my_docs/18/sc18/booth/figures/master169.png new file mode 100644 index 000000000..bc5c0ed12 Binary files /dev/null and b/my_docs/18/sc18/booth/figures/master169.png differ diff --git a/my_docs/18/sc18/booth/figures/secondary.jpg b/my_docs/18/sc18/booth/figures/secondary.jpg new file mode 100644 index 000000000..d905a95c9 Binary files /dev/null and b/my_docs/18/sc18/booth/figures/secondary.jpg differ diff --git a/my_docs/18/sc18/booth/figures/secondary169.jpg b/my_docs/18/sc18/booth/figures/secondary169.jpg new file mode 100644 index 000000000..4eb017957 Binary files /dev/null and b/my_docs/18/sc18/booth/figures/secondary169.jpg differ diff --git a/my_docs/18/sc18/booth/figures/secondary169.png b/my_docs/18/sc18/booth/figures/secondary169.png new file mode 100644 index 000000000..cb9060a56 Binary files /dev/null and b/my_docs/18/sc18/booth/figures/secondary169.png differ diff --git a/my_docs/18/sc18/booth/figures/secondary_right.jpg b/my_docs/18/sc18/booth/figures/secondary_right.jpg new file mode 100644 index 000000000..f25f93a58 Binary files /dev/null and b/my_docs/18/sc18/booth/figures/secondary_right.jpg differ diff --git a/my_docs/18/sc18/booth/figures/secondary_right169.jpg b/my_docs/18/sc18/booth/figures/secondary_right169.jpg new file mode 100644 index 000000000..567a1078f Binary files /dev/null and b/my_docs/18/sc18/booth/figures/secondary_right169.jpg differ diff --git a/my_docs/18/sc18/booth/themes b/my_docs/18/sc18/booth/themes deleted file mode 120000 index 776bbbb44..000000000 --- a/my_docs/18/sc18/booth/themes +++ /dev/null @@ -1 +0,0 @@ -../../../beamer/themes \ No newline at end of file diff --git a/my_docs/18/sc18/booth/themes/beamercolorthemeTACC16.sty b/my_docs/18/sc18/booth/themes/beamercolorthemeTACC16.sty new file mode 100644 index 000000000..248ae8cb6 --- /dev/null +++ b/my_docs/18/sc18/booth/themes/beamercolorthemeTACC16.sty @@ -0,0 +1,193 @@ +% Copyright 2003 by Till Tantau . +% +% This program can be redistributed and/or modified under the terms +% of the GNU Public License, version 2. + +\mode + +\usepackage{textcase,regexpatch} + +\setbeamertemplate{blocks}[rounded][shadow=true] + + +\definecolor{TACCred}{RGB}{180,13,29} +\definecolor{TACCorange}{RGB}{210,104,43} +\definecolor{TACCblue}{RGB}{21,77,122} +%\definecolor{TACCgreen}{RGB}{30,134,104} +\definecolor{TACCgreen}{RGB}{49,168,51} + +% I downloaded a gimp color palette from +% http://maururu.net/2007/latex-beamer-color-palette/ +% Which provides rgb values (I think) for several of the +% default beamer themes. You can open this in gimp by +% opening the Palettes dialog, right-clicking anywhere and choosing +% 'Import Palette'. A color in there called 'default added blue' +% appeared to be approximately what I wanted. It had the triple +% of values 141 145 208. If you double-click on this in the +% palette editor it gives you a bunch of information. You can't +% use these values directly to set a color...it just comes out white. +% I think definecolor is expecting something normalized by 255. Yes! + + +%%% +% Set the normal text color +%%% +\setbeamercolor{normal text}{fg=black} %,bg=white} +\setbeamercolor{example text}{fg=TACCgreen} +\setbeamercolor{alerted text}{fg=TACCorange} + + +\setbeamercolor{structure}{fg=black} +%\setbeamercolor{structure}{fg=black} + +\setbeamercolor{background canvas}{parent=normal text} +\setbeamercolor{background}{parent=background canvas} + +\setbeamercolor{palette primary}{use=structure,fg=structure.fg} +\setbeamercolor{palette secondary}{use=structure,fg=structure.fg!75!black} +\setbeamercolor{palette tertiary}{use=structure,fg=structure.fg!50!black} +\setbeamercolor{palette quaternary}{fg=black} + +\setbeamercolor{palette sidebar primary}{use=normal text,fg=normal text.fg} +\setbeamercolor{palette sidebar secondary}{use=structure,fg=structure.fg} +\setbeamercolor{palette sidebar tertiary}{use=normal text,fg=normal text.fg} +\setbeamercolor{palette sidebar quaternary}{use=structure,fg=structure.fg} + +\setbeamercolor{math text}{} +\setbeamercolor{math text inlined}{parent=math text} +\setbeamercolor{math text displayed}{parent=math text} + +\setbeamercolor{normal text in math text}{} + +\setbeamercolor{local structure}{parent=structure} + +\setbeamercolor{titlelike}{parent=structure} + +\setbeamercolor{title}{parent=titlelike} +\setbeamercolor{title in head/foot}{parent=palette quaternary} +\setbeamercolor{title in sidebar}{parent=palette sidebar quaternary} + +\setbeamercolor{subtitle}{parent=title} + +\setbeamercolor{author}{} +\setbeamercolor{author in head/foot}{parent=palette primary} +\setbeamercolor{author in sidebar}{use=palette sidebar tertiary,fg=palette sidebar tertiary.fg} + +\setbeamercolor{institute}{} +\setbeamercolor{institute in head/foot}{parent=palette tertiary} +\setbeamercolor{institute in sidebar}{use=palette sidebar tertiary,fg=palette sidebar tertiary.fg} + +\setbeamercolor{date}{} +\setbeamercolor{date in head/foot}{parent=palette secondary} +\setbeamercolor{date in sidebar}{use=palette sidebar tertiary,fg=palette sidebar tertiary.fg} + +\setbeamercolor{titlegraphic}{} + +\setbeamercolor{part name}{} +\setbeamercolor{part title}{parent=titlelike} + +\setbeamercolor{section in toc}{parent=structure} +\setbeamercolor{section in toc shaded}{parent=section in toc} +\setbeamercolor{section in head/foot}{parent=palette tertiary} +\setbeamercolor{section in sidebar}{parent=palette sidebar secondary} +\setbeamercolor{section in sidebar shaded}{use=section in sidebar,fg=section in sidebar.fg!40!bg} +\setbeamercolor{section number projected}{parent=item projected} + +\setbeamercolor{subsection in toc}{} +\setbeamercolor{subsection in toc shaded}{parent=subsection in toc} +\setbeamercolor{subsection in head/foot}{parent=palette secondary} +\setbeamercolor{subsection in sidebar}{parent=palette sidebar primary} +\setbeamercolor{subsection in sidebar shaded}{use=subsection in sidebar,fg=subsection in sidebar.fg!40!bg} +\setbeamercolor{subsection number projected}{parent={subitem projected}} + +\setbeamercolor{subsubsection in toc}{parent=subsection in toc} +\setbeamercolor{subsubsection in toc shaded}{parent=subsubsection in toc} +\setbeamercolor{subsubsection in head/foot}{parent=subsection in head/foot} +\setbeamercolor{subsubsection in sidebar}{parent=subsection in sidebar} +\setbeamercolor{subsubsection in sidebar shaded}{parent=subsection in sidebar shaded} +\setbeamercolor{subsubsection number projected}{parent=subsubitem projected} + +\setbeamercolor{headline}{} +\setbeamercolor{footline}{} + +\setbeamercolor{sidebar}{} +\setbeamercolor{sidebar left}{parent=sidebar} +\setbeamercolor{sidebar right}{parent=sidebar} + +\setbeamercolor{logo}{parent=palette secondary} + +\setbeamercolor{frametitle}{parent=titlelike} +\setbeamercolor{framesubtitle}{parent=frametitle} + +\setbeamercolor{frametitle right}{parent=frametitle} + +\setbeamercolor{caption}{} +\setbeamercolor{caption name}{parent=structure} + +\setbeamercolor{button}{use=local structure,bg=local structure.fg!50!bg,fg=white} +\setbeamercolor{button border}{use=button,fg=button.bg} +\setbeamercolor{navigation symbols}{use=structure,fg=structure.fg!40!bg} +\setbeamercolor{navigation symbols dimmed}{use=structure,fg=structure.fg!20!bg} +\setbeamercolor{mini frame}{parent=section in head/foot} + +\setbeamercolor{block body}{fg=black} +\setbeamercolor{block body alerted}{fg=black} +\setbeamercolor{block body example}{fg=black} + +\setbeamercolor{block title}{bg=TACCblue,fg=white} +\setbeamercolor{block title alerted}{bg=TACCred,fg=white} +\setbeamercolor{block title example}{bg=TACCgreen,fg=white} + +\setbeamercolor{item}{parent=local structure} +\setbeamercolor{subitem}{parent=item} +\setbeamercolor{subsubitem}{parent=subitem} + +\setbeamercolor{item projected}{parent=item,use=item,fg=black,bg=item.fg} +\setbeamercolor{subitem projected}{parent=item projected} +\setbeamercolor{subsubitem projected}{parent=subitem projected} + +\setbeamercolor{enumerate item}{parent=item} +\setbeamercolor{enumerate subitem}{parent=subitem} +\setbeamercolor{enumerate subsubitem}{parent=subsubitem} + +\setbeamercolor{itemize item}{parent=item} +\setbeamercolor{itemize subitem}{parent=subitem} +\setbeamercolor{itemize subsubitem}{parent=subsubitem} + +\setbeamercolor{itemize/enumerate body}{} +\setbeamercolor{itemize/enumerate subbody}{} +\setbeamercolor{itemize/enumerate subsubbody}{} + +\setbeamercolor{description item}{parent=item} + +\setbeamercolor{bibliography item}{parent=item} + +\setbeamercolor{bibliography entry author}{use=structure,fg=structure.fg} +\setbeamercolor{bibliography entry title}{use=normal text,fg=normal text.fg} +\setbeamercolor{bibliography entry location}{use=structure,fg=structure.fg!65!bg} +\setbeamercolor{bibliography entry note}{use=structure,fg=structure.fg!65!bg} + +\setbeamercolor{separation line}{} + +\setbeamercolor{upper separation line head}{parent=separation line} +\setbeamercolor{middle separation line head}{parent=separation line} +\setbeamercolor{lower separation line head}{parent=separation line} + +\setbeamercolor{upper separation line foot}{parent=separation line} +\setbeamercolor{middle separation line foot}{parent=separation line} +\setbeamercolor{lower separation line foot}{parent=separation line} + +\setbeamercolor{abstract}{} +\setbeamercolor{abstract title}{parent=structure} + +\setbeamercolor{verse}{} + +\setbeamercolor{quotation}{} +\setbeamercolor{quote}{parent=quotation} + +\setbeamercolor{page number in head/foot}{fg=fg!50!bg} + +\setbeamercolor{qed symbol}{parent=structure} + +\mode + diff --git a/my_docs/18/sc18/booth/themes/beamerfontthemeTACC16.sty b/my_docs/18/sc18/booth/themes/beamerfontthemeTACC16.sty new file mode 100644 index 000000000..d0fc325cc --- /dev/null +++ b/my_docs/18/sc18/booth/themes/beamerfontthemeTACC16.sty @@ -0,0 +1,21 @@ +% Copyright 2003 by Till Tantau +% +% This program can be redistributed and/or modified under the terms +% of the GNU Public License, version 2. + +\mode +\setbeamerfont{title}{parent=structure,size=\LARGE,series=\bfseries} +\setbeamerfont{author}{parent=structure,size=\large, series=\normalfont} +\setbeamerfont{frametitle}{parent=structure,size=\LARGE,series=\bfseries} +\setbeamerfont{framesubtitle}{parent=frametitle,size=\small} + +%\usefonttheme{professionalfonts} % using non standard fonts for beamer +%\usefonttheme{serif} % default family is serif +%\usepackage{fontspec} +%\setmainfont{Century Gothic} + +%\usepackage{fontspec} +\usepackage{libertine} + +\mode + diff --git a/my_docs/18/sc18/booth/themes/beamerinnerthemeTACC16.sty b/my_docs/18/sc18/booth/themes/beamerinnerthemeTACC16.sty new file mode 100644 index 000000000..f7f454e1d --- /dev/null +++ b/my_docs/18/sc18/booth/themes/beamerinnerthemeTACC16.sty @@ -0,0 +1,11 @@ +\mode + +\setbeamertemplate{itemize item}[triangle] +\setbeamertemplate{itemize subitem}[triangle] +\setbeamertemplate{itemize subsubitem}[triangle] +\setbeamertemplate{section in toc}{$\bullet$\hskip.5em\inserttocsection} +%\setbeamertemplate{subsection in toc}{} +\setbeamertemplate{subsubsection in toc}{} + +\mode + diff --git a/my_docs/18/sc18/booth/themes/beamerouterthemeTACC16-169.sty b/my_docs/18/sc18/booth/themes/beamerouterthemeTACC16-169.sty new file mode 100644 index 000000000..c62f9ed04 --- /dev/null +++ b/my_docs/18/sc18/booth/themes/beamerouterthemeTACC16-169.sty @@ -0,0 +1,247 @@ +% Copyright 2003 by Till Tantau +% +% This program can be redistributed and/or modified under the terms +% of the GNU Public License, version 2. + +\mode + +\usepackage{xcolor} +\usepackage{graphicx} +\usepackage{etoolbox} + +\pgfdeclareimage[width=\paperwidth]{titlebackground}{./figures/master169.png} +\pgfdeclareimage[width=\paperwidth]{background}{./figures/secondary169.png} + +\setbeamertemplate{background canvas}{% + \ifnum\c@framenumber=1% + \begin{picture}(0,0) + \put(-0.15,-250){% + \pgfuseimage{titlebackground} + } + %\put(0,-130.7){% + + %\begin{minipage}[b][45mm][t]{\textwidth}%{226mm} + %\begin{center} + % \usebeamerfont{title}{\MakeTextUppercase{\inserttitle}\par} + %\vspace{2ex} + %\usebeamerfont{author}{\insertauthor} + % \end{center} + %\end{minipage} + %} + \end{picture} + % On title page + \else% + % Other frames background + \begin{picture}(0,0) + \put(-0.15,-255.55){% + \pgfuseimage{background} + } + \end{picture} + \fi% +} + + +\setbeamertemplate{title page}{ +\vspace{40pt} +\begin{center} +\usebeamerfont{title} {\huge \inserttitle}\par +\vspace{4ex} +\usebeamerfont{author} { + \insertauthor +}\par +\vspace{2ex} +\usebeamerfont{institute}{ + \insertinstitute +} \par +\vspace{2ex} +\usebeamerfont{date}{ + \insertdate +} +\end{center} +} + + +\setbeamertemplate{frametitle}[default][center] +\setbeamertemplate{frametitle}{ + \makeatletter + \regexpatchcmd{\insertframetitle} + {(\c{usebeamertemplate}.*)\c{fi}} + {\c{NoCaseChange}\cB\{\1\cE\}\c{fi}} + {}{}% + \makeatother + \vskip1ex + \insertframetitle +} + +% Here we define what appears at the bottom of each slide: the "footline". +\setbeamertemplate{footline}{% + \leavevmode% + + % Horizontal line dividing the rest of the slide from the footer? + % hrule goes all the way across... + % \hrule height.3pt% + % With \rule, you can specify the thickness + % \rule[raise-height]{width}{thickness} + % \hspace{.025\textwidth}\rule{.95\textwidth}{.5pt} + + \hbox{% + \ifnum \thepage>1 + % On the left half of the footer, insert the TACC of + \begin{minipage}{.2\textwidth}% + \hskip .05\textwidth%Give horizontal space else this will set on the left edge of the slide! + % \includegraphics[width=.8\textwidth]{TACC_logo.png} + \end{minipage} + + + \begin{minipage}{\textwidth}% + % \vskip .023\textheight% + \raggedleft% + \setlength{\rightskip}{\textwidth} + \hbox{% + \begin{beamercolorbox}[wd=0.7\textwidth,ht=2.25ex,dp=1ex,left]{author in head/foot}% + \insertshorttitle{} \hskip .01\textwidth | \hskip .01\textwidth \insertdate{} \hskip .01\textwidth | \hskip .01\textwidth \insertframenumber{} + \end{beamercolorbox}% + } + + % + % If we are not on the first page, insert a page number + % For some reason, insertframenumber is buggy when you have fragile + % slides with verbatim environments in them... it tends to skip numbers + % for some reason! On the other hand, the pagenumber is incremented + % for *every* slide, including transition slides... + % \hfill\includegraphics[width=\textwidth]{tacc_ut.png} + \end{minipage}% + \begin{minipage}{.05\textwidth}% + \end{minipage}% + \fi %\thepage>1 + }% + \vskip .023\textheight% + +} + + + + +\ifTACCheadernav + +\usesectionheadtemplate +{\hfill\insertsectionhead} +{\hfill\color{fg!50!bg}\insertsectionhead} + +% Head +\ifbeamer@compress + +% Here we define how the top of the frame looks, the "headline". +\setbeamertemplate{headline} +{% + \ifnum \thepage>1 + \leavevmode% + \begin{beamercolorbox}[wd=.5\paperwidth,ht=2.5ex,dp=1.125ex]{% + section in head/foot}% + \insertsectionnavigationhorizontal{.5\paperwidth}{\hskip0pt plus1filll}{}% + \end{beamercolorbox}% + \begin{beamercolorbox}[wd=.5\paperwidth,ht=2.5ex,dp=1.125ex]{% + subsection in head/foot}% + \insertsubsectionnavigationhorizontal{% + .5\paperwidth}{}{\hskip0pt plus1filll}% + \end{beamercolorbox}% + \fi %\thepage>1 +} + +\else% Not compressed + +\setbeamertemplate{headline} +{% + \ifnum \thepage>1 + \leavevmode% + \@tempdimb=2.4375ex% + \ifnum\beamer@subsectionmax<\beamer@sectionmax% + \multiply\@tempdimb by\beamer@sectionmax% + \else% + \multiply\@tempdimb by\beamer@subsectionmax% + \fi% + \ifdim\@tempdimb>0pt% + \advance\@tempdimb by 1.125ex% + \begin{beamercolorbox}[wd=.5\paperwidth,ht=\@tempdimb]{% + section in head/foot}% + \vbox to\@tempdimb{\vfil\insertsectionnavigation{.5\paperwidth}\vfil}% + \end{beamercolorbox}% + \begin{beamercolorbox}[wd=.5\paperwidth,ht=\@tempdimb]{% + subsection in head/foot}% + \vbox to\@tempdimb{\vfil\insertsubsectionnavigation{.5\paperwidth}\vfil}% + \end{beamercolorbox}% + \fi% + \fi % \thepage>1 +} + +\fi % end if compressed +\fi % TACCheadernav + + +\ifTACCheadertree + +\setbeamertemplate{headline} +{ + \begin{beamercolorbox}[wd=\paperwidth,colsep=1.5pt]{upper separation line head} + \end{beamercolorbox} + % + % Place short title + % + \begin{beamercolorbox}[wd=\paperwidth,ht=2.5ex,dp=1.125ex,% + leftskip=.3cm,rightskip=.3cm plus1fil]{title in head/foot} + \usebeamerfont{title in head/foot}\insertshorttitle + \end{beamercolorbox} + + % + % Place section + % + \begin{beamercolorbox}[wd=\paperwidth,ht=2.5ex,dp=1.125ex,% + leftskip=.3cm,rightskip=.3cm plus1fil]{section in head/foot} + \usebeamerfont{section in head/foot}% + %\ifbeamer@tree@showhooks + \setbox\beamer@tempbox=\hbox{\insertsectionhead}% + \ifdim\wd\beamer@tempbox>1pt% + \hskip2pt\raise1.9pt\hbox{\vrule width0.4pt height1.875ex\vrule width 5pt height0.4pt}% + \hskip1pt% + \fi + \insertsectionhead + \end{beamercolorbox} + +% +% Place subsection +% +\begin{beamercolorbox}[wd=\paperwidth,ht=2.5ex,dp=1.125ex,% + leftskip=.3cm,rightskip=.3cm plus1fil]{subsection in head/foot} + \usebeamerfont{subsection in head/foot}% + %\ifbeamer@tree@showhooks + \setbox\beamer@tempbox=\hbox{\insertsubsectionhead}% + \ifdim\wd\beamer@tempbox>1pt% + \hskip9.4pt\raise1.9pt\hbox{\vrule width0.4pt height1.875ex\vrule width 5pt height0.4pt}% + \hskip1pt% + \fi + \insertsubsectionhead +\end{beamercolorbox} + +% +% Place final separation box +% + \begin{beamercolorbox}[wd=\paperwidth,colsep=1.5pt + ]{lower separation line head} + \end{beamercolorbox} + + % + % Another matching rule which helps to frame the content + % + \hspace{.025\textwidth}\rule{.95\textwidth}{.5pt} +} +\fi % TACCheadertree + + +% The following command suppresses all navigation symbols. This is +% necessary in the TACC theme, since it overlaps where we want the +% logo to be. +\setbeamertemplate{navigation symbols}{} + + +\mode + diff --git a/my_docs/18/sc18/booth/themes/beamerouterthemeTACC16.sty b/my_docs/18/sc18/booth/themes/beamerouterthemeTACC16.sty new file mode 100644 index 000000000..c5b178018 --- /dev/null +++ b/my_docs/18/sc18/booth/themes/beamerouterthemeTACC16.sty @@ -0,0 +1,247 @@ +% Copyright 2003 by Till Tantau +% +% This program can be redistributed and/or modified under the terms +% of the GNU Public License, version 2. + +\mode + +\usepackage{xcolor} +\usepackage{graphicx} +\usepackage{etoolbox} + +\pgfdeclareimage[width=\paperwidth]{titlebackground}{master.jpg} +\pgfdeclareimage[width=\paperwidth]{background}{secondary.jpg} + +\setbeamertemplate{background canvas}{% + \ifnum\c@framenumber=1% + \begin{picture}(0,0) + \put(0,-273){% + \pgfuseimage{titlebackground} + } + %\put(0,-130.7){% + + %\begin{minipage}[b][45mm][t]{\textwidth}%{226mm} + %\begin{center} + % \usebeamerfont{title}{\MakeTextUppercase{\inserttitle}\par} + %\vspace{2ex} + %\usebeamerfont{author}{\insertauthor} + % \end{center} + %\end{minipage} + %} + \end{picture} + % On title page + \else% + % Other frames background + \begin{picture}(0,0) + \put(0,-273){% + \pgfuseimage{background} + } + \end{picture} + \fi% +} + + +\setbeamertemplate{title page}{ +\vspace{40pt} +\begin{center} +\usebeamerfont{title} {\huge \inserttitle}\par +\vspace{4ex} +\usebeamerfont{author} { + \insertauthor +}\par +\vspace{2ex} +\usebeamerfont{institute}{ + \insertinstitute +} \par +\vspace{2ex} +\usebeamerfont{date}{ + \insertdate +} +\end{center} +} + + +\setbeamertemplate{frametitle}[default][center] +\setbeamertemplate{frametitle}{ + \makeatletter + \regexpatchcmd{\insertframetitle} + {(\c{usebeamertemplate}.*)\c{fi}} + {\c{NoCaseChange}\cB\{\1\cE\}\c{fi}} + {}{}% + \makeatother + \vskip1ex + \insertframetitle +} + +% Here we define what appears at the bottom of each slide: the "footline". +\setbeamertemplate{footline}{% + \leavevmode% + + % Horizontal line dividing the rest of the slide from the footer? + % hrule goes all the way across... + % \hrule height.3pt% + % With \rule, you can specify the thickness + % \rule[raise-height]{width}{thickness} + % \hspace{.025\textwidth}\rule{.95\textwidth}{.5pt} + + \hbox{% + \ifnum \thepage>1 + % On the left half of the footer, insert the TACC of + \begin{minipage}{.2\textwidth}% + \hskip .05\textwidth%Give horizontal space else this will set on the left edge of the slide! + % \includegraphics[width=.8\textwidth]{figures/TACC_logo.png} + \end{minipage} + + + \begin{minipage}{\textwidth}% + % \vskip .023\textheight% + \raggedleft% + \setlength{\rightskip}{\textwidth} + \hbox{% + \begin{beamercolorbox}[wd=0.7\textwidth,ht=2.25ex,dp=1ex,left]{author in head/foot}% + \insertshorttitle{} \hskip .01\textwidth | \hskip .01\textwidth \insertdate{} \hskip .01\textwidth | \hskip .01\textwidth \insertframenumber{} + \end{beamercolorbox}% + } + + % + % If we are not on the first page, insert a page number + % For some reason, insertframenumber is buggy when you have fragile + % slides with verbatim environments in them... it tends to skip numbers + % for some reason! On the other hand, the pagenumber is incremented + % for *every* slide, including transition slides... + % \hfill\includegraphics[width=\textwidth]{figures/tacc_ut.png} + \end{minipage}% + \begin{minipage}{.05\textwidth}% + \end{minipage}% + \fi %\thepage>1 + }% + \vskip .023\textheight% + +} + + + + +\ifTACCheadernav + +\usesectionheadtemplate +{\hfill\insertsectionhead} +{\hfill\color{fg!50!bg}\insertsectionhead} + +% Head +\ifbeamer@compress + +% Here we define how the top of the frame looks, the "headline". +\setbeamertemplate{headline} +{% + \ifnum \thepage>1 + \leavevmode% + \begin{beamercolorbox}[wd=.5\paperwidth,ht=2.5ex,dp=1.125ex]{% + section in head/foot}% + \insertsectionnavigationhorizontal{.5\paperwidth}{\hskip0pt plus1filll}{}% + \end{beamercolorbox}% + \begin{beamercolorbox}[wd=.5\paperwidth,ht=2.5ex,dp=1.125ex]{% + subsection in head/foot}% + \insertsubsectionnavigationhorizontal{% + .5\paperwidth}{}{\hskip0pt plus1filll}% + \end{beamercolorbox}% + \fi %\thepage>1 +} + +\else% Not compressed + +\setbeamertemplate{headline} +{% + \ifnum \thepage>1 + \leavevmode% + \@tempdimb=2.4375ex% + \ifnum\beamer@subsectionmax<\beamer@sectionmax% + \multiply\@tempdimb by\beamer@sectionmax% + \else% + \multiply\@tempdimb by\beamer@subsectionmax% + \fi% + \ifdim\@tempdimb>0pt% + \advance\@tempdimb by 1.125ex% + \begin{beamercolorbox}[wd=.5\paperwidth,ht=\@tempdimb]{% + section in head/foot}% + \vbox to\@tempdimb{\vfil\insertsectionnavigation{.5\paperwidth}\vfil}% + \end{beamercolorbox}% + \begin{beamercolorbox}[wd=.5\paperwidth,ht=\@tempdimb]{% + subsection in head/foot}% + \vbox to\@tempdimb{\vfil\insertsubsectionnavigation{.5\paperwidth}\vfil}% + \end{beamercolorbox}% + \fi% + \fi % \thepage>1 +} + +\fi % end if compressed +\fi % TACCheadernav + + +\ifTACCheadertree + +\setbeamertemplate{headline} +{ + \begin{beamercolorbox}[wd=\paperwidth,colsep=1.5pt]{upper separation line head} + \end{beamercolorbox} + % + % Place short title + % + \begin{beamercolorbox}[wd=\paperwidth,ht=2.5ex,dp=1.125ex,% + leftskip=.3cm,rightskip=.3cm plus1fil]{title in head/foot} + \usebeamerfont{title in head/foot}\insertshorttitle + \end{beamercolorbox} + + % + % Place section + % + \begin{beamercolorbox}[wd=\paperwidth,ht=2.5ex,dp=1.125ex,% + leftskip=.3cm,rightskip=.3cm plus1fil]{section in head/foot} + \usebeamerfont{section in head/foot}% + %\ifbeamer@tree@showhooks + \setbox\beamer@tempbox=\hbox{\insertsectionhead}% + \ifdim\wd\beamer@tempbox>1pt% + \hskip2pt\raise1.9pt\hbox{\vrule width0.4pt height1.875ex\vrule width 5pt height0.4pt}% + \hskip1pt% + \fi + \insertsectionhead + \end{beamercolorbox} + +% +% Place subsection +% +\begin{beamercolorbox}[wd=\paperwidth,ht=2.5ex,dp=1.125ex,% + leftskip=.3cm,rightskip=.3cm plus1fil]{subsection in head/foot} + \usebeamerfont{subsection in head/foot}% + %\ifbeamer@tree@showhooks + \setbox\beamer@tempbox=\hbox{\insertsubsectionhead}% + \ifdim\wd\beamer@tempbox>1pt% + \hskip9.4pt\raise1.9pt\hbox{\vrule width0.4pt height1.875ex\vrule width 5pt height0.4pt}% + \hskip1pt% + \fi + \insertsubsectionhead +\end{beamercolorbox} + +% +% Place final separation box +% + \begin{beamercolorbox}[wd=\paperwidth,colsep=1.5pt + ]{lower separation line head} + \end{beamercolorbox} + + % + % Another matching rule which helps to frame the content + % + \hspace{.025\textwidth}\rule{.95\textwidth}{.5pt} +} +\fi % TACCheadertree + + +% The following command suppresses all navigation symbols. This is +% necessary in the TACC theme, since it overlaps where we want the +% logo to be. +\setbeamertemplate{navigation symbols}{} + + +\mode + diff --git a/my_docs/18/sc18/booth/themes/beamerthemeTACC16-169.sty b/my_docs/18/sc18/booth/themes/beamerthemeTACC16-169.sty new file mode 100644 index 000000000..22caf9a05 --- /dev/null +++ b/my_docs/18/sc18/booth/themes/beamerthemeTACC16-169.sty @@ -0,0 +1,38 @@ +%% TACC theme for beamer + +\newif\ifTACCheadernav +\DeclareOption{headernav}{\global\TACCheadernavtrue} + +\newif\ifTACCheadertree +\DeclareOption{headertree}{\global\TACCheadertreetrue} +\ProcessOptions + +\mode + +\makeatletter + \def\beamer@calltheme#1#2#3{% + \def\beamer@themelist{#2} + \@for\beamer@themename:=\beamer@themelist\do + {\usepackage[{#1}]{\beamer@themelocation/#3\beamer@themename}}} + + \def\usefolder#1{ + \def\beamer@themelocation{#1} + } + \def\beamer@themelocation{} + +\usefolder{themes} +\usefonttheme{TACC16} +\useinnertheme{TACC16} +\useoutertheme{TACC16-169} +\usecolortheme{TACC16} + +\mode + + +\newcommand{\event}[1]{% + \makeatletter% + \def\TACC@eventname{#1}% + \makeatother} + +\newcommand{\sectionframe}[1]{\section{#1}\frame{\Large\textbf{#1}}} +\newcommand{\subsectionframe}[1]{\subsection{#1}\frame{\large\textbf{#1}}} diff --git a/my_docs/18/sc18/booth/themes/beamerthemeTACC16.sty b/my_docs/18/sc18/booth/themes/beamerthemeTACC16.sty new file mode 100644 index 000000000..750bdd388 --- /dev/null +++ b/my_docs/18/sc18/booth/themes/beamerthemeTACC16.sty @@ -0,0 +1,26 @@ +%% TACC theme for beamer + +\newif\ifTACCheadernav +\DeclareOption{headernav}{\global\TACCheadernavtrue} + +\newif\ifTACCheadertree +\DeclareOption{headertree}{\global\TACCheadertreetrue} +\ProcessOptions + +\mode + +\usefonttheme{TACC16} +\useinnertheme{TACC16} +\useoutertheme{TACC16} +\usecolortheme{TACC16} + +\mode + + +\newcommand{\event}[1]{% + \makeatletter% + \def\TACC@eventname{#1}% + \makeatother} + +\newcommand{\sectionframe}[1]{\section{#1}\frame{\Large\textbf{#1}}} +\newcommand{\subsectionframe}[1]{\subsection{#1}\frame{\large\textbf{#1}}} diff --git a/my_docs/18/sc18/booth/themes/example.pdf b/my_docs/18/sc18/booth/themes/example.pdf new file mode 100644 index 000000000..add373eee Binary files /dev/null and b/my_docs/18/sc18/booth/themes/example.pdf differ diff --git a/my_docs/18/sc18/booth/themes/license.tex b/my_docs/18/sc18/booth/themes/license.tex new file mode 100644 index 000000000..74ff86759 --- /dev/null +++ b/my_docs/18/sc18/booth/themes/license.tex @@ -0,0 +1,14 @@ + +\begin{frame}{License} +\footnotesize +\textcopyright The University of Texas at Austin, \the\year\\ +\vspace{0.5 cm} +This work is licensed under the Creative Commons Attribution Non-Commercial 3.0 Unported License. To view a copy of this license, +visit http://creativecommons.org/licenses/by-nc/3.0/\\ +\vspace{0.5 cm} +When attributing this work, please use the following text: +"Designing and Administering Large-scale Systems", Texas Advanced Computing Center, \the\year. Available under a Creative Commons Attribution Non-Commercial 3.0 Unported License. +\newline +\newline +\includegraphics[width=1cm]{./figures/cc.png} +\end{frame} \ No newline at end of file diff --git a/my_docs/19/eb_users/beamercolorthemeTACC.sty b/my_docs/19/eb_users/beamercolorthemeTACC.sty deleted file mode 120000 index 8d27e673a..000000000 --- a/my_docs/19/eb_users/beamercolorthemeTACC.sty +++ /dev/null @@ -1 +0,0 @@ -../../beamer/beamercolorthemeTACC.sty \ No newline at end of file diff --git a/my_docs/19/eb_users/beamercolorthemeTACC.sty b/my_docs/19/eb_users/beamercolorthemeTACC.sty new file mode 100755 index 000000000..78beb6a4a --- /dev/null +++ b/my_docs/19/eb_users/beamercolorthemeTACC.sty @@ -0,0 +1,323 @@ +% Copyright 2003 by Till Tantau . +% +% This program can be redistributed and/or modified under the terms +% of the GNU Public License, version 2. + +\mode + +% I downloaded a gimp color palette from +% http://maururu.net/2007/latex-beamer-color-palette/ +% Which provides rgb values (I think) for several of the +% default beamer themes. You can open this in gimp by +% opening the Palettes dialog, right-clicking anywhere and choosing +% 'Import Palette'. A color in there called 'default added blue' +% appeared to be approximately what I wanted. It had the triple +% of values 141 145 208. If you double-click on this in the +% palette editor it gives you a bunch of information. You can't +% use these values directly to set a color...it just comes out white. +% I think definecolor is expecting something normalized by 255. Yes! + + +% bluish colors +\definecolor{defaddedblue}{rgb}{0.5529,.5686,.8157} % 141,145,208 +\definecolor{defblockheader}{rgb}{.1921,.2235,.6824} % 49,57,174 +\definecolor{flyaddedblue}{rgb}{.5961,.6118,.8431} % 152,156,215 + +% bluish-greys +\definecolor{beetleaddedblue1}{rgb}{.3333,.4039,.6196} % 85 103 158, dark +\definecolor{beetleaddedblue2}{rgb}{.4510,.5098,.7020} % 115 130 179, medium +\definecolor{beetleaddedblue3}{rgb}{.7059,.7255,.7961} % 180 185 203, light (greyest) + +% very light blue-greys +\definecolor{deflightouter1}{rgb}{.7608,.7647,.9020} % 194 195 230, dark +\definecolor{deflightouter2}{rgb}{.8 ,.8039,.9176} % 204 205 234, medium +\definecolor{deflightouter3}{rgb}{.8392,.8431,.9373} % 214 215 239, light + +% reddish colors +\definecolor{flyalertblockheader}{rgb}{.7373,.1294,.1333} % 188 33 34 +\definecolor{flyaddedred}{rgb}{.8667,.5647,.5647}% 221 144 144 +\definecolor{beaverouterframe}{rgb}{.5529,.0980,.0980}% 141 25 25 + +% greens (green is used for 'examples' in beamer) +\definecolor{defexblock}{rgb}{.9098,.9333,.9020} % 232 238 230, light +\definecolor{defaddedgreen}{rgb}{.5412,.6510,.4706} % 138 166 120, medium +\definecolor{defexblockheader}{rgb}{.1686,.3647,.0392} % 43 93 10, dark + +\definecolor{lightexblock}{rgb}{.9137,.9451,.9020} % 233 241 230, light +\definecolor{lightexblockheader}{rgb}{.8235,.8980,.8} % 210 229 204, medium +\definecolor{lightexblockheadertext}{rgb}{.2431,.5098,.0745} % 62 130 19, dark + + +%%% +% Set the normal text color +%%% +\setbeamercolor{normal text}{fg=black,bg=white} + +%%% +% Set the alerted text color +%%% +% \setbeamercolor{alerted text}{fg=red} +\setbeamercolor{alerted text}{fg=red!50!black} % half black/half red for green bg +% \setbeamercolor{alerted text}{fg=beaverouterframe} +% \setbeamercolor{alerted text}{fg=defblockheader} % doesn't stand out enough + + +% Set the 'example' text +\setbeamercolor{example text}{fg=green!50!black} + +\setbeamercolor{structure}{fg=black} + +\setbeamercolor{background canvas}{parent=normal text} +\setbeamercolor{background}{parent=background canvas} + +\setbeamercolor{palette primary}{use=structure,fg=structure.fg} +\setbeamercolor{palette secondary}{use=structure,fg=structure.fg!75!black} +\setbeamercolor{palette tertiary}{use=structure,fg=structure.fg!50!black} +\setbeamercolor{palette quaternary}{fg=black} + +\setbeamercolor{palette sidebar primary}{use=normal text,fg=normal text.fg} +\setbeamercolor{palette sidebar secondary}{use=structure,fg=structure.fg} +\setbeamercolor{palette sidebar tertiary}{use=normal text,fg=normal text.fg} +\setbeamercolor{palette sidebar quaternary}{use=structure,fg=structure.fg} + +\setbeamercolor{math text}{} +\setbeamercolor{math text inlined}{parent=math text} +\setbeamercolor{math text displayed}{parent=math text} + +\setbeamercolor{normal text in math text}{} + +\setbeamercolor{local structure}{parent=structure} + +\setbeamercolor{titlelike}{parent=structure} + +\setbeamercolor{title}{parent=titlelike} +\setbeamercolor{title in head/foot}{parent=palette quaternary} +\setbeamercolor{title in sidebar}{parent=palette sidebar quaternary} + +\setbeamercolor{subtitle}{parent=title} + +\setbeamercolor{author}{} +\setbeamercolor{author in head/foot}{parent=palette primary} +\setbeamercolor{author in sidebar}{use=palette sidebar tertiary,fg=palette sidebar tertiary.fg} + +\setbeamercolor{institute}{} +\setbeamercolor{institute in head/foot}{parent=palette tertiary} +\setbeamercolor{institute in sidebar}{use=palette sidebar tertiary,fg=palette sidebar tertiary.fg} + +\setbeamercolor{date}{} +\setbeamercolor{date in head/foot}{parent=palette secondary} +\setbeamercolor{date in sidebar}{use=palette sidebar tertiary,fg=palette sidebar tertiary.fg} + +\setbeamercolor{titlegraphic}{} + +\setbeamercolor{part name}{} +\setbeamercolor{part title}{parent=titlelike} + +\setbeamercolor{section in toc}{parent=structure} +\setbeamercolor{section in toc shaded}{parent=section in toc} +\setbeamercolor{section in head/foot}{parent=palette tertiary} +\setbeamercolor{section in sidebar}{parent=palette sidebar secondary} +\setbeamercolor{section in sidebar shaded}{use=section in sidebar,fg=section in sidebar.fg!40!bg} +\setbeamercolor{section number projected}{parent=item projected} + +\setbeamercolor{subsection in toc}{} +\setbeamercolor{subsection in toc shaded}{parent=subsection in toc} +\setbeamercolor{subsection in head/foot}{parent=palette secondary} +\setbeamercolor{subsection in sidebar}{parent=palette sidebar primary} +\setbeamercolor{subsection in sidebar shaded}{use=subsection in sidebar,fg=subsection in sidebar.fg!40!bg} +\setbeamercolor{subsection number projected}{parent={subitem projected}} + +\setbeamercolor{subsubsection in toc}{parent=subsection in toc} +\setbeamercolor{subsubsection in toc shaded}{parent=subsubsection in toc} +\setbeamercolor{subsubsection in head/foot}{parent=subsection in head/foot} +\setbeamercolor{subsubsection in sidebar}{parent=subsection in sidebar} +\setbeamercolor{subsubsection in sidebar shaded}{parent=subsection in sidebar shaded} +\setbeamercolor{subsubsection number projected}{parent=subsubitem projected} + +\setbeamercolor{headline}{} +\setbeamercolor{footline}{} + +\setbeamercolor{sidebar}{} +\setbeamercolor{sidebar left}{parent=sidebar} +\setbeamercolor{sidebar right}{parent=sidebar} + +\setbeamercolor{logo}{parent=palette secondary} + +\setbeamercolor{frametitle}{parent=titlelike} +\setbeamercolor{framesubtitle}{parent=frametitle} + +\setbeamercolor{frametitle right}{parent=frametitle} + +\setbeamercolor{caption}{} +\setbeamercolor{caption name}{parent=structure} + +\setbeamercolor{button}{use=local structure,bg=local structure.fg!50!bg,fg=white} +\setbeamercolor{button border}{use=button,fg=button.bg} +\setbeamercolor{navigation symbols}{use=structure,fg=structure.fg!40!bg} +\setbeamercolor{navigation symbols dimmed}{use=structure,fg=structure.fg!20!bg} +\setbeamercolor{mini frame}{parent=section in head/foot} + +% Color expressions are defined in the xcolor package +% +% Ex: Mixture of 40% green, 60% yellow: green!40!yellow +% +% The complement of any color can be obtained by prepending +% a minus sign: -green!40!yellow +% +% One can also combine up to three colors (in differing proportions) +% using the rgb command. For example, the following command combines +% 3 parts of the first color, with 2 parts of the second, and one part +% "red" +% +%\color{rgb:-green!40!yellow,3;green!40!yellow,2;red,1} +% Unfortunately, I don't think this works as an argument to setbeamercolor... +% "Orange" bg=green!30!yellow!30!red +% close to burnt orange: red!75!green +% lightgray is a color, but gray!25!white looks better +% +% A nice pair of greens +% (dark, a little too dark to be under black text...) -red!75!green!50!blue!25 +% (light) -red!75!green!50!blue!25!gray +% +% Some colors are only available via options to the xcolor package, eg. +% x11names,DarkOliveGreen4 +% svgnames, Chartreuse +% dvipsnames, ForestGreen +% +% but beamer does not seem to have any of these. +% +% The base color names which are always available are: +% black +% blue +% brown +% cyan +% darkgray +% gray +% green +% lightgray +% lime +% magenta +% olive +% orange +% pink +% purple +% red +% teal +% violet +% white +% yellow + +% From the beamer user guide, pg. 167 +% Inner color themes only specify the colors of elements used in inner +% themes. Most noticably, they specify the colors used for blocks. +% ... + +% Example color definition +% beamercolorthemedefault.sty:\definecolor{beamer@blendedblue}{rgb}{0.2,0.2,0.7} +% beamercolorthemedefault.sty:\setbeamercolor{structure}{fg=beamer@blendedblue} + +% The greens +% \setbeamercolor{block body}{bg=-red!75!green!50!blue!25!gray} +% \setbeamercolor{block title}{parent=structure,bg=-red!75!green!50!blue!25,fg=-red!75!green!50!blue!25!gray} + +%%% +% Set the block body and title background/foreground colors +%%% +% \setbeamercolor{block body}{bg=flyaddedblue} +% \setbeamercolor{block title}{bg=defblockheader,fg=flyaddedblue} + +% Purplish blues, too dark overall +% \setbeamercolor{block body}{bg=beetleaddedblue3} +% \setbeamercolor{block title}{bg=beetleaddedblue2,fg=beetleaddedblue3} + +% Very light blue greys +% 1. Not enough contrast +% \setbeamercolor{block body}{bg=deflightouter3} +% \setbeamercolor{block title}{bg=deflightouter2,fg=deflightouter3} + +% 2. Not enough contrast +% \setbeamercolor{block body}{bg=deflightouter3} +% \setbeamercolor{block title}{bg=deflightouter1,fg=deflightouter3} + +% 3. Combination of deflightouter and fly. The block bg is +% lighter than the all-beetle color scheme I previously thought was best. +% Currently I like this one the best +\setbeamercolor{block body}{bg=deflightouter3} +\setbeamercolor{block title}{bg=beetleaddedblue2,fg=deflightouter3} + +% 4. Greens. Looks like a highlighter. I don't really trust greens +% on projectors... It's almost too bright/hurts your eyes. +% \setbeamercolor{block body}{bg=defexblock} +% \setbeamercolor{block title}{bg=defaddedgreen,fg=defexblock} + +% This looks pretty good ... it's similar to the greens we had before +% but should be lighter. The blocks are just a little too "mint" colored +% though... +% \setbeamercolor{block body}{bg=defexblock} +% \setbeamercolor{block title}{bg=defexblockheader,fg=defexblock} + +% Pea Soup! +%\setbeamercolor{block body}{bg=defaddedgreen} +%\setbeamercolor{block title}{bg=defexblockheader,fg=defaddedgreen} + + +% Changing these didn't seem to do anything...I had to change the +% 'alerted text' color instead +\setbeamercolor{block body alerted}{} +\setbeamercolor{block body example}{} +\setbeamercolor{block title alerted}{parent=alerted text} +\setbeamercolor{block title example}{parent=example text} + +\setbeamercolor{item}{parent=local structure} +\setbeamercolor{subitem}{parent=item} +\setbeamercolor{subsubitem}{parent=subitem} + +\setbeamercolor{item projected}{parent=item,use=item,fg=white,bg=item.fg} +\setbeamercolor{subitem projected}{parent=item projected} +\setbeamercolor{subsubitem projected}{parent=subitem projected} + +\setbeamercolor{enumerate item}{parent=item} +\setbeamercolor{enumerate subitem}{parent=subitem} +\setbeamercolor{enumerate subsubitem}{parent=subsubitem} + +\setbeamercolor{itemize item}{parent=item} +\setbeamercolor{itemize subitem}{parent=subitem} +\setbeamercolor{itemize subsubitem}{parent=subsubitem} + +\setbeamercolor{itemize/enumerate body}{} +\setbeamercolor{itemize/enumerate subbody}{} +\setbeamercolor{itemize/enumerate subsubbody}{} + +\setbeamercolor{description item}{parent=item} + +\setbeamercolor{bibliography item}{parent=item} + +\setbeamercolor{bibliography entry author}{use=structure,fg=structure.fg} +\setbeamercolor{bibliography entry title}{use=normal text,fg=normal text.fg} +\setbeamercolor{bibliography entry location}{use=structure,fg=structure.fg!65!bg} +\setbeamercolor{bibliography entry note}{use=structure,fg=structure.fg!65!bg} + +\setbeamercolor{separation line}{} + +\setbeamercolor{upper separation line head}{parent=separation line} +\setbeamercolor{middle separation line head}{parent=separation line} +\setbeamercolor{lower separation line head}{parent=separation line} + +\setbeamercolor{upper separation line foot}{parent=separation line} +\setbeamercolor{middle separation line foot}{parent=separation line} +\setbeamercolor{lower separation line foot}{parent=separation line} + +\setbeamercolor{abstract}{} +\setbeamercolor{abstract title}{parent=structure} + +\setbeamercolor{verse}{} + +\setbeamercolor{quotation}{} +\setbeamercolor{quote}{parent=quotation} + +\setbeamercolor{page number in head/foot}{fg=fg!50!bg} + +\setbeamercolor{qed symbol}{parent=structure} + +\mode + diff --git a/my_docs/19/eb_users/beamercolorthemeTACC16.sty b/my_docs/19/eb_users/beamercolorthemeTACC16.sty deleted file mode 120000 index 58415801b..000000000 --- a/my_docs/19/eb_users/beamercolorthemeTACC16.sty +++ /dev/null @@ -1 +0,0 @@ -../../beamer/beamercolorthemeTACC16.sty \ No newline at end of file diff --git a/my_docs/19/eb_users/beamercolorthemeTACC16.sty b/my_docs/19/eb_users/beamercolorthemeTACC16.sty new file mode 100755 index 000000000..779dde91f --- /dev/null +++ b/my_docs/19/eb_users/beamercolorthemeTACC16.sty @@ -0,0 +1,192 @@ +% Copyright 2003 by Till Tantau . +% +% This program can be redistributed and/or modified under the terms +% of the GNU Public License, version 2. + +\mode + +\usepackage{textcase,regexpatch} + +\setbeamertemplate{blocks}[rounded][shadow=true] + + +\definecolor{TACCred}{RGB}{180,13,29} +\definecolor{TACCorange}{RGB}{210,104,43} +\definecolor{TACCblue}{RGB}{108, 134, 191} +\definecolor{TACCgreen}{RGB}{23,106,70} + +% I downloaded a gimp color palette from +% http://maururu.net/2007/latex-beamer-color-palette/ +% Which provides rgb values (I think) for several of the +% default beamer themes. You can open this in gimp by +% opening the Palettes dialog, right-clicking anywhere and choosing +% 'Import Palette'. A color in there called 'default added blue' +% appeared to be approximately what I wanted. It had the triple +% of values 141 145 208. If you double-click on this in the +% palette editor it gives you a bunch of information. You can't +% use these values directly to set a color...it just comes out white. +% I think definecolor is expecting something normalized by 255. Yes! + + +%%% +% Set the normal text color +%%% +\setbeamercolor{normal text}{fg=black} %,bg=white} +\setbeamercolor{example text}{fg=TACCgreen} +\setbeamercolor{alerted text}{fg=TACCorange} + + +\setbeamercolor{structure}{fg=black} +%\setbeamercolor{structure}{fg=black} + +\setbeamercolor{background canvas}{parent=normal text} +\setbeamercolor{background}{parent=background canvas} + +\setbeamercolor{palette primary}{use=structure,fg=structure.fg} +\setbeamercolor{palette secondary}{use=structure,fg=structure.fg!75!black} +\setbeamercolor{palette tertiary}{use=structure,fg=structure.fg!50!black} +\setbeamercolor{palette quaternary}{fg=black} + +\setbeamercolor{palette sidebar primary}{use=normal text,fg=normal text.fg} +\setbeamercolor{palette sidebar secondary}{use=structure,fg=structure.fg} +\setbeamercolor{palette sidebar tertiary}{use=normal text,fg=normal text.fg} +\setbeamercolor{palette sidebar quaternary}{use=structure,fg=structure.fg} + +\setbeamercolor{math text}{} +\setbeamercolor{math text inlined}{parent=math text} +\setbeamercolor{math text displayed}{parent=math text} + +\setbeamercolor{normal text in math text}{} + +\setbeamercolor{local structure}{parent=structure} + +\setbeamercolor{titlelike}{parent=structure} + +\setbeamercolor{title}{parent=titlelike} +\setbeamercolor{title in head/foot}{parent=palette quaternary} +\setbeamercolor{title in sidebar}{parent=palette sidebar quaternary} + +\setbeamercolor{subtitle}{parent=title} + +\setbeamercolor{author}{} +\setbeamercolor{author in head/foot}{parent=palette primary} +\setbeamercolor{author in sidebar}{use=palette sidebar tertiary,fg=palette sidebar tertiary.fg} + +\setbeamercolor{institute}{} +\setbeamercolor{institute in head/foot}{parent=palette tertiary} +\setbeamercolor{institute in sidebar}{use=palette sidebar tertiary,fg=palette sidebar tertiary.fg} + +\setbeamercolor{date}{} +\setbeamercolor{date in head/foot}{parent=palette secondary} +\setbeamercolor{date in sidebar}{use=palette sidebar tertiary,fg=palette sidebar tertiary.fg} + +\setbeamercolor{titlegraphic}{} + +\setbeamercolor{part name}{} +\setbeamercolor{part title}{parent=titlelike} + +\setbeamercolor{section in toc}{parent=structure} +\setbeamercolor{section in toc shaded}{parent=section in toc} +\setbeamercolor{section in head/foot}{parent=palette tertiary} +\setbeamercolor{section in sidebar}{parent=palette sidebar secondary} +\setbeamercolor{section in sidebar shaded}{use=section in sidebar,fg=section in sidebar.fg!40!bg} +\setbeamercolor{section number projected}{parent=item projected} + +\setbeamercolor{subsection in toc}{} +\setbeamercolor{subsection in toc shaded}{parent=subsection in toc} +\setbeamercolor{subsection in head/foot}{parent=palette secondary} +\setbeamercolor{subsection in sidebar}{parent=palette sidebar primary} +\setbeamercolor{subsection in sidebar shaded}{use=subsection in sidebar,fg=subsection in sidebar.fg!40!bg} +\setbeamercolor{subsection number projected}{parent={subitem projected}} + +\setbeamercolor{subsubsection in toc}{parent=subsection in toc} +\setbeamercolor{subsubsection in toc shaded}{parent=subsubsection in toc} +\setbeamercolor{subsubsection in head/foot}{parent=subsection in head/foot} +\setbeamercolor{subsubsection in sidebar}{parent=subsection in sidebar} +\setbeamercolor{subsubsection in sidebar shaded}{parent=subsection in sidebar shaded} +\setbeamercolor{subsubsection number projected}{parent=subsubitem projected} + +\setbeamercolor{headline}{} +\setbeamercolor{footline}{} + +\setbeamercolor{sidebar}{} +\setbeamercolor{sidebar left}{parent=sidebar} +\setbeamercolor{sidebar right}{parent=sidebar} + +\setbeamercolor{logo}{parent=palette secondary} + +\setbeamercolor{frametitle}{parent=titlelike} +\setbeamercolor{framesubtitle}{parent=frametitle} + +\setbeamercolor{frametitle right}{parent=frametitle} + +\setbeamercolor{caption}{} +\setbeamercolor{caption name}{parent=structure} + +\setbeamercolor{button}{use=local structure,bg=local structure.fg!50!bg,fg=white} +\setbeamercolor{button border}{use=button,fg=button.bg} +\setbeamercolor{navigation symbols}{use=structure,fg=structure.fg!40!bg} +\setbeamercolor{navigation symbols dimmed}{use=structure,fg=structure.fg!20!bg} +\setbeamercolor{mini frame}{parent=section in head/foot} + +\setbeamercolor{block body}{fg=black} +\setbeamercolor{block body alerted}{fg=black} +\setbeamercolor{block body example}{fg=black} + +\setbeamercolor{block title}{bg=TACCblue,fg=white} +\setbeamercolor{block title alerted}{bg=TACCred,fg=white} +\setbeamercolor{block title example}{bg=TACCgreen,fg=white} + +\setbeamercolor{item}{parent=local structure} +\setbeamercolor{subitem}{parent=item} +\setbeamercolor{subsubitem}{parent=subitem} + +\setbeamercolor{item projected}{parent=item,use=item,fg=black,bg=item.fg} +\setbeamercolor{subitem projected}{parent=item projected} +\setbeamercolor{subsubitem projected}{parent=subitem projected} + +\setbeamercolor{enumerate item}{parent=item} +\setbeamercolor{enumerate subitem}{parent=subitem} +\setbeamercolor{enumerate subsubitem}{parent=subsubitem} + +\setbeamercolor{itemize item}{parent=item} +\setbeamercolor{itemize subitem}{parent=subitem} +\setbeamercolor{itemize subsubitem}{parent=subsubitem} + +\setbeamercolor{itemize/enumerate body}{} +\setbeamercolor{itemize/enumerate subbody}{} +\setbeamercolor{itemize/enumerate subsubbody}{} + +\setbeamercolor{description item}{parent=item} + +\setbeamercolor{bibliography item}{parent=item} + +\setbeamercolor{bibliography entry author}{use=structure,fg=structure.fg} +\setbeamercolor{bibliography entry title}{use=normal text,fg=normal text.fg} +\setbeamercolor{bibliography entry location}{use=structure,fg=structure.fg!65!bg} +\setbeamercolor{bibliography entry note}{use=structure,fg=structure.fg!65!bg} + +\setbeamercolor{separation line}{} + +\setbeamercolor{upper separation line head}{parent=separation line} +\setbeamercolor{middle separation line head}{parent=separation line} +\setbeamercolor{lower separation line head}{parent=separation line} + +\setbeamercolor{upper separation line foot}{parent=separation line} +\setbeamercolor{middle separation line foot}{parent=separation line} +\setbeamercolor{lower separation line foot}{parent=separation line} + +\setbeamercolor{abstract}{} +\setbeamercolor{abstract title}{parent=structure} + +\setbeamercolor{verse}{} + +\setbeamercolor{quotation}{} +\setbeamercolor{quote}{parent=quotation} + +\setbeamercolor{page number in head/foot}{fg=fg!50!bg} + +\setbeamercolor{qed symbol}{parent=structure} + +\mode + diff --git a/my_docs/19/eb_users/beamerfontthemeTACC.sty b/my_docs/19/eb_users/beamerfontthemeTACC.sty deleted file mode 120000 index 78e971fb8..000000000 --- a/my_docs/19/eb_users/beamerfontthemeTACC.sty +++ /dev/null @@ -1 +0,0 @@ -../../beamer/beamerfontthemeTACC.sty \ No newline at end of file diff --git a/my_docs/19/eb_users/beamerfontthemeTACC.sty b/my_docs/19/eb_users/beamerfontthemeTACC.sty new file mode 100755 index 000000000..ef9ce1e5e --- /dev/null +++ b/my_docs/19/eb_users/beamerfontthemeTACC.sty @@ -0,0 +1,12 @@ +% Copyright 2003 by Till Tantau +% +% This program can be redistributed and/or modified under the terms +% of the GNU Public License, version 2. + +\mode + +\setbeamerfont{frametitle}{parent=structure,size=\LARGE,series=\bfseries} +\setbeamerfont{framesubtitle}{parent=frametitle,size=\small} + +\mode + \ No newline at end of file diff --git a/my_docs/19/eb_users/beamerfontthemeTACC16.sty b/my_docs/19/eb_users/beamerfontthemeTACC16.sty deleted file mode 120000 index a1f2fa5f9..000000000 --- a/my_docs/19/eb_users/beamerfontthemeTACC16.sty +++ /dev/null @@ -1 +0,0 @@ -../../beamer/beamerfontthemeTACC16.sty \ No newline at end of file diff --git a/my_docs/19/eb_users/beamerfontthemeTACC16.sty b/my_docs/19/eb_users/beamerfontthemeTACC16.sty new file mode 100755 index 000000000..b65271835 --- /dev/null +++ b/my_docs/19/eb_users/beamerfontthemeTACC16.sty @@ -0,0 +1,21 @@ +% Copyright 2003 by Till Tantau +% +% This program can be redistributed and/or modified under the terms +% of the GNU Public License, version 2. + +\mode +\setbeamerfont{title}{parent=structure,size=\LARGE,series=\bfseries} +\setbeamerfont{author}{parent=structure,size=\large, series=\normalfont} +\setbeamerfont{frametitle}{parent=structure,size=\LARGE,series=\bfseries} +\setbeamerfont{framesubtitle}{parent=frametitle,size=\small} + +%\usefonttheme{professionalfonts} % using non standard fonts for beamer +%\usefonttheme{serif} % default family is serif +%\usepackage{fontspec} +%\setmainfont{Century Gothic} + +\usepackage{fontspec} +\usepackage{libertine} + +\mode + diff --git a/my_docs/19/eb_users/beamerinnerthemeTACC.sty b/my_docs/19/eb_users/beamerinnerthemeTACC.sty deleted file mode 120000 index 8d5ae3921..000000000 --- a/my_docs/19/eb_users/beamerinnerthemeTACC.sty +++ /dev/null @@ -1 +0,0 @@ -../../beamer/beamerinnerthemeTACC.sty \ No newline at end of file diff --git a/my_docs/19/eb_users/beamerinnerthemeTACC.sty b/my_docs/19/eb_users/beamerinnerthemeTACC.sty new file mode 100755 index 000000000..29e2bce81 --- /dev/null +++ b/my_docs/19/eb_users/beamerinnerthemeTACC.sty @@ -0,0 +1,11 @@ +\mode + +\setbeamertemplate{itemize item}[circle] +\setbeamertemplate{itemize subitem}{{}--{}} +\setbeamertemplate{itemize subsubitem}[circle] +\setbeamertemplate{section in toc}{$\bullet$\hskip.5em\inserttocsection} +%\setbeamertemplate{subsection in toc}{} +\setbeamertemplate{subsubsection in toc}{} + +\mode + diff --git a/my_docs/19/eb_users/beamerinnerthemeTACC16.sty b/my_docs/19/eb_users/beamerinnerthemeTACC16.sty deleted file mode 120000 index 5955acc99..000000000 --- a/my_docs/19/eb_users/beamerinnerthemeTACC16.sty +++ /dev/null @@ -1 +0,0 @@ -../../beamer/beamerinnerthemeTACC16.sty \ No newline at end of file diff --git a/my_docs/19/eb_users/beamerinnerthemeTACC16.sty b/my_docs/19/eb_users/beamerinnerthemeTACC16.sty new file mode 100755 index 000000000..f7f454e1d --- /dev/null +++ b/my_docs/19/eb_users/beamerinnerthemeTACC16.sty @@ -0,0 +1,11 @@ +\mode + +\setbeamertemplate{itemize item}[triangle] +\setbeamertemplate{itemize subitem}[triangle] +\setbeamertemplate{itemize subsubitem}[triangle] +\setbeamertemplate{section in toc}{$\bullet$\hskip.5em\inserttocsection} +%\setbeamertemplate{subsection in toc}{} +\setbeamertemplate{subsubsection in toc}{} + +\mode + diff --git a/my_docs/19/eb_users/beamerouterthemeTACC.sty b/my_docs/19/eb_users/beamerouterthemeTACC.sty deleted file mode 120000 index da0a45d33..000000000 --- a/my_docs/19/eb_users/beamerouterthemeTACC.sty +++ /dev/null @@ -1 +0,0 @@ -../../beamer/beamerouterthemeTACC.sty \ No newline at end of file diff --git a/my_docs/19/eb_users/beamerouterthemeTACC.sty b/my_docs/19/eb_users/beamerouterthemeTACC.sty new file mode 100755 index 000000000..038580303 --- /dev/null +++ b/my_docs/19/eb_users/beamerouterthemeTACC.sty @@ -0,0 +1,196 @@ +% Copyright 2003 by Till Tantau +% +% This program can be redistributed and/or modified under the terms +% of the GNU Public License, version 2. + +\mode + +\setbeamertemplate{frametitle}[default][center] +\addtobeamertemplate{frametitle}{\vskip 4ex minus 4ex}{} + +% Here we define what appears at the bottom of each slide: the "footline". +\setbeamertemplate{footline}{% + \leavevmode% + + % Horizontal line dividing the rest of the slide from the footer? + % hrule goes all the way across... + % \hrule height.3pt% + % With \rule, you can specify the thickness + % \rule[raise-height]{width}{thickness} + \hspace{.025\textwidth}\rule{.95\textwidth}{.5pt} + + \hbox{% + % On the left half of the footer, insert the TACC logo + \begin{minipage}{.5\textwidth}% + \hskip .033\textwidth%Give horizontal space else this will set on the left edge of the slide! + % TACC logo with custom viewport! + \includegraphics[viewport=1 -1 135 35, clip=true, width=.4\textwidth]{figures/TACC_logo} + \end{minipage} + % + \begin{minipage}{.5\textwidth}% + \vskip .023\textheight% + \raggedleft% + \setlength{\rightskip}{.033\textwidth} + % + % If we are not on the first page, insert a page number + % For some reason, insertframenumber is buggy when you have fragile + % slides with verbatim environments in them... it tends to skip numbers + % for some reason! On the other hand, the pagenumber is incremented + % for *every* slide, including transition slides... + \ifnum \thepage>1 + % \insertshorttitle + \insertframenumber + % \insertframenumber/\inserttotalframenumber + % \insertpagenumber + \else % Do a phantom of whatever you do on other pages, so spacing matches + %$\phantom{\insertshorttitle}$ + $\phantom{\insertframenumber}$ + %$\phantom{\insertframenumber/\inserttotalframenumber}$ + %$\phantom{\insertpagenumber}$ + \fi + \hfill\includegraphics[width=.5\textwidth]{figures/UT_logo}% + \end{minipage}% + }% + \vskip .023\textheight% +} + + + + +\ifTACCheadernav + +\usesectionheadtemplate +{\hfill\insertsectionhead} +{\hfill\color{fg!50!bg}\insertsectionhead} + +% Head +\ifbeamer@compress + +% Here we define how the top of the frame looks, the "headline". +\setbeamertemplate{headline} +{% + \ifnum \thepage>1 + \leavevmode% + \begin{beamercolorbox}[wd=.5\paperwidth,ht=2.5ex,dp=1.125ex]{% + section in head/foot}% + \insertsectionnavigationhorizontal{.5\paperwidth}{\hskip0pt plus1filll}{}% + \end{beamercolorbox}% + \begin{beamercolorbox}[wd=.5\paperwidth,ht=2.5ex,dp=1.125ex]{% + subsection in head/foot}% + \insertsubsectionnavigationhorizontal{% + .5\paperwidth}{}{\hskip0pt plus1filll}% + \end{beamercolorbox}% + \fi %\thepage>1 +} + +\else% Not compressed + +\setbeamertemplate{headline} +{% + \ifnum \thepage>1 + \leavevmode% + \@tempdimb=2.4375ex% + \ifnum\beamer@subsectionmax<\beamer@sectionmax% + \multiply\@tempdimb by\beamer@sectionmax% + \else% + \multiply\@tempdimb by\beamer@subsectionmax% + \fi% + \ifdim\@tempdimb>0pt% + \advance\@tempdimb by 1.125ex% + \begin{beamercolorbox}[wd=.5\paperwidth,ht=\@tempdimb]{% + section in head/foot}% + \vbox to\@tempdimb{\vfil\insertsectionnavigation{.5\paperwidth}\vfil}% + \end{beamercolorbox}% + \begin{beamercolorbox}[wd=.5\paperwidth,ht=\@tempdimb]{% + subsection in head/foot}% + \vbox to\@tempdimb{\vfil\insertsubsectionnavigation{.5\paperwidth}\vfil}% + \end{beamercolorbox}% + \fi% + \fi % \thepage>1 +} + +\fi % end if compressed +\fi % TACCheadernav + + +\ifTACCheadertree + +\setbeamertemplate{headline} +{ + \begin{beamercolorbox}[wd=\paperwidth,colsep=1.5pt + ]{upper separation line head} + \end{beamercolorbox} + % + % Place short title + % + \begin{beamercolorbox}[wd=\paperwidth,ht=2.5ex,dp=1.125ex,% + leftskip=.3cm,rightskip=.3cm plus1fil]{title in head/foot} + \usebeamerfont{title in head/foot}\insertshorttitle + \end{beamercolorbox} + + % + % Place section + % + \begin{beamercolorbox}[wd=\paperwidth,ht=2.5ex,dp=1.125ex,% + leftskip=.3cm,rightskip=.3cm plus1fil]{section in head/foot} + \usebeamerfont{section in head/foot}% + %\ifbeamer@tree@showhooks + \setbox\beamer@tempbox=\hbox{\insertsectionhead}% + \ifdim\wd\beamer@tempbox>1pt% + \hskip2pt\raise1.9pt\hbox{\vrule width0.4pt height1.875ex\vrule width 5pt height0.4pt}% + \hskip1pt% + \fi% \ifdim + %\else% + %\hskip6pt% + %\fi% \ifbeamer + \insertsectionhead + \end{beamercolorbox} + +% +% Place subsection +% +\begin{beamercolorbox}[wd=\paperwidth,ht=2.5ex,dp=1.125ex,% + leftskip=.3cm,rightskip=.3cm plus1fil]{subsection in head/foot} + \usebeamerfont{subsection in head/foot}% + %\ifbeamer@tree@showhooks + \setbox\beamer@tempbox=\hbox{\insertsubsectionhead}% + \ifdim\wd\beamer@tempbox>1pt% + \hskip9.4pt\raise1.9pt\hbox{\vrule width0.4pt height1.875ex\vrule width 5pt height0.4pt}% + \hskip1pt% + \fi% \ifdim + %\else% + %\hskip12pt% + %\fi% \ifbeamer + \insertsubsectionhead +\end{beamercolorbox} + +% +% Place final separation box +% + \begin{beamercolorbox}[wd=\paperwidth,colsep=1.5pt + ]{lower separation line head} + \end{beamercolorbox} + + % + % Another matching rule which helps to frame the content + % + \hspace{.025\textwidth}\rule{.95\textwidth}{.5pt} +} +\fi % TACCheadertree + + +% The following command suppresses all navigation symbols. This is +% necessary in the TACC theme, since it overlaps where we want the +% logo to be. +\setbeamertemplate{navigation symbols}{} + +% Align the navigation symbols vertically (still overlaps our logo!) +%\setbeamertemplate{navigation symbols}[vertical]{} + +% Only places the slide-forward and slide-back symbol, but yes, +% this still overlaps our logo! +%\setbeamertemplate{navigation symbols}[only frame symbol]{} + + +\mode + diff --git a/my_docs/19/eb_users/beamerouterthemeTACC16.sty b/my_docs/19/eb_users/beamerouterthemeTACC16.sty deleted file mode 120000 index 54bd09537..000000000 --- a/my_docs/19/eb_users/beamerouterthemeTACC16.sty +++ /dev/null @@ -1 +0,0 @@ -../../beamer/beamerouterthemeTACC16.sty \ No newline at end of file diff --git a/my_docs/19/eb_users/beamerouterthemeTACC16.sty b/my_docs/19/eb_users/beamerouterthemeTACC16.sty new file mode 100755 index 000000000..d5e6388c7 --- /dev/null +++ b/my_docs/19/eb_users/beamerouterthemeTACC16.sty @@ -0,0 +1,312 @@ +% Antonio Gomez (agomez@tacc.utexas.edu) +% 4-20-17. Added option to put the footer on the right side + + + +\mode + +\usepackage{xcolor} +\usepackage{graphicx} +\usepackage{etoolbox} + + + +% This theme accepts the "rightfooter" option +% When used, it will put the TACC logo at the bottom of the slide on the right side +% By default, it goes to the left + +\xifaspectratio{ + {169} { + \pgfdeclareimage[width=\paperwidth]{titlebackground}{./figures/master169.jpg} + \if@rightfooterOption + \pgfdeclareimage[width=\paperwidth]{background}{./figures/secondary_right169.jpg} +\else + \pgfdeclareimage[width=\paperwidth]{background}{./figures/secondary169.jpg} +\fi +} +}[ +\pgfdeclareimage[width=\paperwidth]{titlebackground}{./figures/master.jpg} + \if@rightfooterOption + \pgfdeclareimage[width=\paperwidth]{background}{./figures/secondary_right.jpg} +\else + \pgfdeclareimage[width=\paperwidth]{background}{./figures/secondary.jpg} +\fi +] + +\setbeamertemplate{background canvas}{% +\xifaspectratio{ + {169} { + \ifnum\c@framenumber=1 % + \begin{picture}(0,0) + \put(-3,-256){% + \pgfuseimage{titlebackground} + } + \end{picture} + \else% + \begin{picture}(0,0) + \put(-3,-260){% + \pgfuseimage{background} + } + \end{picture} + \fi + } + {43} { + \ifnum\c@framenumber=1 % + \begin{picture}(0,0) + \put(-4,-274){% + \pgfuseimage{titlebackground} + } + \end{picture} + \else% + \begin{picture}(0,0) + \put(-4,-274){% + \pgfuseimage{background} + } + \end{picture} + \fi + } +} +} + + + +%\setbeamertemplate{background canvas}{% +% % On title page +% \ifnum\c@framenumber=1 % +% \begin{picture}(0,0) +% \put(0,-253){% +% \pgfuseimage{titlebackground} +% } +% \end{picture} +% +% \else% +% \xifaspectratio{ +% {169} { +% % Other frames background +% \begin{picture}(0,0) +% \put(-4,-260){% +% \pgfuseimage{background} +% } +% \end{picture} +% } +% }[ +% % Other frames background +% \begin{picture}(0,0) +% \put(-4,-274){% +% \pgfuseimage{background} +% } +% \end{picture} +% ] +% \fi% +%} + + +\setbeamertemplate{title page}{ +\vspace{40pt} +\begin{center} +\usebeamerfont{title} {\huge \inserttitle}\par +\vspace{4ex} +\usebeamerfont{author} { + \insertauthor +}\par +\vspace{2ex} +\usebeamerfont{institute}{ + \insertinstitute +} \par +\vspace{2ex} +\usebeamerfont{date}{ + \insertdate +} +\end{center} +} + + +\setbeamertemplate{frametitle}[default][center] +\setbeamertemplate{frametitle}{ + \makeatletter + \regexpatchcmd{\insertframetitle} + {(\c{usebeamertemplate}.*)\c{fi}} + {\c{NoCaseChange}\cB\{\1\cE\}\c{fi}} + {}{}% + \makeatother + \vskip1ex + \insertframetitle +} + +% Here we define what appears at the bottom of each slide: the "footline". +\setbeamertemplate{footline}{% + \leavevmode% + + % Horizontal line dividing the rest of the slide from the footer? + % hrule goes all the way across... + % \hrule height.3pt% + % With \rule, you can specify the thickness + % \rule[raise-height]{width}{thickness} + % \hspace{.025\textwidth}\rule{.95\textwidth}{.5pt} + + \hbox{% + \ifnum \thepage>1 + \if@rightfooterOption + \begin{minipage}{.2\textwidth}% + \hskip .05\textwidth%Give horizontal space else this will set on the left edge of the slide! + \end{minipage} + \else + \begin{minipage}{.4\textwidth}% + \hskip .05\textwidth%Give horizontal space else this will set on the left edge of the slide! + \end{minipage} + \fi + + + \begin{minipage}{\textwidth}% + % \vskip .023\textheight% + \raggedleft% + \setlength{\rightskip}{\textwidth} + \if@rightfooterOption + \hbox{% + \begin{beamercolorbox}[wd=0.7\textwidth,ht=2.25ex,dp=1ex,left]{author in head/foot}% + \insertshorttitle{} \hskip .01\textwidth | \hskip .01\textwidth \insertdate{} \hskip .01\textwidth | \hskip .01\textwidth \insertframenumber{} + \end{beamercolorbox}% + } + \else + \hbox{% + \begin{beamercolorbox}[wd=0.5\textwidth,ht=2.25ex,dp=1ex,left]{author in head/foot}% + \insertshorttitle{} \hskip .01\textwidth | \hskip .01\textwidth \insertdate{} \hskip .01\textwidth | \hskip .01\textwidth \insertframenumber{} + \end{beamercolorbox}% + } + \fi + + \end{minipage}% + \begin{minipage}{.05\textwidth}% + \end{minipage}% + \fi %\thepage>1 + }% + \vskip .023\textheight% + +} + + + + +\ifTACCheadernav + +\usesectionheadtemplate +{\hfill\insertsectionhead} +{\hfill\color{fg!50!bg}\insertsectionhead} + +% Head +\ifbeamer@compress + +% Here we define how the top of the frame looks, the "headline". +\setbeamertemplate{headline} +{% + \ifnum \thepage>1 + \leavevmode% + \begin{beamercolorbox}[wd=.5\paperwidth,ht=2.5ex,dp=1.125ex]{% + section in head/foot}% + \insertsectionnavigationhorizontal{.5\paperwidth}{\hskip0pt plus1filll}{}% + \end{beamercolorbox}% + \begin{beamercolorbox}[wd=.5\paperwidth,ht=2.5ex,dp=1.125ex]{% + subsection in head/foot}% + \insertsubsectionnavigationhorizontal{% + .5\paperwidth}{}{\hskip0pt plus1filll}% + \end{beamercolorbox}% + \fi %\thepage>1 +} + +\else% Not compressed + +\setbeamertemplate{headline} +{% + \ifnum \thepage>1 + \leavevmode% + \@tempdimb=2.4375ex% + \ifnum\beamer@subsectionmax<\beamer@sectionmax% + \multiply\@tempdimb by\beamer@sectionmax% + \else% + \multiply\@tempdimb by\beamer@subsectionmax% + \fi% + \ifdim\@tempdimb>0pt% + \advance\@tempdimb by 1.125ex% + \begin{beamercolorbox}[wd=.5\paperwidth,ht=\@tempdimb]{% + section in head/foot}% + \vbox to\@tempdimb{\vfil\insertsectionnavigation{.5\paperwidth}\vfil}% + \end{beamercolorbox}% + \begin{beamercolorbox}[wd=.5\paperwidth,ht=\@tempdimb]{% + subsection in head/foot}% + \vbox to\@tempdimb{\vfil\insertsubsectionnavigation{.5\paperwidth}\vfil}% + \end{beamercolorbox}% + \fi% + \fi % \thepage>1 +} + +\fi % end if compressed +\fi % TACCheadernav + + +\ifTACCheadertree + +\setbeamertemplate{headline} +{ + \begin{beamercolorbox}[wd=\paperwidth,colsep=1.5pt]{upper separation line head} + \end{beamercolorbox} + % + % Place short title + % + \begin{beamercolorbox}[wd=\paperwidth,ht=2.5ex,dp=1.125ex,% + leftskip=.3cm,rightskip=.3cm plus1fil]{title in head/foot} + \usebeamerfont{title in head/foot}\insertshorttitle + \end{beamercolorbox} + + % + % Place section + % + \begin{beamercolorbox}[wd=\paperwidth,ht=2.5ex,dp=1.125ex,% + leftskip=.3cm,rightskip=.3cm plus1fil]{section in head/foot} + \usebeamerfont{section in head/foot}% + %\ifbeamer@tree@showhooks + \setbox\beamer@tempbox=\hbox{\insertsectionhead}% + \ifdim\wd\beamer@tempbox>1pt% + \hskip2pt\raise1.9pt\hbox{\vrule width0.4pt height1.875ex\vrule width 5pt height0.4pt}% + \hskip1pt% + \fi + \insertsectionhead + \end{beamercolorbox} + +% +% Place subsection +% +\begin{beamercolorbox}[wd=\paperwidth,ht=2.5ex,dp=1.125ex,% + leftskip=.3cm,rightskip=.3cm plus1fil]{subsection in head/foot} + \usebeamerfont{subsection in head/foot}% + %\ifbeamer@tree@showhooks + \setbox\beamer@tempbox=\hbox{\insertsubsectionhead}% + \ifdim\wd\beamer@tempbox>1pt% + \hskip9.4pt\raise1.9pt\hbox{\vrule width0.4pt height1.875ex\vrule width 5pt height0.4pt}% + \hskip1pt% + \fi + \insertsubsectionhead +\end{beamercolorbox} + +% +% Place final separation box +% + \begin{beamercolorbox}[wd=\paperwidth,colsep=1.5pt + ]{lower separation line head} + \end{beamercolorbox} + + % + % Another matching rule which helps to frame the content + % + \hspace{.025\textwidth}\rule{.95\textwidth}{.5pt} +} +\fi % TACCheadertree + + +% The following command suppresses all navigation symbols. This is +% necessary in the TACC theme, since it overlaps where we want the +% logo to be. +\setbeamertemplate{navigation symbols}{} + + +\mode + diff --git a/my_docs/19/eb_users/beamerthemeTACC.sty b/my_docs/19/eb_users/beamerthemeTACC.sty deleted file mode 120000 index 5c339abd4..000000000 --- a/my_docs/19/eb_users/beamerthemeTACC.sty +++ /dev/null @@ -1 +0,0 @@ -../../beamer/beamerthemeTACC.sty \ No newline at end of file diff --git a/my_docs/19/eb_users/beamerthemeTACC.sty b/my_docs/19/eb_users/beamerthemeTACC.sty new file mode 100755 index 000000000..c6a1b1269 --- /dev/null +++ b/my_docs/19/eb_users/beamerthemeTACC.sty @@ -0,0 +1,26 @@ +%% TACC theme for beamer + +\newif\ifTACCheadernav +\DeclareOption{headernav}{\global\TACCheadernavtrue} + +\newif\ifTACCheadertree +\DeclareOption{headertree}{\global\TACCheadertreetrue} +\ProcessOptions + +\mode + +\usefonttheme{TACC} +\usecolortheme{TACC} +\useinnertheme{TACC} +\useoutertheme{TACC} + +\mode + + +\newcommand{\event}[1]{% + \makeatletter% + \def\TACC@eventname{#1}% + \makeatother} + +\newcommand{\sectionframe}[1]{\section{#1}\frame{\Large\textbf{#1}}} +\newcommand{\subsectionframe}[1]{\subsection{#1}\frame{\large\textbf{#1}}} diff --git a/my_docs/19/eb_users/beamerthemeTACC16.sty b/my_docs/19/eb_users/beamerthemeTACC16.sty deleted file mode 120000 index 7a9d4d296..000000000 --- a/my_docs/19/eb_users/beamerthemeTACC16.sty +++ /dev/null @@ -1 +0,0 @@ -../../beamer/beamerthemeTACC16.sty \ No newline at end of file diff --git a/my_docs/19/eb_users/beamerthemeTACC16.sty b/my_docs/19/eb_users/beamerthemeTACC16.sty new file mode 100755 index 000000000..b522d0207 --- /dev/null +++ b/my_docs/19/eb_users/beamerthemeTACC16.sty @@ -0,0 +1,61 @@ +%% TACC theme for beamer + + +\newif\if@rightfooterOption +\@rightfooterOptionfalse +\DeclareOption{rightfooter}{\@rightfooterOptiontrue} +\ProcessOptions + + +\newif\ifTACCheadernav +\DeclareOption{headernav}{\global\TACCheadernavtrue} + +\newif\ifTACCheadertree +\DeclareOption{headertree}{\global\TACCheadertreetrue} +\ProcessOptions + +\usepackage{xparse} +\ExplSyntaxOn +\NewDocumentCommand{\ifaspectratio}{mmm} + { + % Recover the option from those passed to the class + \keys_set:nf { zunbeltz/beameroptions } { \use:c { opt@beamer.cls } } + \str_if_eq:nVTF { #1 } \l_zunbeltz_aspectratio_tl { #2 } { #3 } + } +\NewDocumentCommand{\xifaspectratio}{mO{}} + { + % Recover the option from those passed to the class + \keys_set:nf { zunbeltz/beameroptions } { \use:c { opt@beamer.cls } } + \str_case:VnF \l_zunbeltz_aspectratio_tl { #1 } { #2 } + } +% We need to define only one key, the other are treated as `unknown' +\keys_define:nn { zunbeltz/beameroptions } + { + aspectratio .tl_set:N = \l_zunbeltz_aspectratio_tl, + aspectratio .initial:n = 43, + unknown .code:n = {}, + } + +% Generate the variants we need +\cs_generate_variant:Nn \keys_set:nn { nf } +\cs_generate_variant:Nn \str_if_eq:nnTF { nV } +\cs_generate_variant:Nn \str_case:nnF { V } +\ExplSyntaxOff + +\mode + +\usefonttheme{TACC16} +\useinnertheme{TACC16} +\useoutertheme{TACC16} +\usecolortheme{TACC16} + +\mode + + +\newcommand{\event}[1]{% + \makeatletter% + \def\TACC@eventname{#1}% + \makeatother} + +\newcommand{\sectionframe}[1]{\section{#1}\frame{\Large\textbf{#1}}} +\newcommand{\subsectionframe}[1]{\subsection{#1}\frame{\large\textbf{#1}}} diff --git a/my_docs/19/eb_users/figures b/my_docs/19/eb_users/figures deleted file mode 120000 index ddafd8974..000000000 --- a/my_docs/19/eb_users/figures +++ /dev/null @@ -1 +0,0 @@ -../../beamer/figures \ No newline at end of file diff --git a/my_docs/19/eb_users/figures/TACC_logo.pdf b/my_docs/19/eb_users/figures/TACC_logo.pdf new file mode 100755 index 000000000..c018a20cb Binary files /dev/null and b/my_docs/19/eb_users/figures/TACC_logo.pdf differ diff --git a/my_docs/19/eb_users/figures/UT_logo.pdf b/my_docs/19/eb_users/figures/UT_logo.pdf new file mode 100755 index 000000000..d5b42e752 Binary files /dev/null and b/my_docs/19/eb_users/figures/UT_logo.pdf differ diff --git a/my_docs/19/eb_users/figures/cc.png b/my_docs/19/eb_users/figures/cc.png new file mode 100644 index 000000000..8a532ff8f Binary files /dev/null and b/my_docs/19/eb_users/figures/cc.png differ diff --git a/my_docs/19/eb_users/figures/isa.png b/my_docs/19/eb_users/figures/isa.png new file mode 100644 index 000000000..f95d985e7 Binary files /dev/null and b/my_docs/19/eb_users/figures/isa.png differ diff --git a/my_docs/19/eb_users/figures/master.jpg b/my_docs/19/eb_users/figures/master.jpg new file mode 100644 index 000000000..f5c56c04a Binary files /dev/null and b/my_docs/19/eb_users/figures/master.jpg differ diff --git a/my_docs/19/eb_users/figures/master169.jpg b/my_docs/19/eb_users/figures/master169.jpg new file mode 100644 index 000000000..b215776eb Binary files /dev/null and b/my_docs/19/eb_users/figures/master169.jpg differ diff --git a/my_docs/19/eb_users/figures/master169.png b/my_docs/19/eb_users/figures/master169.png new file mode 100644 index 000000000..bc5c0ed12 Binary files /dev/null and b/my_docs/19/eb_users/figures/master169.png differ diff --git a/my_docs/19/eb_users/figures/secondary.jpg b/my_docs/19/eb_users/figures/secondary.jpg new file mode 100644 index 000000000..d905a95c9 Binary files /dev/null and b/my_docs/19/eb_users/figures/secondary.jpg differ diff --git a/my_docs/19/eb_users/figures/secondary169.jpg b/my_docs/19/eb_users/figures/secondary169.jpg new file mode 100644 index 000000000..4eb017957 Binary files /dev/null and b/my_docs/19/eb_users/figures/secondary169.jpg differ diff --git a/my_docs/19/eb_users/figures/secondary169.png b/my_docs/19/eb_users/figures/secondary169.png new file mode 100644 index 000000000..cb9060a56 Binary files /dev/null and b/my_docs/19/eb_users/figures/secondary169.png differ diff --git a/my_docs/19/eb_users/figures/secondary_right.jpg b/my_docs/19/eb_users/figures/secondary_right.jpg new file mode 100644 index 000000000..f25f93a58 Binary files /dev/null and b/my_docs/19/eb_users/figures/secondary_right.jpg differ diff --git a/my_docs/19/eb_users/figures/secondary_right169.jpg b/my_docs/19/eb_users/figures/secondary_right169.jpg new file mode 100644 index 000000000..567a1078f Binary files /dev/null and b/my_docs/19/eb_users/figures/secondary_right169.jpg differ diff --git a/my_docs/19/eb_users/themes b/my_docs/19/eb_users/themes deleted file mode 120000 index a98530730..000000000 --- a/my_docs/19/eb_users/themes +++ /dev/null @@ -1 +0,0 @@ -../../beamer/themes \ No newline at end of file diff --git a/my_docs/19/eb_users/themes/beamercolorthemeTACC16.sty b/my_docs/19/eb_users/themes/beamercolorthemeTACC16.sty new file mode 100644 index 000000000..248ae8cb6 --- /dev/null +++ b/my_docs/19/eb_users/themes/beamercolorthemeTACC16.sty @@ -0,0 +1,193 @@ +% Copyright 2003 by Till Tantau . +% +% This program can be redistributed and/or modified under the terms +% of the GNU Public License, version 2. + +\mode + +\usepackage{textcase,regexpatch} + +\setbeamertemplate{blocks}[rounded][shadow=true] + + +\definecolor{TACCred}{RGB}{180,13,29} +\definecolor{TACCorange}{RGB}{210,104,43} +\definecolor{TACCblue}{RGB}{21,77,122} +%\definecolor{TACCgreen}{RGB}{30,134,104} +\definecolor{TACCgreen}{RGB}{49,168,51} + +% I downloaded a gimp color palette from +% http://maururu.net/2007/latex-beamer-color-palette/ +% Which provides rgb values (I think) for several of the +% default beamer themes. You can open this in gimp by +% opening the Palettes dialog, right-clicking anywhere and choosing +% 'Import Palette'. A color in there called 'default added blue' +% appeared to be approximately what I wanted. It had the triple +% of values 141 145 208. If you double-click on this in the +% palette editor it gives you a bunch of information. You can't +% use these values directly to set a color...it just comes out white. +% I think definecolor is expecting something normalized by 255. Yes! + + +%%% +% Set the normal text color +%%% +\setbeamercolor{normal text}{fg=black} %,bg=white} +\setbeamercolor{example text}{fg=TACCgreen} +\setbeamercolor{alerted text}{fg=TACCorange} + + +\setbeamercolor{structure}{fg=black} +%\setbeamercolor{structure}{fg=black} + +\setbeamercolor{background canvas}{parent=normal text} +\setbeamercolor{background}{parent=background canvas} + +\setbeamercolor{palette primary}{use=structure,fg=structure.fg} +\setbeamercolor{palette secondary}{use=structure,fg=structure.fg!75!black} +\setbeamercolor{palette tertiary}{use=structure,fg=structure.fg!50!black} +\setbeamercolor{palette quaternary}{fg=black} + +\setbeamercolor{palette sidebar primary}{use=normal text,fg=normal text.fg} +\setbeamercolor{palette sidebar secondary}{use=structure,fg=structure.fg} +\setbeamercolor{palette sidebar tertiary}{use=normal text,fg=normal text.fg} +\setbeamercolor{palette sidebar quaternary}{use=structure,fg=structure.fg} + +\setbeamercolor{math text}{} +\setbeamercolor{math text inlined}{parent=math text} +\setbeamercolor{math text displayed}{parent=math text} + +\setbeamercolor{normal text in math text}{} + +\setbeamercolor{local structure}{parent=structure} + +\setbeamercolor{titlelike}{parent=structure} + +\setbeamercolor{title}{parent=titlelike} +\setbeamercolor{title in head/foot}{parent=palette quaternary} +\setbeamercolor{title in sidebar}{parent=palette sidebar quaternary} + +\setbeamercolor{subtitle}{parent=title} + +\setbeamercolor{author}{} +\setbeamercolor{author in head/foot}{parent=palette primary} +\setbeamercolor{author in sidebar}{use=palette sidebar tertiary,fg=palette sidebar tertiary.fg} + +\setbeamercolor{institute}{} +\setbeamercolor{institute in head/foot}{parent=palette tertiary} +\setbeamercolor{institute in sidebar}{use=palette sidebar tertiary,fg=palette sidebar tertiary.fg} + +\setbeamercolor{date}{} +\setbeamercolor{date in head/foot}{parent=palette secondary} +\setbeamercolor{date in sidebar}{use=palette sidebar tertiary,fg=palette sidebar tertiary.fg} + +\setbeamercolor{titlegraphic}{} + +\setbeamercolor{part name}{} +\setbeamercolor{part title}{parent=titlelike} + +\setbeamercolor{section in toc}{parent=structure} +\setbeamercolor{section in toc shaded}{parent=section in toc} +\setbeamercolor{section in head/foot}{parent=palette tertiary} +\setbeamercolor{section in sidebar}{parent=palette sidebar secondary} +\setbeamercolor{section in sidebar shaded}{use=section in sidebar,fg=section in sidebar.fg!40!bg} +\setbeamercolor{section number projected}{parent=item projected} + +\setbeamercolor{subsection in toc}{} +\setbeamercolor{subsection in toc shaded}{parent=subsection in toc} +\setbeamercolor{subsection in head/foot}{parent=palette secondary} +\setbeamercolor{subsection in sidebar}{parent=palette sidebar primary} +\setbeamercolor{subsection in sidebar shaded}{use=subsection in sidebar,fg=subsection in sidebar.fg!40!bg} +\setbeamercolor{subsection number projected}{parent={subitem projected}} + +\setbeamercolor{subsubsection in toc}{parent=subsection in toc} +\setbeamercolor{subsubsection in toc shaded}{parent=subsubsection in toc} +\setbeamercolor{subsubsection in head/foot}{parent=subsection in head/foot} +\setbeamercolor{subsubsection in sidebar}{parent=subsection in sidebar} +\setbeamercolor{subsubsection in sidebar shaded}{parent=subsection in sidebar shaded} +\setbeamercolor{subsubsection number projected}{parent=subsubitem projected} + +\setbeamercolor{headline}{} +\setbeamercolor{footline}{} + +\setbeamercolor{sidebar}{} +\setbeamercolor{sidebar left}{parent=sidebar} +\setbeamercolor{sidebar right}{parent=sidebar} + +\setbeamercolor{logo}{parent=palette secondary} + +\setbeamercolor{frametitle}{parent=titlelike} +\setbeamercolor{framesubtitle}{parent=frametitle} + +\setbeamercolor{frametitle right}{parent=frametitle} + +\setbeamercolor{caption}{} +\setbeamercolor{caption name}{parent=structure} + +\setbeamercolor{button}{use=local structure,bg=local structure.fg!50!bg,fg=white} +\setbeamercolor{button border}{use=button,fg=button.bg} +\setbeamercolor{navigation symbols}{use=structure,fg=structure.fg!40!bg} +\setbeamercolor{navigation symbols dimmed}{use=structure,fg=structure.fg!20!bg} +\setbeamercolor{mini frame}{parent=section in head/foot} + +\setbeamercolor{block body}{fg=black} +\setbeamercolor{block body alerted}{fg=black} +\setbeamercolor{block body example}{fg=black} + +\setbeamercolor{block title}{bg=TACCblue,fg=white} +\setbeamercolor{block title alerted}{bg=TACCred,fg=white} +\setbeamercolor{block title example}{bg=TACCgreen,fg=white} + +\setbeamercolor{item}{parent=local structure} +\setbeamercolor{subitem}{parent=item} +\setbeamercolor{subsubitem}{parent=subitem} + +\setbeamercolor{item projected}{parent=item,use=item,fg=black,bg=item.fg} +\setbeamercolor{subitem projected}{parent=item projected} +\setbeamercolor{subsubitem projected}{parent=subitem projected} + +\setbeamercolor{enumerate item}{parent=item} +\setbeamercolor{enumerate subitem}{parent=subitem} +\setbeamercolor{enumerate subsubitem}{parent=subsubitem} + +\setbeamercolor{itemize item}{parent=item} +\setbeamercolor{itemize subitem}{parent=subitem} +\setbeamercolor{itemize subsubitem}{parent=subsubitem} + +\setbeamercolor{itemize/enumerate body}{} +\setbeamercolor{itemize/enumerate subbody}{} +\setbeamercolor{itemize/enumerate subsubbody}{} + +\setbeamercolor{description item}{parent=item} + +\setbeamercolor{bibliography item}{parent=item} + +\setbeamercolor{bibliography entry author}{use=structure,fg=structure.fg} +\setbeamercolor{bibliography entry title}{use=normal text,fg=normal text.fg} +\setbeamercolor{bibliography entry location}{use=structure,fg=structure.fg!65!bg} +\setbeamercolor{bibliography entry note}{use=structure,fg=structure.fg!65!bg} + +\setbeamercolor{separation line}{} + +\setbeamercolor{upper separation line head}{parent=separation line} +\setbeamercolor{middle separation line head}{parent=separation line} +\setbeamercolor{lower separation line head}{parent=separation line} + +\setbeamercolor{upper separation line foot}{parent=separation line} +\setbeamercolor{middle separation line foot}{parent=separation line} +\setbeamercolor{lower separation line foot}{parent=separation line} + +\setbeamercolor{abstract}{} +\setbeamercolor{abstract title}{parent=structure} + +\setbeamercolor{verse}{} + +\setbeamercolor{quotation}{} +\setbeamercolor{quote}{parent=quotation} + +\setbeamercolor{page number in head/foot}{fg=fg!50!bg} + +\setbeamercolor{qed symbol}{parent=structure} + +\mode + diff --git a/my_docs/19/eb_users/themes/beamerfontthemeTACC16.sty b/my_docs/19/eb_users/themes/beamerfontthemeTACC16.sty new file mode 100644 index 000000000..d0fc325cc --- /dev/null +++ b/my_docs/19/eb_users/themes/beamerfontthemeTACC16.sty @@ -0,0 +1,21 @@ +% Copyright 2003 by Till Tantau +% +% This program can be redistributed and/or modified under the terms +% of the GNU Public License, version 2. + +\mode +\setbeamerfont{title}{parent=structure,size=\LARGE,series=\bfseries} +\setbeamerfont{author}{parent=structure,size=\large, series=\normalfont} +\setbeamerfont{frametitle}{parent=structure,size=\LARGE,series=\bfseries} +\setbeamerfont{framesubtitle}{parent=frametitle,size=\small} + +%\usefonttheme{professionalfonts} % using non standard fonts for beamer +%\usefonttheme{serif} % default family is serif +%\usepackage{fontspec} +%\setmainfont{Century Gothic} + +%\usepackage{fontspec} +\usepackage{libertine} + +\mode + diff --git a/my_docs/19/eb_users/themes/beamerinnerthemeTACC16.sty b/my_docs/19/eb_users/themes/beamerinnerthemeTACC16.sty new file mode 100644 index 000000000..f7f454e1d --- /dev/null +++ b/my_docs/19/eb_users/themes/beamerinnerthemeTACC16.sty @@ -0,0 +1,11 @@ +\mode + +\setbeamertemplate{itemize item}[triangle] +\setbeamertemplate{itemize subitem}[triangle] +\setbeamertemplate{itemize subsubitem}[triangle] +\setbeamertemplate{section in toc}{$\bullet$\hskip.5em\inserttocsection} +%\setbeamertemplate{subsection in toc}{} +\setbeamertemplate{subsubsection in toc}{} + +\mode + diff --git a/my_docs/19/eb_users/themes/beamerouterthemeTACC16-169.sty b/my_docs/19/eb_users/themes/beamerouterthemeTACC16-169.sty new file mode 100644 index 000000000..c62f9ed04 --- /dev/null +++ b/my_docs/19/eb_users/themes/beamerouterthemeTACC16-169.sty @@ -0,0 +1,247 @@ +% Copyright 2003 by Till Tantau +% +% This program can be redistributed and/or modified under the terms +% of the GNU Public License, version 2. + +\mode + +\usepackage{xcolor} +\usepackage{graphicx} +\usepackage{etoolbox} + +\pgfdeclareimage[width=\paperwidth]{titlebackground}{./figures/master169.png} +\pgfdeclareimage[width=\paperwidth]{background}{./figures/secondary169.png} + +\setbeamertemplate{background canvas}{% + \ifnum\c@framenumber=1% + \begin{picture}(0,0) + \put(-0.15,-250){% + \pgfuseimage{titlebackground} + } + %\put(0,-130.7){% + + %\begin{minipage}[b][45mm][t]{\textwidth}%{226mm} + %\begin{center} + % \usebeamerfont{title}{\MakeTextUppercase{\inserttitle}\par} + %\vspace{2ex} + %\usebeamerfont{author}{\insertauthor} + % \end{center} + %\end{minipage} + %} + \end{picture} + % On title page + \else% + % Other frames background + \begin{picture}(0,0) + \put(-0.15,-255.55){% + \pgfuseimage{background} + } + \end{picture} + \fi% +} + + +\setbeamertemplate{title page}{ +\vspace{40pt} +\begin{center} +\usebeamerfont{title} {\huge \inserttitle}\par +\vspace{4ex} +\usebeamerfont{author} { + \insertauthor +}\par +\vspace{2ex} +\usebeamerfont{institute}{ + \insertinstitute +} \par +\vspace{2ex} +\usebeamerfont{date}{ + \insertdate +} +\end{center} +} + + +\setbeamertemplate{frametitle}[default][center] +\setbeamertemplate{frametitle}{ + \makeatletter + \regexpatchcmd{\insertframetitle} + {(\c{usebeamertemplate}.*)\c{fi}} + {\c{NoCaseChange}\cB\{\1\cE\}\c{fi}} + {}{}% + \makeatother + \vskip1ex + \insertframetitle +} + +% Here we define what appears at the bottom of each slide: the "footline". +\setbeamertemplate{footline}{% + \leavevmode% + + % Horizontal line dividing the rest of the slide from the footer? + % hrule goes all the way across... + % \hrule height.3pt% + % With \rule, you can specify the thickness + % \rule[raise-height]{width}{thickness} + % \hspace{.025\textwidth}\rule{.95\textwidth}{.5pt} + + \hbox{% + \ifnum \thepage>1 + % On the left half of the footer, insert the TACC of + \begin{minipage}{.2\textwidth}% + \hskip .05\textwidth%Give horizontal space else this will set on the left edge of the slide! + % \includegraphics[width=.8\textwidth]{TACC_logo.png} + \end{minipage} + + + \begin{minipage}{\textwidth}% + % \vskip .023\textheight% + \raggedleft% + \setlength{\rightskip}{\textwidth} + \hbox{% + \begin{beamercolorbox}[wd=0.7\textwidth,ht=2.25ex,dp=1ex,left]{author in head/foot}% + \insertshorttitle{} \hskip .01\textwidth | \hskip .01\textwidth \insertdate{} \hskip .01\textwidth | \hskip .01\textwidth \insertframenumber{} + \end{beamercolorbox}% + } + + % + % If we are not on the first page, insert a page number + % For some reason, insertframenumber is buggy when you have fragile + % slides with verbatim environments in them... it tends to skip numbers + % for some reason! On the other hand, the pagenumber is incremented + % for *every* slide, including transition slides... + % \hfill\includegraphics[width=\textwidth]{tacc_ut.png} + \end{minipage}% + \begin{minipage}{.05\textwidth}% + \end{minipage}% + \fi %\thepage>1 + }% + \vskip .023\textheight% + +} + + + + +\ifTACCheadernav + +\usesectionheadtemplate +{\hfill\insertsectionhead} +{\hfill\color{fg!50!bg}\insertsectionhead} + +% Head +\ifbeamer@compress + +% Here we define how the top of the frame looks, the "headline". +\setbeamertemplate{headline} +{% + \ifnum \thepage>1 + \leavevmode% + \begin{beamercolorbox}[wd=.5\paperwidth,ht=2.5ex,dp=1.125ex]{% + section in head/foot}% + \insertsectionnavigationhorizontal{.5\paperwidth}{\hskip0pt plus1filll}{}% + \end{beamercolorbox}% + \begin{beamercolorbox}[wd=.5\paperwidth,ht=2.5ex,dp=1.125ex]{% + subsection in head/foot}% + \insertsubsectionnavigationhorizontal{% + .5\paperwidth}{}{\hskip0pt plus1filll}% + \end{beamercolorbox}% + \fi %\thepage>1 +} + +\else% Not compressed + +\setbeamertemplate{headline} +{% + \ifnum \thepage>1 + \leavevmode% + \@tempdimb=2.4375ex% + \ifnum\beamer@subsectionmax<\beamer@sectionmax% + \multiply\@tempdimb by\beamer@sectionmax% + \else% + \multiply\@tempdimb by\beamer@subsectionmax% + \fi% + \ifdim\@tempdimb>0pt% + \advance\@tempdimb by 1.125ex% + \begin{beamercolorbox}[wd=.5\paperwidth,ht=\@tempdimb]{% + section in head/foot}% + \vbox to\@tempdimb{\vfil\insertsectionnavigation{.5\paperwidth}\vfil}% + \end{beamercolorbox}% + \begin{beamercolorbox}[wd=.5\paperwidth,ht=\@tempdimb]{% + subsection in head/foot}% + \vbox to\@tempdimb{\vfil\insertsubsectionnavigation{.5\paperwidth}\vfil}% + \end{beamercolorbox}% + \fi% + \fi % \thepage>1 +} + +\fi % end if compressed +\fi % TACCheadernav + + +\ifTACCheadertree + +\setbeamertemplate{headline} +{ + \begin{beamercolorbox}[wd=\paperwidth,colsep=1.5pt]{upper separation line head} + \end{beamercolorbox} + % + % Place short title + % + \begin{beamercolorbox}[wd=\paperwidth,ht=2.5ex,dp=1.125ex,% + leftskip=.3cm,rightskip=.3cm plus1fil]{title in head/foot} + \usebeamerfont{title in head/foot}\insertshorttitle + \end{beamercolorbox} + + % + % Place section + % + \begin{beamercolorbox}[wd=\paperwidth,ht=2.5ex,dp=1.125ex,% + leftskip=.3cm,rightskip=.3cm plus1fil]{section in head/foot} + \usebeamerfont{section in head/foot}% + %\ifbeamer@tree@showhooks + \setbox\beamer@tempbox=\hbox{\insertsectionhead}% + \ifdim\wd\beamer@tempbox>1pt% + \hskip2pt\raise1.9pt\hbox{\vrule width0.4pt height1.875ex\vrule width 5pt height0.4pt}% + \hskip1pt% + \fi + \insertsectionhead + \end{beamercolorbox} + +% +% Place subsection +% +\begin{beamercolorbox}[wd=\paperwidth,ht=2.5ex,dp=1.125ex,% + leftskip=.3cm,rightskip=.3cm plus1fil]{subsection in head/foot} + \usebeamerfont{subsection in head/foot}% + %\ifbeamer@tree@showhooks + \setbox\beamer@tempbox=\hbox{\insertsubsectionhead}% + \ifdim\wd\beamer@tempbox>1pt% + \hskip9.4pt\raise1.9pt\hbox{\vrule width0.4pt height1.875ex\vrule width 5pt height0.4pt}% + \hskip1pt% + \fi + \insertsubsectionhead +\end{beamercolorbox} + +% +% Place final separation box +% + \begin{beamercolorbox}[wd=\paperwidth,colsep=1.5pt + ]{lower separation line head} + \end{beamercolorbox} + + % + % Another matching rule which helps to frame the content + % + \hspace{.025\textwidth}\rule{.95\textwidth}{.5pt} +} +\fi % TACCheadertree + + +% The following command suppresses all navigation symbols. This is +% necessary in the TACC theme, since it overlaps where we want the +% logo to be. +\setbeamertemplate{navigation symbols}{} + + +\mode + diff --git a/my_docs/19/eb_users/themes/beamerouterthemeTACC16.sty b/my_docs/19/eb_users/themes/beamerouterthemeTACC16.sty new file mode 100644 index 000000000..c5b178018 --- /dev/null +++ b/my_docs/19/eb_users/themes/beamerouterthemeTACC16.sty @@ -0,0 +1,247 @@ +% Copyright 2003 by Till Tantau +% +% This program can be redistributed and/or modified under the terms +% of the GNU Public License, version 2. + +\mode + +\usepackage{xcolor} +\usepackage{graphicx} +\usepackage{etoolbox} + +\pgfdeclareimage[width=\paperwidth]{titlebackground}{master.jpg} +\pgfdeclareimage[width=\paperwidth]{background}{secondary.jpg} + +\setbeamertemplate{background canvas}{% + \ifnum\c@framenumber=1% + \begin{picture}(0,0) + \put(0,-273){% + \pgfuseimage{titlebackground} + } + %\put(0,-130.7){% + + %\begin{minipage}[b][45mm][t]{\textwidth}%{226mm} + %\begin{center} + % \usebeamerfont{title}{\MakeTextUppercase{\inserttitle}\par} + %\vspace{2ex} + %\usebeamerfont{author}{\insertauthor} + % \end{center} + %\end{minipage} + %} + \end{picture} + % On title page + \else% + % Other frames background + \begin{picture}(0,0) + \put(0,-273){% + \pgfuseimage{background} + } + \end{picture} + \fi% +} + + +\setbeamertemplate{title page}{ +\vspace{40pt} +\begin{center} +\usebeamerfont{title} {\huge \inserttitle}\par +\vspace{4ex} +\usebeamerfont{author} { + \insertauthor +}\par +\vspace{2ex} +\usebeamerfont{institute}{ + \insertinstitute +} \par +\vspace{2ex} +\usebeamerfont{date}{ + \insertdate +} +\end{center} +} + + +\setbeamertemplate{frametitle}[default][center] +\setbeamertemplate{frametitle}{ + \makeatletter + \regexpatchcmd{\insertframetitle} + {(\c{usebeamertemplate}.*)\c{fi}} + {\c{NoCaseChange}\cB\{\1\cE\}\c{fi}} + {}{}% + \makeatother + \vskip1ex + \insertframetitle +} + +% Here we define what appears at the bottom of each slide: the "footline". +\setbeamertemplate{footline}{% + \leavevmode% + + % Horizontal line dividing the rest of the slide from the footer? + % hrule goes all the way across... + % \hrule height.3pt% + % With \rule, you can specify the thickness + % \rule[raise-height]{width}{thickness} + % \hspace{.025\textwidth}\rule{.95\textwidth}{.5pt} + + \hbox{% + \ifnum \thepage>1 + % On the left half of the footer, insert the TACC of + \begin{minipage}{.2\textwidth}% + \hskip .05\textwidth%Give horizontal space else this will set on the left edge of the slide! + % \includegraphics[width=.8\textwidth]{figures/TACC_logo.png} + \end{minipage} + + + \begin{minipage}{\textwidth}% + % \vskip .023\textheight% + \raggedleft% + \setlength{\rightskip}{\textwidth} + \hbox{% + \begin{beamercolorbox}[wd=0.7\textwidth,ht=2.25ex,dp=1ex,left]{author in head/foot}% + \insertshorttitle{} \hskip .01\textwidth | \hskip .01\textwidth \insertdate{} \hskip .01\textwidth | \hskip .01\textwidth \insertframenumber{} + \end{beamercolorbox}% + } + + % + % If we are not on the first page, insert a page number + % For some reason, insertframenumber is buggy when you have fragile + % slides with verbatim environments in them... it tends to skip numbers + % for some reason! On the other hand, the pagenumber is incremented + % for *every* slide, including transition slides... + % \hfill\includegraphics[width=\textwidth]{figures/tacc_ut.png} + \end{minipage}% + \begin{minipage}{.05\textwidth}% + \end{minipage}% + \fi %\thepage>1 + }% + \vskip .023\textheight% + +} + + + + +\ifTACCheadernav + +\usesectionheadtemplate +{\hfill\insertsectionhead} +{\hfill\color{fg!50!bg}\insertsectionhead} + +% Head +\ifbeamer@compress + +% Here we define how the top of the frame looks, the "headline". +\setbeamertemplate{headline} +{% + \ifnum \thepage>1 + \leavevmode% + \begin{beamercolorbox}[wd=.5\paperwidth,ht=2.5ex,dp=1.125ex]{% + section in head/foot}% + \insertsectionnavigationhorizontal{.5\paperwidth}{\hskip0pt plus1filll}{}% + \end{beamercolorbox}% + \begin{beamercolorbox}[wd=.5\paperwidth,ht=2.5ex,dp=1.125ex]{% + subsection in head/foot}% + \insertsubsectionnavigationhorizontal{% + .5\paperwidth}{}{\hskip0pt plus1filll}% + \end{beamercolorbox}% + \fi %\thepage>1 +} + +\else% Not compressed + +\setbeamertemplate{headline} +{% + \ifnum \thepage>1 + \leavevmode% + \@tempdimb=2.4375ex% + \ifnum\beamer@subsectionmax<\beamer@sectionmax% + \multiply\@tempdimb by\beamer@sectionmax% + \else% + \multiply\@tempdimb by\beamer@subsectionmax% + \fi% + \ifdim\@tempdimb>0pt% + \advance\@tempdimb by 1.125ex% + \begin{beamercolorbox}[wd=.5\paperwidth,ht=\@tempdimb]{% + section in head/foot}% + \vbox to\@tempdimb{\vfil\insertsectionnavigation{.5\paperwidth}\vfil}% + \end{beamercolorbox}% + \begin{beamercolorbox}[wd=.5\paperwidth,ht=\@tempdimb]{% + subsection in head/foot}% + \vbox to\@tempdimb{\vfil\insertsubsectionnavigation{.5\paperwidth}\vfil}% + \end{beamercolorbox}% + \fi% + \fi % \thepage>1 +} + +\fi % end if compressed +\fi % TACCheadernav + + +\ifTACCheadertree + +\setbeamertemplate{headline} +{ + \begin{beamercolorbox}[wd=\paperwidth,colsep=1.5pt]{upper separation line head} + \end{beamercolorbox} + % + % Place short title + % + \begin{beamercolorbox}[wd=\paperwidth,ht=2.5ex,dp=1.125ex,% + leftskip=.3cm,rightskip=.3cm plus1fil]{title in head/foot} + \usebeamerfont{title in head/foot}\insertshorttitle + \end{beamercolorbox} + + % + % Place section + % + \begin{beamercolorbox}[wd=\paperwidth,ht=2.5ex,dp=1.125ex,% + leftskip=.3cm,rightskip=.3cm plus1fil]{section in head/foot} + \usebeamerfont{section in head/foot}% + %\ifbeamer@tree@showhooks + \setbox\beamer@tempbox=\hbox{\insertsectionhead}% + \ifdim\wd\beamer@tempbox>1pt% + \hskip2pt\raise1.9pt\hbox{\vrule width0.4pt height1.875ex\vrule width 5pt height0.4pt}% + \hskip1pt% + \fi + \insertsectionhead + \end{beamercolorbox} + +% +% Place subsection +% +\begin{beamercolorbox}[wd=\paperwidth,ht=2.5ex,dp=1.125ex,% + leftskip=.3cm,rightskip=.3cm plus1fil]{subsection in head/foot} + \usebeamerfont{subsection in head/foot}% + %\ifbeamer@tree@showhooks + \setbox\beamer@tempbox=\hbox{\insertsubsectionhead}% + \ifdim\wd\beamer@tempbox>1pt% + \hskip9.4pt\raise1.9pt\hbox{\vrule width0.4pt height1.875ex\vrule width 5pt height0.4pt}% + \hskip1pt% + \fi + \insertsubsectionhead +\end{beamercolorbox} + +% +% Place final separation box +% + \begin{beamercolorbox}[wd=\paperwidth,colsep=1.5pt + ]{lower separation line head} + \end{beamercolorbox} + + % + % Another matching rule which helps to frame the content + % + \hspace{.025\textwidth}\rule{.95\textwidth}{.5pt} +} +\fi % TACCheadertree + + +% The following command suppresses all navigation symbols. This is +% necessary in the TACC theme, since it overlaps where we want the +% logo to be. +\setbeamertemplate{navigation symbols}{} + + +\mode + diff --git a/my_docs/19/eb_users/themes/beamerthemeTACC16-169.sty b/my_docs/19/eb_users/themes/beamerthemeTACC16-169.sty new file mode 100644 index 000000000..22caf9a05 --- /dev/null +++ b/my_docs/19/eb_users/themes/beamerthemeTACC16-169.sty @@ -0,0 +1,38 @@ +%% TACC theme for beamer + +\newif\ifTACCheadernav +\DeclareOption{headernav}{\global\TACCheadernavtrue} + +\newif\ifTACCheadertree +\DeclareOption{headertree}{\global\TACCheadertreetrue} +\ProcessOptions + +\mode + +\makeatletter + \def\beamer@calltheme#1#2#3{% + \def\beamer@themelist{#2} + \@for\beamer@themename:=\beamer@themelist\do + {\usepackage[{#1}]{\beamer@themelocation/#3\beamer@themename}}} + + \def\usefolder#1{ + \def\beamer@themelocation{#1} + } + \def\beamer@themelocation{} + +\usefolder{themes} +\usefonttheme{TACC16} +\useinnertheme{TACC16} +\useoutertheme{TACC16-169} +\usecolortheme{TACC16} + +\mode + + +\newcommand{\event}[1]{% + \makeatletter% + \def\TACC@eventname{#1}% + \makeatother} + +\newcommand{\sectionframe}[1]{\section{#1}\frame{\Large\textbf{#1}}} +\newcommand{\subsectionframe}[1]{\subsection{#1}\frame{\large\textbf{#1}}} diff --git a/my_docs/19/eb_users/themes/beamerthemeTACC16.sty b/my_docs/19/eb_users/themes/beamerthemeTACC16.sty new file mode 100644 index 000000000..750bdd388 --- /dev/null +++ b/my_docs/19/eb_users/themes/beamerthemeTACC16.sty @@ -0,0 +1,26 @@ +%% TACC theme for beamer + +\newif\ifTACCheadernav +\DeclareOption{headernav}{\global\TACCheadernavtrue} + +\newif\ifTACCheadertree +\DeclareOption{headertree}{\global\TACCheadertreetrue} +\ProcessOptions + +\mode + +\usefonttheme{TACC16} +\useinnertheme{TACC16} +\useoutertheme{TACC16} +\usecolortheme{TACC16} + +\mode + + +\newcommand{\event}[1]{% + \makeatletter% + \def\TACC@eventname{#1}% + \makeatother} + +\newcommand{\sectionframe}[1]{\section{#1}\frame{\Large\textbf{#1}}} +\newcommand{\subsectionframe}[1]{\subsection{#1}\frame{\large\textbf{#1}}} diff --git a/my_docs/19/eb_users/themes/example.pdf b/my_docs/19/eb_users/themes/example.pdf new file mode 100644 index 000000000..add373eee Binary files /dev/null and b/my_docs/19/eb_users/themes/example.pdf differ diff --git a/my_docs/19/eb_users/themes/license.tex b/my_docs/19/eb_users/themes/license.tex new file mode 100644 index 000000000..74ff86759 --- /dev/null +++ b/my_docs/19/eb_users/themes/license.tex @@ -0,0 +1,14 @@ + +\begin{frame}{License} +\footnotesize +\textcopyright The University of Texas at Austin, \the\year\\ +\vspace{0.5 cm} +This work is licensed under the Creative Commons Attribution Non-Commercial 3.0 Unported License. To view a copy of this license, +visit http://creativecommons.org/licenses/by-nc/3.0/\\ +\vspace{0.5 cm} +When attributing this work, please use the following text: +"Designing and Administering Large-scale Systems", Texas Advanced Computing Center, \the\year. Available under a Creative Commons Attribution Non-Commercial 3.0 Unported License. +\newline +\newline +\includegraphics[width=1cm]{./figures/cc.png} +\end{frame} \ No newline at end of file diff --git a/my_docs/19/sc19/talk/Lmod-4color@2x.png b/my_docs/19/sc19/talk/Lmod-4color@2x.png deleted file mode 120000 index ac9e959c7..000000000 --- a/my_docs/19/sc19/talk/Lmod-4color@2x.png +++ /dev/null @@ -1 +0,0 @@ -../../../../logos/2x/Lmod-4color@2x.png \ No newline at end of file diff --git a/my_docs/19/sc19/talk/Lmod-4color@2x.png b/my_docs/19/sc19/talk/Lmod-4color@2x.png new file mode 100644 index 000000000..4810d74c3 Binary files /dev/null and b/my_docs/19/sc19/talk/Lmod-4color@2x.png differ diff --git a/my_docs/19/sc19/talk/beamercolorthemeTACC.sty b/my_docs/19/sc19/talk/beamercolorthemeTACC.sty deleted file mode 120000 index c03d8d59c..000000000 --- a/my_docs/19/sc19/talk/beamercolorthemeTACC.sty +++ /dev/null @@ -1 +0,0 @@ -../../../beamer/beamercolorthemeTACC.sty \ No newline at end of file diff --git a/my_docs/19/sc19/talk/beamercolorthemeTACC.sty b/my_docs/19/sc19/talk/beamercolorthemeTACC.sty new file mode 100755 index 000000000..78beb6a4a --- /dev/null +++ b/my_docs/19/sc19/talk/beamercolorthemeTACC.sty @@ -0,0 +1,323 @@ +% Copyright 2003 by Till Tantau . +% +% This program can be redistributed and/or modified under the terms +% of the GNU Public License, version 2. + +\mode + +% I downloaded a gimp color palette from +% http://maururu.net/2007/latex-beamer-color-palette/ +% Which provides rgb values (I think) for several of the +% default beamer themes. You can open this in gimp by +% opening the Palettes dialog, right-clicking anywhere and choosing +% 'Import Palette'. A color in there called 'default added blue' +% appeared to be approximately what I wanted. It had the triple +% of values 141 145 208. If you double-click on this in the +% palette editor it gives you a bunch of information. You can't +% use these values directly to set a color...it just comes out white. +% I think definecolor is expecting something normalized by 255. Yes! + + +% bluish colors +\definecolor{defaddedblue}{rgb}{0.5529,.5686,.8157} % 141,145,208 +\definecolor{defblockheader}{rgb}{.1921,.2235,.6824} % 49,57,174 +\definecolor{flyaddedblue}{rgb}{.5961,.6118,.8431} % 152,156,215 + +% bluish-greys +\definecolor{beetleaddedblue1}{rgb}{.3333,.4039,.6196} % 85 103 158, dark +\definecolor{beetleaddedblue2}{rgb}{.4510,.5098,.7020} % 115 130 179, medium +\definecolor{beetleaddedblue3}{rgb}{.7059,.7255,.7961} % 180 185 203, light (greyest) + +% very light blue-greys +\definecolor{deflightouter1}{rgb}{.7608,.7647,.9020} % 194 195 230, dark +\definecolor{deflightouter2}{rgb}{.8 ,.8039,.9176} % 204 205 234, medium +\definecolor{deflightouter3}{rgb}{.8392,.8431,.9373} % 214 215 239, light + +% reddish colors +\definecolor{flyalertblockheader}{rgb}{.7373,.1294,.1333} % 188 33 34 +\definecolor{flyaddedred}{rgb}{.8667,.5647,.5647}% 221 144 144 +\definecolor{beaverouterframe}{rgb}{.5529,.0980,.0980}% 141 25 25 + +% greens (green is used for 'examples' in beamer) +\definecolor{defexblock}{rgb}{.9098,.9333,.9020} % 232 238 230, light +\definecolor{defaddedgreen}{rgb}{.5412,.6510,.4706} % 138 166 120, medium +\definecolor{defexblockheader}{rgb}{.1686,.3647,.0392} % 43 93 10, dark + +\definecolor{lightexblock}{rgb}{.9137,.9451,.9020} % 233 241 230, light +\definecolor{lightexblockheader}{rgb}{.8235,.8980,.8} % 210 229 204, medium +\definecolor{lightexblockheadertext}{rgb}{.2431,.5098,.0745} % 62 130 19, dark + + +%%% +% Set the normal text color +%%% +\setbeamercolor{normal text}{fg=black,bg=white} + +%%% +% Set the alerted text color +%%% +% \setbeamercolor{alerted text}{fg=red} +\setbeamercolor{alerted text}{fg=red!50!black} % half black/half red for green bg +% \setbeamercolor{alerted text}{fg=beaverouterframe} +% \setbeamercolor{alerted text}{fg=defblockheader} % doesn't stand out enough + + +% Set the 'example' text +\setbeamercolor{example text}{fg=green!50!black} + +\setbeamercolor{structure}{fg=black} + +\setbeamercolor{background canvas}{parent=normal text} +\setbeamercolor{background}{parent=background canvas} + +\setbeamercolor{palette primary}{use=structure,fg=structure.fg} +\setbeamercolor{palette secondary}{use=structure,fg=structure.fg!75!black} +\setbeamercolor{palette tertiary}{use=structure,fg=structure.fg!50!black} +\setbeamercolor{palette quaternary}{fg=black} + +\setbeamercolor{palette sidebar primary}{use=normal text,fg=normal text.fg} +\setbeamercolor{palette sidebar secondary}{use=structure,fg=structure.fg} +\setbeamercolor{palette sidebar tertiary}{use=normal text,fg=normal text.fg} +\setbeamercolor{palette sidebar quaternary}{use=structure,fg=structure.fg} + +\setbeamercolor{math text}{} +\setbeamercolor{math text inlined}{parent=math text} +\setbeamercolor{math text displayed}{parent=math text} + +\setbeamercolor{normal text in math text}{} + +\setbeamercolor{local structure}{parent=structure} + +\setbeamercolor{titlelike}{parent=structure} + +\setbeamercolor{title}{parent=titlelike} +\setbeamercolor{title in head/foot}{parent=palette quaternary} +\setbeamercolor{title in sidebar}{parent=palette sidebar quaternary} + +\setbeamercolor{subtitle}{parent=title} + +\setbeamercolor{author}{} +\setbeamercolor{author in head/foot}{parent=palette primary} +\setbeamercolor{author in sidebar}{use=palette sidebar tertiary,fg=palette sidebar tertiary.fg} + +\setbeamercolor{institute}{} +\setbeamercolor{institute in head/foot}{parent=palette tertiary} +\setbeamercolor{institute in sidebar}{use=palette sidebar tertiary,fg=palette sidebar tertiary.fg} + +\setbeamercolor{date}{} +\setbeamercolor{date in head/foot}{parent=palette secondary} +\setbeamercolor{date in sidebar}{use=palette sidebar tertiary,fg=palette sidebar tertiary.fg} + +\setbeamercolor{titlegraphic}{} + +\setbeamercolor{part name}{} +\setbeamercolor{part title}{parent=titlelike} + +\setbeamercolor{section in toc}{parent=structure} +\setbeamercolor{section in toc shaded}{parent=section in toc} +\setbeamercolor{section in head/foot}{parent=palette tertiary} +\setbeamercolor{section in sidebar}{parent=palette sidebar secondary} +\setbeamercolor{section in sidebar shaded}{use=section in sidebar,fg=section in sidebar.fg!40!bg} +\setbeamercolor{section number projected}{parent=item projected} + +\setbeamercolor{subsection in toc}{} +\setbeamercolor{subsection in toc shaded}{parent=subsection in toc} +\setbeamercolor{subsection in head/foot}{parent=palette secondary} +\setbeamercolor{subsection in sidebar}{parent=palette sidebar primary} +\setbeamercolor{subsection in sidebar shaded}{use=subsection in sidebar,fg=subsection in sidebar.fg!40!bg} +\setbeamercolor{subsection number projected}{parent={subitem projected}} + +\setbeamercolor{subsubsection in toc}{parent=subsection in toc} +\setbeamercolor{subsubsection in toc shaded}{parent=subsubsection in toc} +\setbeamercolor{subsubsection in head/foot}{parent=subsection in head/foot} +\setbeamercolor{subsubsection in sidebar}{parent=subsection in sidebar} +\setbeamercolor{subsubsection in sidebar shaded}{parent=subsection in sidebar shaded} +\setbeamercolor{subsubsection number projected}{parent=subsubitem projected} + +\setbeamercolor{headline}{} +\setbeamercolor{footline}{} + +\setbeamercolor{sidebar}{} +\setbeamercolor{sidebar left}{parent=sidebar} +\setbeamercolor{sidebar right}{parent=sidebar} + +\setbeamercolor{logo}{parent=palette secondary} + +\setbeamercolor{frametitle}{parent=titlelike} +\setbeamercolor{framesubtitle}{parent=frametitle} + +\setbeamercolor{frametitle right}{parent=frametitle} + +\setbeamercolor{caption}{} +\setbeamercolor{caption name}{parent=structure} + +\setbeamercolor{button}{use=local structure,bg=local structure.fg!50!bg,fg=white} +\setbeamercolor{button border}{use=button,fg=button.bg} +\setbeamercolor{navigation symbols}{use=structure,fg=structure.fg!40!bg} +\setbeamercolor{navigation symbols dimmed}{use=structure,fg=structure.fg!20!bg} +\setbeamercolor{mini frame}{parent=section in head/foot} + +% Color expressions are defined in the xcolor package +% +% Ex: Mixture of 40% green, 60% yellow: green!40!yellow +% +% The complement of any color can be obtained by prepending +% a minus sign: -green!40!yellow +% +% One can also combine up to three colors (in differing proportions) +% using the rgb command. For example, the following command combines +% 3 parts of the first color, with 2 parts of the second, and one part +% "red" +% +%\color{rgb:-green!40!yellow,3;green!40!yellow,2;red,1} +% Unfortunately, I don't think this works as an argument to setbeamercolor... +% "Orange" bg=green!30!yellow!30!red +% close to burnt orange: red!75!green +% lightgray is a color, but gray!25!white looks better +% +% A nice pair of greens +% (dark, a little too dark to be under black text...) -red!75!green!50!blue!25 +% (light) -red!75!green!50!blue!25!gray +% +% Some colors are only available via options to the xcolor package, eg. +% x11names,DarkOliveGreen4 +% svgnames, Chartreuse +% dvipsnames, ForestGreen +% +% but beamer does not seem to have any of these. +% +% The base color names which are always available are: +% black +% blue +% brown +% cyan +% darkgray +% gray +% green +% lightgray +% lime +% magenta +% olive +% orange +% pink +% purple +% red +% teal +% violet +% white +% yellow + +% From the beamer user guide, pg. 167 +% Inner color themes only specify the colors of elements used in inner +% themes. Most noticably, they specify the colors used for blocks. +% ... + +% Example color definition +% beamercolorthemedefault.sty:\definecolor{beamer@blendedblue}{rgb}{0.2,0.2,0.7} +% beamercolorthemedefault.sty:\setbeamercolor{structure}{fg=beamer@blendedblue} + +% The greens +% \setbeamercolor{block body}{bg=-red!75!green!50!blue!25!gray} +% \setbeamercolor{block title}{parent=structure,bg=-red!75!green!50!blue!25,fg=-red!75!green!50!blue!25!gray} + +%%% +% Set the block body and title background/foreground colors +%%% +% \setbeamercolor{block body}{bg=flyaddedblue} +% \setbeamercolor{block title}{bg=defblockheader,fg=flyaddedblue} + +% Purplish blues, too dark overall +% \setbeamercolor{block body}{bg=beetleaddedblue3} +% \setbeamercolor{block title}{bg=beetleaddedblue2,fg=beetleaddedblue3} + +% Very light blue greys +% 1. Not enough contrast +% \setbeamercolor{block body}{bg=deflightouter3} +% \setbeamercolor{block title}{bg=deflightouter2,fg=deflightouter3} + +% 2. Not enough contrast +% \setbeamercolor{block body}{bg=deflightouter3} +% \setbeamercolor{block title}{bg=deflightouter1,fg=deflightouter3} + +% 3. Combination of deflightouter and fly. The block bg is +% lighter than the all-beetle color scheme I previously thought was best. +% Currently I like this one the best +\setbeamercolor{block body}{bg=deflightouter3} +\setbeamercolor{block title}{bg=beetleaddedblue2,fg=deflightouter3} + +% 4. Greens. Looks like a highlighter. I don't really trust greens +% on projectors... It's almost too bright/hurts your eyes. +% \setbeamercolor{block body}{bg=defexblock} +% \setbeamercolor{block title}{bg=defaddedgreen,fg=defexblock} + +% This looks pretty good ... it's similar to the greens we had before +% but should be lighter. The blocks are just a little too "mint" colored +% though... +% \setbeamercolor{block body}{bg=defexblock} +% \setbeamercolor{block title}{bg=defexblockheader,fg=defexblock} + +% Pea Soup! +%\setbeamercolor{block body}{bg=defaddedgreen} +%\setbeamercolor{block title}{bg=defexblockheader,fg=defaddedgreen} + + +% Changing these didn't seem to do anything...I had to change the +% 'alerted text' color instead +\setbeamercolor{block body alerted}{} +\setbeamercolor{block body example}{} +\setbeamercolor{block title alerted}{parent=alerted text} +\setbeamercolor{block title example}{parent=example text} + +\setbeamercolor{item}{parent=local structure} +\setbeamercolor{subitem}{parent=item} +\setbeamercolor{subsubitem}{parent=subitem} + +\setbeamercolor{item projected}{parent=item,use=item,fg=white,bg=item.fg} +\setbeamercolor{subitem projected}{parent=item projected} +\setbeamercolor{subsubitem projected}{parent=subitem projected} + +\setbeamercolor{enumerate item}{parent=item} +\setbeamercolor{enumerate subitem}{parent=subitem} +\setbeamercolor{enumerate subsubitem}{parent=subsubitem} + +\setbeamercolor{itemize item}{parent=item} +\setbeamercolor{itemize subitem}{parent=subitem} +\setbeamercolor{itemize subsubitem}{parent=subsubitem} + +\setbeamercolor{itemize/enumerate body}{} +\setbeamercolor{itemize/enumerate subbody}{} +\setbeamercolor{itemize/enumerate subsubbody}{} + +\setbeamercolor{description item}{parent=item} + +\setbeamercolor{bibliography item}{parent=item} + +\setbeamercolor{bibliography entry author}{use=structure,fg=structure.fg} +\setbeamercolor{bibliography entry title}{use=normal text,fg=normal text.fg} +\setbeamercolor{bibliography entry location}{use=structure,fg=structure.fg!65!bg} +\setbeamercolor{bibliography entry note}{use=structure,fg=structure.fg!65!bg} + +\setbeamercolor{separation line}{} + +\setbeamercolor{upper separation line head}{parent=separation line} +\setbeamercolor{middle separation line head}{parent=separation line} +\setbeamercolor{lower separation line head}{parent=separation line} + +\setbeamercolor{upper separation line foot}{parent=separation line} +\setbeamercolor{middle separation line foot}{parent=separation line} +\setbeamercolor{lower separation line foot}{parent=separation line} + +\setbeamercolor{abstract}{} +\setbeamercolor{abstract title}{parent=structure} + +\setbeamercolor{verse}{} + +\setbeamercolor{quotation}{} +\setbeamercolor{quote}{parent=quotation} + +\setbeamercolor{page number in head/foot}{fg=fg!50!bg} + +\setbeamercolor{qed symbol}{parent=structure} + +\mode + diff --git a/my_docs/19/sc19/talk/beamercolorthemeTACC16.sty b/my_docs/19/sc19/talk/beamercolorthemeTACC16.sty deleted file mode 120000 index e5e16b765..000000000 --- a/my_docs/19/sc19/talk/beamercolorthemeTACC16.sty +++ /dev/null @@ -1 +0,0 @@ -../../../beamer/beamercolorthemeTACC16.sty \ No newline at end of file diff --git a/my_docs/19/sc19/talk/beamercolorthemeTACC16.sty b/my_docs/19/sc19/talk/beamercolorthemeTACC16.sty new file mode 100755 index 000000000..779dde91f --- /dev/null +++ b/my_docs/19/sc19/talk/beamercolorthemeTACC16.sty @@ -0,0 +1,192 @@ +% Copyright 2003 by Till Tantau . +% +% This program can be redistributed and/or modified under the terms +% of the GNU Public License, version 2. + +\mode + +\usepackage{textcase,regexpatch} + +\setbeamertemplate{blocks}[rounded][shadow=true] + + +\definecolor{TACCred}{RGB}{180,13,29} +\definecolor{TACCorange}{RGB}{210,104,43} +\definecolor{TACCblue}{RGB}{108, 134, 191} +\definecolor{TACCgreen}{RGB}{23,106,70} + +% I downloaded a gimp color palette from +% http://maururu.net/2007/latex-beamer-color-palette/ +% Which provides rgb values (I think) for several of the +% default beamer themes. You can open this in gimp by +% opening the Palettes dialog, right-clicking anywhere and choosing +% 'Import Palette'. A color in there called 'default added blue' +% appeared to be approximately what I wanted. It had the triple +% of values 141 145 208. If you double-click on this in the +% palette editor it gives you a bunch of information. You can't +% use these values directly to set a color...it just comes out white. +% I think definecolor is expecting something normalized by 255. Yes! + + +%%% +% Set the normal text color +%%% +\setbeamercolor{normal text}{fg=black} %,bg=white} +\setbeamercolor{example text}{fg=TACCgreen} +\setbeamercolor{alerted text}{fg=TACCorange} + + +\setbeamercolor{structure}{fg=black} +%\setbeamercolor{structure}{fg=black} + +\setbeamercolor{background canvas}{parent=normal text} +\setbeamercolor{background}{parent=background canvas} + +\setbeamercolor{palette primary}{use=structure,fg=structure.fg} +\setbeamercolor{palette secondary}{use=structure,fg=structure.fg!75!black} +\setbeamercolor{palette tertiary}{use=structure,fg=structure.fg!50!black} +\setbeamercolor{palette quaternary}{fg=black} + +\setbeamercolor{palette sidebar primary}{use=normal text,fg=normal text.fg} +\setbeamercolor{palette sidebar secondary}{use=structure,fg=structure.fg} +\setbeamercolor{palette sidebar tertiary}{use=normal text,fg=normal text.fg} +\setbeamercolor{palette sidebar quaternary}{use=structure,fg=structure.fg} + +\setbeamercolor{math text}{} +\setbeamercolor{math text inlined}{parent=math text} +\setbeamercolor{math text displayed}{parent=math text} + +\setbeamercolor{normal text in math text}{} + +\setbeamercolor{local structure}{parent=structure} + +\setbeamercolor{titlelike}{parent=structure} + +\setbeamercolor{title}{parent=titlelike} +\setbeamercolor{title in head/foot}{parent=palette quaternary} +\setbeamercolor{title in sidebar}{parent=palette sidebar quaternary} + +\setbeamercolor{subtitle}{parent=title} + +\setbeamercolor{author}{} +\setbeamercolor{author in head/foot}{parent=palette primary} +\setbeamercolor{author in sidebar}{use=palette sidebar tertiary,fg=palette sidebar tertiary.fg} + +\setbeamercolor{institute}{} +\setbeamercolor{institute in head/foot}{parent=palette tertiary} +\setbeamercolor{institute in sidebar}{use=palette sidebar tertiary,fg=palette sidebar tertiary.fg} + +\setbeamercolor{date}{} +\setbeamercolor{date in head/foot}{parent=palette secondary} +\setbeamercolor{date in sidebar}{use=palette sidebar tertiary,fg=palette sidebar tertiary.fg} + +\setbeamercolor{titlegraphic}{} + +\setbeamercolor{part name}{} +\setbeamercolor{part title}{parent=titlelike} + +\setbeamercolor{section in toc}{parent=structure} +\setbeamercolor{section in toc shaded}{parent=section in toc} +\setbeamercolor{section in head/foot}{parent=palette tertiary} +\setbeamercolor{section in sidebar}{parent=palette sidebar secondary} +\setbeamercolor{section in sidebar shaded}{use=section in sidebar,fg=section in sidebar.fg!40!bg} +\setbeamercolor{section number projected}{parent=item projected} + +\setbeamercolor{subsection in toc}{} +\setbeamercolor{subsection in toc shaded}{parent=subsection in toc} +\setbeamercolor{subsection in head/foot}{parent=palette secondary} +\setbeamercolor{subsection in sidebar}{parent=palette sidebar primary} +\setbeamercolor{subsection in sidebar shaded}{use=subsection in sidebar,fg=subsection in sidebar.fg!40!bg} +\setbeamercolor{subsection number projected}{parent={subitem projected}} + +\setbeamercolor{subsubsection in toc}{parent=subsection in toc} +\setbeamercolor{subsubsection in toc shaded}{parent=subsubsection in toc} +\setbeamercolor{subsubsection in head/foot}{parent=subsection in head/foot} +\setbeamercolor{subsubsection in sidebar}{parent=subsection in sidebar} +\setbeamercolor{subsubsection in sidebar shaded}{parent=subsection in sidebar shaded} +\setbeamercolor{subsubsection number projected}{parent=subsubitem projected} + +\setbeamercolor{headline}{} +\setbeamercolor{footline}{} + +\setbeamercolor{sidebar}{} +\setbeamercolor{sidebar left}{parent=sidebar} +\setbeamercolor{sidebar right}{parent=sidebar} + +\setbeamercolor{logo}{parent=palette secondary} + +\setbeamercolor{frametitle}{parent=titlelike} +\setbeamercolor{framesubtitle}{parent=frametitle} + +\setbeamercolor{frametitle right}{parent=frametitle} + +\setbeamercolor{caption}{} +\setbeamercolor{caption name}{parent=structure} + +\setbeamercolor{button}{use=local structure,bg=local structure.fg!50!bg,fg=white} +\setbeamercolor{button border}{use=button,fg=button.bg} +\setbeamercolor{navigation symbols}{use=structure,fg=structure.fg!40!bg} +\setbeamercolor{navigation symbols dimmed}{use=structure,fg=structure.fg!20!bg} +\setbeamercolor{mini frame}{parent=section in head/foot} + +\setbeamercolor{block body}{fg=black} +\setbeamercolor{block body alerted}{fg=black} +\setbeamercolor{block body example}{fg=black} + +\setbeamercolor{block title}{bg=TACCblue,fg=white} +\setbeamercolor{block title alerted}{bg=TACCred,fg=white} +\setbeamercolor{block title example}{bg=TACCgreen,fg=white} + +\setbeamercolor{item}{parent=local structure} +\setbeamercolor{subitem}{parent=item} +\setbeamercolor{subsubitem}{parent=subitem} + +\setbeamercolor{item projected}{parent=item,use=item,fg=black,bg=item.fg} +\setbeamercolor{subitem projected}{parent=item projected} +\setbeamercolor{subsubitem projected}{parent=subitem projected} + +\setbeamercolor{enumerate item}{parent=item} +\setbeamercolor{enumerate subitem}{parent=subitem} +\setbeamercolor{enumerate subsubitem}{parent=subsubitem} + +\setbeamercolor{itemize item}{parent=item} +\setbeamercolor{itemize subitem}{parent=subitem} +\setbeamercolor{itemize subsubitem}{parent=subsubitem} + +\setbeamercolor{itemize/enumerate body}{} +\setbeamercolor{itemize/enumerate subbody}{} +\setbeamercolor{itemize/enumerate subsubbody}{} + +\setbeamercolor{description item}{parent=item} + +\setbeamercolor{bibliography item}{parent=item} + +\setbeamercolor{bibliography entry author}{use=structure,fg=structure.fg} +\setbeamercolor{bibliography entry title}{use=normal text,fg=normal text.fg} +\setbeamercolor{bibliography entry location}{use=structure,fg=structure.fg!65!bg} +\setbeamercolor{bibliography entry note}{use=structure,fg=structure.fg!65!bg} + +\setbeamercolor{separation line}{} + +\setbeamercolor{upper separation line head}{parent=separation line} +\setbeamercolor{middle separation line head}{parent=separation line} +\setbeamercolor{lower separation line head}{parent=separation line} + +\setbeamercolor{upper separation line foot}{parent=separation line} +\setbeamercolor{middle separation line foot}{parent=separation line} +\setbeamercolor{lower separation line foot}{parent=separation line} + +\setbeamercolor{abstract}{} +\setbeamercolor{abstract title}{parent=structure} + +\setbeamercolor{verse}{} + +\setbeamercolor{quotation}{} +\setbeamercolor{quote}{parent=quotation} + +\setbeamercolor{page number in head/foot}{fg=fg!50!bg} + +\setbeamercolor{qed symbol}{parent=structure} + +\mode + diff --git a/my_docs/19/sc19/talk/beamerfontthemeTACC.sty b/my_docs/19/sc19/talk/beamerfontthemeTACC.sty deleted file mode 120000 index 25bb9ea22..000000000 --- a/my_docs/19/sc19/talk/beamerfontthemeTACC.sty +++ /dev/null @@ -1 +0,0 @@ -../../../beamer/beamerfontthemeTACC.sty \ No newline at end of file diff --git a/my_docs/19/sc19/talk/beamerfontthemeTACC.sty b/my_docs/19/sc19/talk/beamerfontthemeTACC.sty new file mode 100755 index 000000000..ef9ce1e5e --- /dev/null +++ b/my_docs/19/sc19/talk/beamerfontthemeTACC.sty @@ -0,0 +1,12 @@ +% Copyright 2003 by Till Tantau +% +% This program can be redistributed and/or modified under the terms +% of the GNU Public License, version 2. + +\mode + +\setbeamerfont{frametitle}{parent=structure,size=\LARGE,series=\bfseries} +\setbeamerfont{framesubtitle}{parent=frametitle,size=\small} + +\mode + \ No newline at end of file diff --git a/my_docs/19/sc19/talk/beamerfontthemeTACC16.sty b/my_docs/19/sc19/talk/beamerfontthemeTACC16.sty deleted file mode 120000 index abc5b5d6c..000000000 --- a/my_docs/19/sc19/talk/beamerfontthemeTACC16.sty +++ /dev/null @@ -1 +0,0 @@ -../../../beamer/beamerfontthemeTACC16.sty \ No newline at end of file diff --git a/my_docs/19/sc19/talk/beamerfontthemeTACC16.sty b/my_docs/19/sc19/talk/beamerfontthemeTACC16.sty new file mode 100755 index 000000000..b65271835 --- /dev/null +++ b/my_docs/19/sc19/talk/beamerfontthemeTACC16.sty @@ -0,0 +1,21 @@ +% Copyright 2003 by Till Tantau +% +% This program can be redistributed and/or modified under the terms +% of the GNU Public License, version 2. + +\mode +\setbeamerfont{title}{parent=structure,size=\LARGE,series=\bfseries} +\setbeamerfont{author}{parent=structure,size=\large, series=\normalfont} +\setbeamerfont{frametitle}{parent=structure,size=\LARGE,series=\bfseries} +\setbeamerfont{framesubtitle}{parent=frametitle,size=\small} + +%\usefonttheme{professionalfonts} % using non standard fonts for beamer +%\usefonttheme{serif} % default family is serif +%\usepackage{fontspec} +%\setmainfont{Century Gothic} + +\usepackage{fontspec} +\usepackage{libertine} + +\mode + diff --git a/my_docs/19/sc19/talk/beamerinnerthemeTACC.sty b/my_docs/19/sc19/talk/beamerinnerthemeTACC.sty deleted file mode 120000 index 39f13a172..000000000 --- a/my_docs/19/sc19/talk/beamerinnerthemeTACC.sty +++ /dev/null @@ -1 +0,0 @@ -../../../beamer/beamerinnerthemeTACC.sty \ No newline at end of file diff --git a/my_docs/19/sc19/talk/beamerinnerthemeTACC.sty b/my_docs/19/sc19/talk/beamerinnerthemeTACC.sty new file mode 100755 index 000000000..29e2bce81 --- /dev/null +++ b/my_docs/19/sc19/talk/beamerinnerthemeTACC.sty @@ -0,0 +1,11 @@ +\mode + +\setbeamertemplate{itemize item}[circle] +\setbeamertemplate{itemize subitem}{{}--{}} +\setbeamertemplate{itemize subsubitem}[circle] +\setbeamertemplate{section in toc}{$\bullet$\hskip.5em\inserttocsection} +%\setbeamertemplate{subsection in toc}{} +\setbeamertemplate{subsubsection in toc}{} + +\mode + diff --git a/my_docs/19/sc19/talk/beamerinnerthemeTACC16.sty b/my_docs/19/sc19/talk/beamerinnerthemeTACC16.sty deleted file mode 120000 index dd9b03a0c..000000000 --- a/my_docs/19/sc19/talk/beamerinnerthemeTACC16.sty +++ /dev/null @@ -1 +0,0 @@ -../../../beamer/beamerinnerthemeTACC16.sty \ No newline at end of file diff --git a/my_docs/19/sc19/talk/beamerinnerthemeTACC16.sty b/my_docs/19/sc19/talk/beamerinnerthemeTACC16.sty new file mode 100755 index 000000000..f7f454e1d --- /dev/null +++ b/my_docs/19/sc19/talk/beamerinnerthemeTACC16.sty @@ -0,0 +1,11 @@ +\mode + +\setbeamertemplate{itemize item}[triangle] +\setbeamertemplate{itemize subitem}[triangle] +\setbeamertemplate{itemize subsubitem}[triangle] +\setbeamertemplate{section in toc}{$\bullet$\hskip.5em\inserttocsection} +%\setbeamertemplate{subsection in toc}{} +\setbeamertemplate{subsubsection in toc}{} + +\mode + diff --git a/my_docs/19/sc19/talk/beamerouterthemeTACC.sty b/my_docs/19/sc19/talk/beamerouterthemeTACC.sty deleted file mode 120000 index 374bd4f45..000000000 --- a/my_docs/19/sc19/talk/beamerouterthemeTACC.sty +++ /dev/null @@ -1 +0,0 @@ -../../../beamer/beamerouterthemeTACC.sty \ No newline at end of file diff --git a/my_docs/19/sc19/talk/beamerouterthemeTACC.sty b/my_docs/19/sc19/talk/beamerouterthemeTACC.sty new file mode 100755 index 000000000..038580303 --- /dev/null +++ b/my_docs/19/sc19/talk/beamerouterthemeTACC.sty @@ -0,0 +1,196 @@ +% Copyright 2003 by Till Tantau +% +% This program can be redistributed and/or modified under the terms +% of the GNU Public License, version 2. + +\mode + +\setbeamertemplate{frametitle}[default][center] +\addtobeamertemplate{frametitle}{\vskip 4ex minus 4ex}{} + +% Here we define what appears at the bottom of each slide: the "footline". +\setbeamertemplate{footline}{% + \leavevmode% + + % Horizontal line dividing the rest of the slide from the footer? + % hrule goes all the way across... + % \hrule height.3pt% + % With \rule, you can specify the thickness + % \rule[raise-height]{width}{thickness} + \hspace{.025\textwidth}\rule{.95\textwidth}{.5pt} + + \hbox{% + % On the left half of the footer, insert the TACC logo + \begin{minipage}{.5\textwidth}% + \hskip .033\textwidth%Give horizontal space else this will set on the left edge of the slide! + % TACC logo with custom viewport! + \includegraphics[viewport=1 -1 135 35, clip=true, width=.4\textwidth]{figures/TACC_logo} + \end{minipage} + % + \begin{minipage}{.5\textwidth}% + \vskip .023\textheight% + \raggedleft% + \setlength{\rightskip}{.033\textwidth} + % + % If we are not on the first page, insert a page number + % For some reason, insertframenumber is buggy when you have fragile + % slides with verbatim environments in them... it tends to skip numbers + % for some reason! On the other hand, the pagenumber is incremented + % for *every* slide, including transition slides... + \ifnum \thepage>1 + % \insertshorttitle + \insertframenumber + % \insertframenumber/\inserttotalframenumber + % \insertpagenumber + \else % Do a phantom of whatever you do on other pages, so spacing matches + %$\phantom{\insertshorttitle}$ + $\phantom{\insertframenumber}$ + %$\phantom{\insertframenumber/\inserttotalframenumber}$ + %$\phantom{\insertpagenumber}$ + \fi + \hfill\includegraphics[width=.5\textwidth]{figures/UT_logo}% + \end{minipage}% + }% + \vskip .023\textheight% +} + + + + +\ifTACCheadernav + +\usesectionheadtemplate +{\hfill\insertsectionhead} +{\hfill\color{fg!50!bg}\insertsectionhead} + +% Head +\ifbeamer@compress + +% Here we define how the top of the frame looks, the "headline". +\setbeamertemplate{headline} +{% + \ifnum \thepage>1 + \leavevmode% + \begin{beamercolorbox}[wd=.5\paperwidth,ht=2.5ex,dp=1.125ex]{% + section in head/foot}% + \insertsectionnavigationhorizontal{.5\paperwidth}{\hskip0pt plus1filll}{}% + \end{beamercolorbox}% + \begin{beamercolorbox}[wd=.5\paperwidth,ht=2.5ex,dp=1.125ex]{% + subsection in head/foot}% + \insertsubsectionnavigationhorizontal{% + .5\paperwidth}{}{\hskip0pt plus1filll}% + \end{beamercolorbox}% + \fi %\thepage>1 +} + +\else% Not compressed + +\setbeamertemplate{headline} +{% + \ifnum \thepage>1 + \leavevmode% + \@tempdimb=2.4375ex% + \ifnum\beamer@subsectionmax<\beamer@sectionmax% + \multiply\@tempdimb by\beamer@sectionmax% + \else% + \multiply\@tempdimb by\beamer@subsectionmax% + \fi% + \ifdim\@tempdimb>0pt% + \advance\@tempdimb by 1.125ex% + \begin{beamercolorbox}[wd=.5\paperwidth,ht=\@tempdimb]{% + section in head/foot}% + \vbox to\@tempdimb{\vfil\insertsectionnavigation{.5\paperwidth}\vfil}% + \end{beamercolorbox}% + \begin{beamercolorbox}[wd=.5\paperwidth,ht=\@tempdimb]{% + subsection in head/foot}% + \vbox to\@tempdimb{\vfil\insertsubsectionnavigation{.5\paperwidth}\vfil}% + \end{beamercolorbox}% + \fi% + \fi % \thepage>1 +} + +\fi % end if compressed +\fi % TACCheadernav + + +\ifTACCheadertree + +\setbeamertemplate{headline} +{ + \begin{beamercolorbox}[wd=\paperwidth,colsep=1.5pt + ]{upper separation line head} + \end{beamercolorbox} + % + % Place short title + % + \begin{beamercolorbox}[wd=\paperwidth,ht=2.5ex,dp=1.125ex,% + leftskip=.3cm,rightskip=.3cm plus1fil]{title in head/foot} + \usebeamerfont{title in head/foot}\insertshorttitle + \end{beamercolorbox} + + % + % Place section + % + \begin{beamercolorbox}[wd=\paperwidth,ht=2.5ex,dp=1.125ex,% + leftskip=.3cm,rightskip=.3cm plus1fil]{section in head/foot} + \usebeamerfont{section in head/foot}% + %\ifbeamer@tree@showhooks + \setbox\beamer@tempbox=\hbox{\insertsectionhead}% + \ifdim\wd\beamer@tempbox>1pt% + \hskip2pt\raise1.9pt\hbox{\vrule width0.4pt height1.875ex\vrule width 5pt height0.4pt}% + \hskip1pt% + \fi% \ifdim + %\else% + %\hskip6pt% + %\fi% \ifbeamer + \insertsectionhead + \end{beamercolorbox} + +% +% Place subsection +% +\begin{beamercolorbox}[wd=\paperwidth,ht=2.5ex,dp=1.125ex,% + leftskip=.3cm,rightskip=.3cm plus1fil]{subsection in head/foot} + \usebeamerfont{subsection in head/foot}% + %\ifbeamer@tree@showhooks + \setbox\beamer@tempbox=\hbox{\insertsubsectionhead}% + \ifdim\wd\beamer@tempbox>1pt% + \hskip9.4pt\raise1.9pt\hbox{\vrule width0.4pt height1.875ex\vrule width 5pt height0.4pt}% + \hskip1pt% + \fi% \ifdim + %\else% + %\hskip12pt% + %\fi% \ifbeamer + \insertsubsectionhead +\end{beamercolorbox} + +% +% Place final separation box +% + \begin{beamercolorbox}[wd=\paperwidth,colsep=1.5pt + ]{lower separation line head} + \end{beamercolorbox} + + % + % Another matching rule which helps to frame the content + % + \hspace{.025\textwidth}\rule{.95\textwidth}{.5pt} +} +\fi % TACCheadertree + + +% The following command suppresses all navigation symbols. This is +% necessary in the TACC theme, since it overlaps where we want the +% logo to be. +\setbeamertemplate{navigation symbols}{} + +% Align the navigation symbols vertically (still overlaps our logo!) +%\setbeamertemplate{navigation symbols}[vertical]{} + +% Only places the slide-forward and slide-back symbol, but yes, +% this still overlaps our logo! +%\setbeamertemplate{navigation symbols}[only frame symbol]{} + + +\mode + diff --git a/my_docs/19/sc19/talk/beamerouterthemeTACC16.sty b/my_docs/19/sc19/talk/beamerouterthemeTACC16.sty deleted file mode 120000 index 6d5f742b3..000000000 --- a/my_docs/19/sc19/talk/beamerouterthemeTACC16.sty +++ /dev/null @@ -1 +0,0 @@ -../../../beamer/beamerouterthemeTACC16.sty \ No newline at end of file diff --git a/my_docs/19/sc19/talk/beamerouterthemeTACC16.sty b/my_docs/19/sc19/talk/beamerouterthemeTACC16.sty new file mode 100755 index 000000000..d5e6388c7 --- /dev/null +++ b/my_docs/19/sc19/talk/beamerouterthemeTACC16.sty @@ -0,0 +1,312 @@ +% Antonio Gomez (agomez@tacc.utexas.edu) +% 4-20-17. Added option to put the footer on the right side + + + +\mode + +\usepackage{xcolor} +\usepackage{graphicx} +\usepackage{etoolbox} + + + +% This theme accepts the "rightfooter" option +% When used, it will put the TACC logo at the bottom of the slide on the right side +% By default, it goes to the left + +\xifaspectratio{ + {169} { + \pgfdeclareimage[width=\paperwidth]{titlebackground}{./figures/master169.jpg} + \if@rightfooterOption + \pgfdeclareimage[width=\paperwidth]{background}{./figures/secondary_right169.jpg} +\else + \pgfdeclareimage[width=\paperwidth]{background}{./figures/secondary169.jpg} +\fi +} +}[ +\pgfdeclareimage[width=\paperwidth]{titlebackground}{./figures/master.jpg} + \if@rightfooterOption + \pgfdeclareimage[width=\paperwidth]{background}{./figures/secondary_right.jpg} +\else + \pgfdeclareimage[width=\paperwidth]{background}{./figures/secondary.jpg} +\fi +] + +\setbeamertemplate{background canvas}{% +\xifaspectratio{ + {169} { + \ifnum\c@framenumber=1 % + \begin{picture}(0,0) + \put(-3,-256){% + \pgfuseimage{titlebackground} + } + \end{picture} + \else% + \begin{picture}(0,0) + \put(-3,-260){% + \pgfuseimage{background} + } + \end{picture} + \fi + } + {43} { + \ifnum\c@framenumber=1 % + \begin{picture}(0,0) + \put(-4,-274){% + \pgfuseimage{titlebackground} + } + \end{picture} + \else% + \begin{picture}(0,0) + \put(-4,-274){% + \pgfuseimage{background} + } + \end{picture} + \fi + } +} +} + + + +%\setbeamertemplate{background canvas}{% +% % On title page +% \ifnum\c@framenumber=1 % +% \begin{picture}(0,0) +% \put(0,-253){% +% \pgfuseimage{titlebackground} +% } +% \end{picture} +% +% \else% +% \xifaspectratio{ +% {169} { +% % Other frames background +% \begin{picture}(0,0) +% \put(-4,-260){% +% \pgfuseimage{background} +% } +% \end{picture} +% } +% }[ +% % Other frames background +% \begin{picture}(0,0) +% \put(-4,-274){% +% \pgfuseimage{background} +% } +% \end{picture} +% ] +% \fi% +%} + + +\setbeamertemplate{title page}{ +\vspace{40pt} +\begin{center} +\usebeamerfont{title} {\huge \inserttitle}\par +\vspace{4ex} +\usebeamerfont{author} { + \insertauthor +}\par +\vspace{2ex} +\usebeamerfont{institute}{ + \insertinstitute +} \par +\vspace{2ex} +\usebeamerfont{date}{ + \insertdate +} +\end{center} +} + + +\setbeamertemplate{frametitle}[default][center] +\setbeamertemplate{frametitle}{ + \makeatletter + \regexpatchcmd{\insertframetitle} + {(\c{usebeamertemplate}.*)\c{fi}} + {\c{NoCaseChange}\cB\{\1\cE\}\c{fi}} + {}{}% + \makeatother + \vskip1ex + \insertframetitle +} + +% Here we define what appears at the bottom of each slide: the "footline". +\setbeamertemplate{footline}{% + \leavevmode% + + % Horizontal line dividing the rest of the slide from the footer? + % hrule goes all the way across... + % \hrule height.3pt% + % With \rule, you can specify the thickness + % \rule[raise-height]{width}{thickness} + % \hspace{.025\textwidth}\rule{.95\textwidth}{.5pt} + + \hbox{% + \ifnum \thepage>1 + \if@rightfooterOption + \begin{minipage}{.2\textwidth}% + \hskip .05\textwidth%Give horizontal space else this will set on the left edge of the slide! + \end{minipage} + \else + \begin{minipage}{.4\textwidth}% + \hskip .05\textwidth%Give horizontal space else this will set on the left edge of the slide! + \end{minipage} + \fi + + + \begin{minipage}{\textwidth}% + % \vskip .023\textheight% + \raggedleft% + \setlength{\rightskip}{\textwidth} + \if@rightfooterOption + \hbox{% + \begin{beamercolorbox}[wd=0.7\textwidth,ht=2.25ex,dp=1ex,left]{author in head/foot}% + \insertshorttitle{} \hskip .01\textwidth | \hskip .01\textwidth \insertdate{} \hskip .01\textwidth | \hskip .01\textwidth \insertframenumber{} + \end{beamercolorbox}% + } + \else + \hbox{% + \begin{beamercolorbox}[wd=0.5\textwidth,ht=2.25ex,dp=1ex,left]{author in head/foot}% + \insertshorttitle{} \hskip .01\textwidth | \hskip .01\textwidth \insertdate{} \hskip .01\textwidth | \hskip .01\textwidth \insertframenumber{} + \end{beamercolorbox}% + } + \fi + + \end{minipage}% + \begin{minipage}{.05\textwidth}% + \end{minipage}% + \fi %\thepage>1 + }% + \vskip .023\textheight% + +} + + + + +\ifTACCheadernav + +\usesectionheadtemplate +{\hfill\insertsectionhead} +{\hfill\color{fg!50!bg}\insertsectionhead} + +% Head +\ifbeamer@compress + +% Here we define how the top of the frame looks, the "headline". +\setbeamertemplate{headline} +{% + \ifnum \thepage>1 + \leavevmode% + \begin{beamercolorbox}[wd=.5\paperwidth,ht=2.5ex,dp=1.125ex]{% + section in head/foot}% + \insertsectionnavigationhorizontal{.5\paperwidth}{\hskip0pt plus1filll}{}% + \end{beamercolorbox}% + \begin{beamercolorbox}[wd=.5\paperwidth,ht=2.5ex,dp=1.125ex]{% + subsection in head/foot}% + \insertsubsectionnavigationhorizontal{% + .5\paperwidth}{}{\hskip0pt plus1filll}% + \end{beamercolorbox}% + \fi %\thepage>1 +} + +\else% Not compressed + +\setbeamertemplate{headline} +{% + \ifnum \thepage>1 + \leavevmode% + \@tempdimb=2.4375ex% + \ifnum\beamer@subsectionmax<\beamer@sectionmax% + \multiply\@tempdimb by\beamer@sectionmax% + \else% + \multiply\@tempdimb by\beamer@subsectionmax% + \fi% + \ifdim\@tempdimb>0pt% + \advance\@tempdimb by 1.125ex% + \begin{beamercolorbox}[wd=.5\paperwidth,ht=\@tempdimb]{% + section in head/foot}% + \vbox to\@tempdimb{\vfil\insertsectionnavigation{.5\paperwidth}\vfil}% + \end{beamercolorbox}% + \begin{beamercolorbox}[wd=.5\paperwidth,ht=\@tempdimb]{% + subsection in head/foot}% + \vbox to\@tempdimb{\vfil\insertsubsectionnavigation{.5\paperwidth}\vfil}% + \end{beamercolorbox}% + \fi% + \fi % \thepage>1 +} + +\fi % end if compressed +\fi % TACCheadernav + + +\ifTACCheadertree + +\setbeamertemplate{headline} +{ + \begin{beamercolorbox}[wd=\paperwidth,colsep=1.5pt]{upper separation line head} + \end{beamercolorbox} + % + % Place short title + % + \begin{beamercolorbox}[wd=\paperwidth,ht=2.5ex,dp=1.125ex,% + leftskip=.3cm,rightskip=.3cm plus1fil]{title in head/foot} + \usebeamerfont{title in head/foot}\insertshorttitle + \end{beamercolorbox} + + % + % Place section + % + \begin{beamercolorbox}[wd=\paperwidth,ht=2.5ex,dp=1.125ex,% + leftskip=.3cm,rightskip=.3cm plus1fil]{section in head/foot} + \usebeamerfont{section in head/foot}% + %\ifbeamer@tree@showhooks + \setbox\beamer@tempbox=\hbox{\insertsectionhead}% + \ifdim\wd\beamer@tempbox>1pt% + \hskip2pt\raise1.9pt\hbox{\vrule width0.4pt height1.875ex\vrule width 5pt height0.4pt}% + \hskip1pt% + \fi + \insertsectionhead + \end{beamercolorbox} + +% +% Place subsection +% +\begin{beamercolorbox}[wd=\paperwidth,ht=2.5ex,dp=1.125ex,% + leftskip=.3cm,rightskip=.3cm plus1fil]{subsection in head/foot} + \usebeamerfont{subsection in head/foot}% + %\ifbeamer@tree@showhooks + \setbox\beamer@tempbox=\hbox{\insertsubsectionhead}% + \ifdim\wd\beamer@tempbox>1pt% + \hskip9.4pt\raise1.9pt\hbox{\vrule width0.4pt height1.875ex\vrule width 5pt height0.4pt}% + \hskip1pt% + \fi + \insertsubsectionhead +\end{beamercolorbox} + +% +% Place final separation box +% + \begin{beamercolorbox}[wd=\paperwidth,colsep=1.5pt + ]{lower separation line head} + \end{beamercolorbox} + + % + % Another matching rule which helps to frame the content + % + \hspace{.025\textwidth}\rule{.95\textwidth}{.5pt} +} +\fi % TACCheadertree + + +% The following command suppresses all navigation symbols. This is +% necessary in the TACC theme, since it overlaps where we want the +% logo to be. +\setbeamertemplate{navigation symbols}{} + + +\mode + diff --git a/my_docs/19/sc19/talk/beamerthemeTACC.sty b/my_docs/19/sc19/talk/beamerthemeTACC.sty deleted file mode 120000 index f292272c6..000000000 --- a/my_docs/19/sc19/talk/beamerthemeTACC.sty +++ /dev/null @@ -1 +0,0 @@ -../../../beamer/beamerthemeTACC.sty \ No newline at end of file diff --git a/my_docs/19/sc19/talk/beamerthemeTACC.sty b/my_docs/19/sc19/talk/beamerthemeTACC.sty new file mode 100755 index 000000000..c6a1b1269 --- /dev/null +++ b/my_docs/19/sc19/talk/beamerthemeTACC.sty @@ -0,0 +1,26 @@ +%% TACC theme for beamer + +\newif\ifTACCheadernav +\DeclareOption{headernav}{\global\TACCheadernavtrue} + +\newif\ifTACCheadertree +\DeclareOption{headertree}{\global\TACCheadertreetrue} +\ProcessOptions + +\mode + +\usefonttheme{TACC} +\usecolortheme{TACC} +\useinnertheme{TACC} +\useoutertheme{TACC} + +\mode + + +\newcommand{\event}[1]{% + \makeatletter% + \def\TACC@eventname{#1}% + \makeatother} + +\newcommand{\sectionframe}[1]{\section{#1}\frame{\Large\textbf{#1}}} +\newcommand{\subsectionframe}[1]{\subsection{#1}\frame{\large\textbf{#1}}} diff --git a/my_docs/19/sc19/talk/beamerthemeTACC16.sty b/my_docs/19/sc19/talk/beamerthemeTACC16.sty deleted file mode 120000 index 6cdb13570..000000000 --- a/my_docs/19/sc19/talk/beamerthemeTACC16.sty +++ /dev/null @@ -1 +0,0 @@ -../../../beamer/beamerthemeTACC16.sty \ No newline at end of file diff --git a/my_docs/19/sc19/talk/beamerthemeTACC16.sty b/my_docs/19/sc19/talk/beamerthemeTACC16.sty new file mode 100755 index 000000000..b522d0207 --- /dev/null +++ b/my_docs/19/sc19/talk/beamerthemeTACC16.sty @@ -0,0 +1,61 @@ +%% TACC theme for beamer + + +\newif\if@rightfooterOption +\@rightfooterOptionfalse +\DeclareOption{rightfooter}{\@rightfooterOptiontrue} +\ProcessOptions + + +\newif\ifTACCheadernav +\DeclareOption{headernav}{\global\TACCheadernavtrue} + +\newif\ifTACCheadertree +\DeclareOption{headertree}{\global\TACCheadertreetrue} +\ProcessOptions + +\usepackage{xparse} +\ExplSyntaxOn +\NewDocumentCommand{\ifaspectratio}{mmm} + { + % Recover the option from those passed to the class + \keys_set:nf { zunbeltz/beameroptions } { \use:c { opt@beamer.cls } } + \str_if_eq:nVTF { #1 } \l_zunbeltz_aspectratio_tl { #2 } { #3 } + } +\NewDocumentCommand{\xifaspectratio}{mO{}} + { + % Recover the option from those passed to the class + \keys_set:nf { zunbeltz/beameroptions } { \use:c { opt@beamer.cls } } + \str_case:VnF \l_zunbeltz_aspectratio_tl { #1 } { #2 } + } +% We need to define only one key, the other are treated as `unknown' +\keys_define:nn { zunbeltz/beameroptions } + { + aspectratio .tl_set:N = \l_zunbeltz_aspectratio_tl, + aspectratio .initial:n = 43, + unknown .code:n = {}, + } + +% Generate the variants we need +\cs_generate_variant:Nn \keys_set:nn { nf } +\cs_generate_variant:Nn \str_if_eq:nnTF { nV } +\cs_generate_variant:Nn \str_case:nnF { V } +\ExplSyntaxOff + +\mode + +\usefonttheme{TACC16} +\useinnertheme{TACC16} +\useoutertheme{TACC16} +\usecolortheme{TACC16} + +\mode + + +\newcommand{\event}[1]{% + \makeatletter% + \def\TACC@eventname{#1}% + \makeatother} + +\newcommand{\sectionframe}[1]{\section{#1}\frame{\Large\textbf{#1}}} +\newcommand{\subsectionframe}[1]{\subsection{#1}\frame{\large\textbf{#1}}} diff --git a/my_docs/19/sc19/talk/figures b/my_docs/19/sc19/talk/figures deleted file mode 120000 index 9a68d5598..000000000 --- a/my_docs/19/sc19/talk/figures +++ /dev/null @@ -1 +0,0 @@ -../../../beamer/figures \ No newline at end of file diff --git a/my_docs/19/sc19/talk/figures/TACC_logo.pdf b/my_docs/19/sc19/talk/figures/TACC_logo.pdf new file mode 100755 index 000000000..c018a20cb Binary files /dev/null and b/my_docs/19/sc19/talk/figures/TACC_logo.pdf differ diff --git a/my_docs/19/sc19/talk/figures/UT_logo.pdf b/my_docs/19/sc19/talk/figures/UT_logo.pdf new file mode 100755 index 000000000..d5b42e752 Binary files /dev/null and b/my_docs/19/sc19/talk/figures/UT_logo.pdf differ diff --git a/my_docs/19/sc19/talk/figures/cc.png b/my_docs/19/sc19/talk/figures/cc.png new file mode 100644 index 000000000..8a532ff8f Binary files /dev/null and b/my_docs/19/sc19/talk/figures/cc.png differ diff --git a/my_docs/19/sc19/talk/figures/isa.png b/my_docs/19/sc19/talk/figures/isa.png new file mode 100644 index 000000000..f95d985e7 Binary files /dev/null and b/my_docs/19/sc19/talk/figures/isa.png differ diff --git a/my_docs/19/sc19/talk/figures/master.jpg b/my_docs/19/sc19/talk/figures/master.jpg new file mode 100644 index 000000000..f5c56c04a Binary files /dev/null and b/my_docs/19/sc19/talk/figures/master.jpg differ diff --git a/my_docs/19/sc19/talk/figures/master169.jpg b/my_docs/19/sc19/talk/figures/master169.jpg new file mode 100644 index 000000000..b215776eb Binary files /dev/null and b/my_docs/19/sc19/talk/figures/master169.jpg differ diff --git a/my_docs/19/sc19/talk/figures/master169.png b/my_docs/19/sc19/talk/figures/master169.png new file mode 100644 index 000000000..bc5c0ed12 Binary files /dev/null and b/my_docs/19/sc19/talk/figures/master169.png differ diff --git a/my_docs/19/sc19/talk/figures/secondary.jpg b/my_docs/19/sc19/talk/figures/secondary.jpg new file mode 100644 index 000000000..d905a95c9 Binary files /dev/null and b/my_docs/19/sc19/talk/figures/secondary.jpg differ diff --git a/my_docs/19/sc19/talk/figures/secondary169.jpg b/my_docs/19/sc19/talk/figures/secondary169.jpg new file mode 100644 index 000000000..4eb017957 Binary files /dev/null and b/my_docs/19/sc19/talk/figures/secondary169.jpg differ diff --git a/my_docs/19/sc19/talk/figures/secondary169.png b/my_docs/19/sc19/talk/figures/secondary169.png new file mode 100644 index 000000000..cb9060a56 Binary files /dev/null and b/my_docs/19/sc19/talk/figures/secondary169.png differ diff --git a/my_docs/19/sc19/talk/figures/secondary_right.jpg b/my_docs/19/sc19/talk/figures/secondary_right.jpg new file mode 100644 index 000000000..f25f93a58 Binary files /dev/null and b/my_docs/19/sc19/talk/figures/secondary_right.jpg differ diff --git a/my_docs/19/sc19/talk/figures/secondary_right169.jpg b/my_docs/19/sc19/talk/figures/secondary_right169.jpg new file mode 100644 index 000000000..567a1078f Binary files /dev/null and b/my_docs/19/sc19/talk/figures/secondary_right169.jpg differ diff --git a/my_docs/19/sc19/talk/themes b/my_docs/19/sc19/talk/themes deleted file mode 120000 index 776bbbb44..000000000 --- a/my_docs/19/sc19/talk/themes +++ /dev/null @@ -1 +0,0 @@ -../../../beamer/themes \ No newline at end of file diff --git a/my_docs/19/sc19/talk/themes/beamercolorthemeTACC16.sty b/my_docs/19/sc19/talk/themes/beamercolorthemeTACC16.sty new file mode 100644 index 000000000..248ae8cb6 --- /dev/null +++ b/my_docs/19/sc19/talk/themes/beamercolorthemeTACC16.sty @@ -0,0 +1,193 @@ +% Copyright 2003 by Till Tantau . +% +% This program can be redistributed and/or modified under the terms +% of the GNU Public License, version 2. + +\mode + +\usepackage{textcase,regexpatch} + +\setbeamertemplate{blocks}[rounded][shadow=true] + + +\definecolor{TACCred}{RGB}{180,13,29} +\definecolor{TACCorange}{RGB}{210,104,43} +\definecolor{TACCblue}{RGB}{21,77,122} +%\definecolor{TACCgreen}{RGB}{30,134,104} +\definecolor{TACCgreen}{RGB}{49,168,51} + +% I downloaded a gimp color palette from +% http://maururu.net/2007/latex-beamer-color-palette/ +% Which provides rgb values (I think) for several of the +% default beamer themes. You can open this in gimp by +% opening the Palettes dialog, right-clicking anywhere and choosing +% 'Import Palette'. A color in there called 'default added blue' +% appeared to be approximately what I wanted. It had the triple +% of values 141 145 208. If you double-click on this in the +% palette editor it gives you a bunch of information. You can't +% use these values directly to set a color...it just comes out white. +% I think definecolor is expecting something normalized by 255. Yes! + + +%%% +% Set the normal text color +%%% +\setbeamercolor{normal text}{fg=black} %,bg=white} +\setbeamercolor{example text}{fg=TACCgreen} +\setbeamercolor{alerted text}{fg=TACCorange} + + +\setbeamercolor{structure}{fg=black} +%\setbeamercolor{structure}{fg=black} + +\setbeamercolor{background canvas}{parent=normal text} +\setbeamercolor{background}{parent=background canvas} + +\setbeamercolor{palette primary}{use=structure,fg=structure.fg} +\setbeamercolor{palette secondary}{use=structure,fg=structure.fg!75!black} +\setbeamercolor{palette tertiary}{use=structure,fg=structure.fg!50!black} +\setbeamercolor{palette quaternary}{fg=black} + +\setbeamercolor{palette sidebar primary}{use=normal text,fg=normal text.fg} +\setbeamercolor{palette sidebar secondary}{use=structure,fg=structure.fg} +\setbeamercolor{palette sidebar tertiary}{use=normal text,fg=normal text.fg} +\setbeamercolor{palette sidebar quaternary}{use=structure,fg=structure.fg} + +\setbeamercolor{math text}{} +\setbeamercolor{math text inlined}{parent=math text} +\setbeamercolor{math text displayed}{parent=math text} + +\setbeamercolor{normal text in math text}{} + +\setbeamercolor{local structure}{parent=structure} + +\setbeamercolor{titlelike}{parent=structure} + +\setbeamercolor{title}{parent=titlelike} +\setbeamercolor{title in head/foot}{parent=palette quaternary} +\setbeamercolor{title in sidebar}{parent=palette sidebar quaternary} + +\setbeamercolor{subtitle}{parent=title} + +\setbeamercolor{author}{} +\setbeamercolor{author in head/foot}{parent=palette primary} +\setbeamercolor{author in sidebar}{use=palette sidebar tertiary,fg=palette sidebar tertiary.fg} + +\setbeamercolor{institute}{} +\setbeamercolor{institute in head/foot}{parent=palette tertiary} +\setbeamercolor{institute in sidebar}{use=palette sidebar tertiary,fg=palette sidebar tertiary.fg} + +\setbeamercolor{date}{} +\setbeamercolor{date in head/foot}{parent=palette secondary} +\setbeamercolor{date in sidebar}{use=palette sidebar tertiary,fg=palette sidebar tertiary.fg} + +\setbeamercolor{titlegraphic}{} + +\setbeamercolor{part name}{} +\setbeamercolor{part title}{parent=titlelike} + +\setbeamercolor{section in toc}{parent=structure} +\setbeamercolor{section in toc shaded}{parent=section in toc} +\setbeamercolor{section in head/foot}{parent=palette tertiary} +\setbeamercolor{section in sidebar}{parent=palette sidebar secondary} +\setbeamercolor{section in sidebar shaded}{use=section in sidebar,fg=section in sidebar.fg!40!bg} +\setbeamercolor{section number projected}{parent=item projected} + +\setbeamercolor{subsection in toc}{} +\setbeamercolor{subsection in toc shaded}{parent=subsection in toc} +\setbeamercolor{subsection in head/foot}{parent=palette secondary} +\setbeamercolor{subsection in sidebar}{parent=palette sidebar primary} +\setbeamercolor{subsection in sidebar shaded}{use=subsection in sidebar,fg=subsection in sidebar.fg!40!bg} +\setbeamercolor{subsection number projected}{parent={subitem projected}} + +\setbeamercolor{subsubsection in toc}{parent=subsection in toc} +\setbeamercolor{subsubsection in toc shaded}{parent=subsubsection in toc} +\setbeamercolor{subsubsection in head/foot}{parent=subsection in head/foot} +\setbeamercolor{subsubsection in sidebar}{parent=subsection in sidebar} +\setbeamercolor{subsubsection in sidebar shaded}{parent=subsection in sidebar shaded} +\setbeamercolor{subsubsection number projected}{parent=subsubitem projected} + +\setbeamercolor{headline}{} +\setbeamercolor{footline}{} + +\setbeamercolor{sidebar}{} +\setbeamercolor{sidebar left}{parent=sidebar} +\setbeamercolor{sidebar right}{parent=sidebar} + +\setbeamercolor{logo}{parent=palette secondary} + +\setbeamercolor{frametitle}{parent=titlelike} +\setbeamercolor{framesubtitle}{parent=frametitle} + +\setbeamercolor{frametitle right}{parent=frametitle} + +\setbeamercolor{caption}{} +\setbeamercolor{caption name}{parent=structure} + +\setbeamercolor{button}{use=local structure,bg=local structure.fg!50!bg,fg=white} +\setbeamercolor{button border}{use=button,fg=button.bg} +\setbeamercolor{navigation symbols}{use=structure,fg=structure.fg!40!bg} +\setbeamercolor{navigation symbols dimmed}{use=structure,fg=structure.fg!20!bg} +\setbeamercolor{mini frame}{parent=section in head/foot} + +\setbeamercolor{block body}{fg=black} +\setbeamercolor{block body alerted}{fg=black} +\setbeamercolor{block body example}{fg=black} + +\setbeamercolor{block title}{bg=TACCblue,fg=white} +\setbeamercolor{block title alerted}{bg=TACCred,fg=white} +\setbeamercolor{block title example}{bg=TACCgreen,fg=white} + +\setbeamercolor{item}{parent=local structure} +\setbeamercolor{subitem}{parent=item} +\setbeamercolor{subsubitem}{parent=subitem} + +\setbeamercolor{item projected}{parent=item,use=item,fg=black,bg=item.fg} +\setbeamercolor{subitem projected}{parent=item projected} +\setbeamercolor{subsubitem projected}{parent=subitem projected} + +\setbeamercolor{enumerate item}{parent=item} +\setbeamercolor{enumerate subitem}{parent=subitem} +\setbeamercolor{enumerate subsubitem}{parent=subsubitem} + +\setbeamercolor{itemize item}{parent=item} +\setbeamercolor{itemize subitem}{parent=subitem} +\setbeamercolor{itemize subsubitem}{parent=subsubitem} + +\setbeamercolor{itemize/enumerate body}{} +\setbeamercolor{itemize/enumerate subbody}{} +\setbeamercolor{itemize/enumerate subsubbody}{} + +\setbeamercolor{description item}{parent=item} + +\setbeamercolor{bibliography item}{parent=item} + +\setbeamercolor{bibliography entry author}{use=structure,fg=structure.fg} +\setbeamercolor{bibliography entry title}{use=normal text,fg=normal text.fg} +\setbeamercolor{bibliography entry location}{use=structure,fg=structure.fg!65!bg} +\setbeamercolor{bibliography entry note}{use=structure,fg=structure.fg!65!bg} + +\setbeamercolor{separation line}{} + +\setbeamercolor{upper separation line head}{parent=separation line} +\setbeamercolor{middle separation line head}{parent=separation line} +\setbeamercolor{lower separation line head}{parent=separation line} + +\setbeamercolor{upper separation line foot}{parent=separation line} +\setbeamercolor{middle separation line foot}{parent=separation line} +\setbeamercolor{lower separation line foot}{parent=separation line} + +\setbeamercolor{abstract}{} +\setbeamercolor{abstract title}{parent=structure} + +\setbeamercolor{verse}{} + +\setbeamercolor{quotation}{} +\setbeamercolor{quote}{parent=quotation} + +\setbeamercolor{page number in head/foot}{fg=fg!50!bg} + +\setbeamercolor{qed symbol}{parent=structure} + +\mode + diff --git a/my_docs/19/sc19/talk/themes/beamerfontthemeTACC16.sty b/my_docs/19/sc19/talk/themes/beamerfontthemeTACC16.sty new file mode 100644 index 000000000..d0fc325cc --- /dev/null +++ b/my_docs/19/sc19/talk/themes/beamerfontthemeTACC16.sty @@ -0,0 +1,21 @@ +% Copyright 2003 by Till Tantau +% +% This program can be redistributed and/or modified under the terms +% of the GNU Public License, version 2. + +\mode +\setbeamerfont{title}{parent=structure,size=\LARGE,series=\bfseries} +\setbeamerfont{author}{parent=structure,size=\large, series=\normalfont} +\setbeamerfont{frametitle}{parent=structure,size=\LARGE,series=\bfseries} +\setbeamerfont{framesubtitle}{parent=frametitle,size=\small} + +%\usefonttheme{professionalfonts} % using non standard fonts for beamer +%\usefonttheme{serif} % default family is serif +%\usepackage{fontspec} +%\setmainfont{Century Gothic} + +%\usepackage{fontspec} +\usepackage{libertine} + +\mode + diff --git a/my_docs/19/sc19/talk/themes/beamerinnerthemeTACC16.sty b/my_docs/19/sc19/talk/themes/beamerinnerthemeTACC16.sty new file mode 100644 index 000000000..f7f454e1d --- /dev/null +++ b/my_docs/19/sc19/talk/themes/beamerinnerthemeTACC16.sty @@ -0,0 +1,11 @@ +\mode + +\setbeamertemplate{itemize item}[triangle] +\setbeamertemplate{itemize subitem}[triangle] +\setbeamertemplate{itemize subsubitem}[triangle] +\setbeamertemplate{section in toc}{$\bullet$\hskip.5em\inserttocsection} +%\setbeamertemplate{subsection in toc}{} +\setbeamertemplate{subsubsection in toc}{} + +\mode + diff --git a/my_docs/19/sc19/talk/themes/beamerouterthemeTACC16-169.sty b/my_docs/19/sc19/talk/themes/beamerouterthemeTACC16-169.sty new file mode 100644 index 000000000..c62f9ed04 --- /dev/null +++ b/my_docs/19/sc19/talk/themes/beamerouterthemeTACC16-169.sty @@ -0,0 +1,247 @@ +% Copyright 2003 by Till Tantau +% +% This program can be redistributed and/or modified under the terms +% of the GNU Public License, version 2. + +\mode + +\usepackage{xcolor} +\usepackage{graphicx} +\usepackage{etoolbox} + +\pgfdeclareimage[width=\paperwidth]{titlebackground}{./figures/master169.png} +\pgfdeclareimage[width=\paperwidth]{background}{./figures/secondary169.png} + +\setbeamertemplate{background canvas}{% + \ifnum\c@framenumber=1% + \begin{picture}(0,0) + \put(-0.15,-250){% + \pgfuseimage{titlebackground} + } + %\put(0,-130.7){% + + %\begin{minipage}[b][45mm][t]{\textwidth}%{226mm} + %\begin{center} + % \usebeamerfont{title}{\MakeTextUppercase{\inserttitle}\par} + %\vspace{2ex} + %\usebeamerfont{author}{\insertauthor} + % \end{center} + %\end{minipage} + %} + \end{picture} + % On title page + \else% + % Other frames background + \begin{picture}(0,0) + \put(-0.15,-255.55){% + \pgfuseimage{background} + } + \end{picture} + \fi% +} + + +\setbeamertemplate{title page}{ +\vspace{40pt} +\begin{center} +\usebeamerfont{title} {\huge \inserttitle}\par +\vspace{4ex} +\usebeamerfont{author} { + \insertauthor +}\par +\vspace{2ex} +\usebeamerfont{institute}{ + \insertinstitute +} \par +\vspace{2ex} +\usebeamerfont{date}{ + \insertdate +} +\end{center} +} + + +\setbeamertemplate{frametitle}[default][center] +\setbeamertemplate{frametitle}{ + \makeatletter + \regexpatchcmd{\insertframetitle} + {(\c{usebeamertemplate}.*)\c{fi}} + {\c{NoCaseChange}\cB\{\1\cE\}\c{fi}} + {}{}% + \makeatother + \vskip1ex + \insertframetitle +} + +% Here we define what appears at the bottom of each slide: the "footline". +\setbeamertemplate{footline}{% + \leavevmode% + + % Horizontal line dividing the rest of the slide from the footer? + % hrule goes all the way across... + % \hrule height.3pt% + % With \rule, you can specify the thickness + % \rule[raise-height]{width}{thickness} + % \hspace{.025\textwidth}\rule{.95\textwidth}{.5pt} + + \hbox{% + \ifnum \thepage>1 + % On the left half of the footer, insert the TACC of + \begin{minipage}{.2\textwidth}% + \hskip .05\textwidth%Give horizontal space else this will set on the left edge of the slide! + % \includegraphics[width=.8\textwidth]{TACC_logo.png} + \end{minipage} + + + \begin{minipage}{\textwidth}% + % \vskip .023\textheight% + \raggedleft% + \setlength{\rightskip}{\textwidth} + \hbox{% + \begin{beamercolorbox}[wd=0.7\textwidth,ht=2.25ex,dp=1ex,left]{author in head/foot}% + \insertshorttitle{} \hskip .01\textwidth | \hskip .01\textwidth \insertdate{} \hskip .01\textwidth | \hskip .01\textwidth \insertframenumber{} + \end{beamercolorbox}% + } + + % + % If we are not on the first page, insert a page number + % For some reason, insertframenumber is buggy when you have fragile + % slides with verbatim environments in them... it tends to skip numbers + % for some reason! On the other hand, the pagenumber is incremented + % for *every* slide, including transition slides... + % \hfill\includegraphics[width=\textwidth]{tacc_ut.png} + \end{minipage}% + \begin{minipage}{.05\textwidth}% + \end{minipage}% + \fi %\thepage>1 + }% + \vskip .023\textheight% + +} + + + + +\ifTACCheadernav + +\usesectionheadtemplate +{\hfill\insertsectionhead} +{\hfill\color{fg!50!bg}\insertsectionhead} + +% Head +\ifbeamer@compress + +% Here we define how the top of the frame looks, the "headline". +\setbeamertemplate{headline} +{% + \ifnum \thepage>1 + \leavevmode% + \begin{beamercolorbox}[wd=.5\paperwidth,ht=2.5ex,dp=1.125ex]{% + section in head/foot}% + \insertsectionnavigationhorizontal{.5\paperwidth}{\hskip0pt plus1filll}{}% + \end{beamercolorbox}% + \begin{beamercolorbox}[wd=.5\paperwidth,ht=2.5ex,dp=1.125ex]{% + subsection in head/foot}% + \insertsubsectionnavigationhorizontal{% + .5\paperwidth}{}{\hskip0pt plus1filll}% + \end{beamercolorbox}% + \fi %\thepage>1 +} + +\else% Not compressed + +\setbeamertemplate{headline} +{% + \ifnum \thepage>1 + \leavevmode% + \@tempdimb=2.4375ex% + \ifnum\beamer@subsectionmax<\beamer@sectionmax% + \multiply\@tempdimb by\beamer@sectionmax% + \else% + \multiply\@tempdimb by\beamer@subsectionmax% + \fi% + \ifdim\@tempdimb>0pt% + \advance\@tempdimb by 1.125ex% + \begin{beamercolorbox}[wd=.5\paperwidth,ht=\@tempdimb]{% + section in head/foot}% + \vbox to\@tempdimb{\vfil\insertsectionnavigation{.5\paperwidth}\vfil}% + \end{beamercolorbox}% + \begin{beamercolorbox}[wd=.5\paperwidth,ht=\@tempdimb]{% + subsection in head/foot}% + \vbox to\@tempdimb{\vfil\insertsubsectionnavigation{.5\paperwidth}\vfil}% + \end{beamercolorbox}% + \fi% + \fi % \thepage>1 +} + +\fi % end if compressed +\fi % TACCheadernav + + +\ifTACCheadertree + +\setbeamertemplate{headline} +{ + \begin{beamercolorbox}[wd=\paperwidth,colsep=1.5pt]{upper separation line head} + \end{beamercolorbox} + % + % Place short title + % + \begin{beamercolorbox}[wd=\paperwidth,ht=2.5ex,dp=1.125ex,% + leftskip=.3cm,rightskip=.3cm plus1fil]{title in head/foot} + \usebeamerfont{title in head/foot}\insertshorttitle + \end{beamercolorbox} + + % + % Place section + % + \begin{beamercolorbox}[wd=\paperwidth,ht=2.5ex,dp=1.125ex,% + leftskip=.3cm,rightskip=.3cm plus1fil]{section in head/foot} + \usebeamerfont{section in head/foot}% + %\ifbeamer@tree@showhooks + \setbox\beamer@tempbox=\hbox{\insertsectionhead}% + \ifdim\wd\beamer@tempbox>1pt% + \hskip2pt\raise1.9pt\hbox{\vrule width0.4pt height1.875ex\vrule width 5pt height0.4pt}% + \hskip1pt% + \fi + \insertsectionhead + \end{beamercolorbox} + +% +% Place subsection +% +\begin{beamercolorbox}[wd=\paperwidth,ht=2.5ex,dp=1.125ex,% + leftskip=.3cm,rightskip=.3cm plus1fil]{subsection in head/foot} + \usebeamerfont{subsection in head/foot}% + %\ifbeamer@tree@showhooks + \setbox\beamer@tempbox=\hbox{\insertsubsectionhead}% + \ifdim\wd\beamer@tempbox>1pt% + \hskip9.4pt\raise1.9pt\hbox{\vrule width0.4pt height1.875ex\vrule width 5pt height0.4pt}% + \hskip1pt% + \fi + \insertsubsectionhead +\end{beamercolorbox} + +% +% Place final separation box +% + \begin{beamercolorbox}[wd=\paperwidth,colsep=1.5pt + ]{lower separation line head} + \end{beamercolorbox} + + % + % Another matching rule which helps to frame the content + % + \hspace{.025\textwidth}\rule{.95\textwidth}{.5pt} +} +\fi % TACCheadertree + + +% The following command suppresses all navigation symbols. This is +% necessary in the TACC theme, since it overlaps where we want the +% logo to be. +\setbeamertemplate{navigation symbols}{} + + +\mode + diff --git a/my_docs/19/sc19/talk/themes/beamerouterthemeTACC16.sty b/my_docs/19/sc19/talk/themes/beamerouterthemeTACC16.sty new file mode 100644 index 000000000..c5b178018 --- /dev/null +++ b/my_docs/19/sc19/talk/themes/beamerouterthemeTACC16.sty @@ -0,0 +1,247 @@ +% Copyright 2003 by Till Tantau +% +% This program can be redistributed and/or modified under the terms +% of the GNU Public License, version 2. + +\mode + +\usepackage{xcolor} +\usepackage{graphicx} +\usepackage{etoolbox} + +\pgfdeclareimage[width=\paperwidth]{titlebackground}{master.jpg} +\pgfdeclareimage[width=\paperwidth]{background}{secondary.jpg} + +\setbeamertemplate{background canvas}{% + \ifnum\c@framenumber=1% + \begin{picture}(0,0) + \put(0,-273){% + \pgfuseimage{titlebackground} + } + %\put(0,-130.7){% + + %\begin{minipage}[b][45mm][t]{\textwidth}%{226mm} + %\begin{center} + % \usebeamerfont{title}{\MakeTextUppercase{\inserttitle}\par} + %\vspace{2ex} + %\usebeamerfont{author}{\insertauthor} + % \end{center} + %\end{minipage} + %} + \end{picture} + % On title page + \else% + % Other frames background + \begin{picture}(0,0) + \put(0,-273){% + \pgfuseimage{background} + } + \end{picture} + \fi% +} + + +\setbeamertemplate{title page}{ +\vspace{40pt} +\begin{center} +\usebeamerfont{title} {\huge \inserttitle}\par +\vspace{4ex} +\usebeamerfont{author} { + \insertauthor +}\par +\vspace{2ex} +\usebeamerfont{institute}{ + \insertinstitute +} \par +\vspace{2ex} +\usebeamerfont{date}{ + \insertdate +} +\end{center} +} + + +\setbeamertemplate{frametitle}[default][center] +\setbeamertemplate{frametitle}{ + \makeatletter + \regexpatchcmd{\insertframetitle} + {(\c{usebeamertemplate}.*)\c{fi}} + {\c{NoCaseChange}\cB\{\1\cE\}\c{fi}} + {}{}% + \makeatother + \vskip1ex + \insertframetitle +} + +% Here we define what appears at the bottom of each slide: the "footline". +\setbeamertemplate{footline}{% + \leavevmode% + + % Horizontal line dividing the rest of the slide from the footer? + % hrule goes all the way across... + % \hrule height.3pt% + % With \rule, you can specify the thickness + % \rule[raise-height]{width}{thickness} + % \hspace{.025\textwidth}\rule{.95\textwidth}{.5pt} + + \hbox{% + \ifnum \thepage>1 + % On the left half of the footer, insert the TACC of + \begin{minipage}{.2\textwidth}% + \hskip .05\textwidth%Give horizontal space else this will set on the left edge of the slide! + % \includegraphics[width=.8\textwidth]{figures/TACC_logo.png} + \end{minipage} + + + \begin{minipage}{\textwidth}% + % \vskip .023\textheight% + \raggedleft% + \setlength{\rightskip}{\textwidth} + \hbox{% + \begin{beamercolorbox}[wd=0.7\textwidth,ht=2.25ex,dp=1ex,left]{author in head/foot}% + \insertshorttitle{} \hskip .01\textwidth | \hskip .01\textwidth \insertdate{} \hskip .01\textwidth | \hskip .01\textwidth \insertframenumber{} + \end{beamercolorbox}% + } + + % + % If we are not on the first page, insert a page number + % For some reason, insertframenumber is buggy when you have fragile + % slides with verbatim environments in them... it tends to skip numbers + % for some reason! On the other hand, the pagenumber is incremented + % for *every* slide, including transition slides... + % \hfill\includegraphics[width=\textwidth]{figures/tacc_ut.png} + \end{minipage}% + \begin{minipage}{.05\textwidth}% + \end{minipage}% + \fi %\thepage>1 + }% + \vskip .023\textheight% + +} + + + + +\ifTACCheadernav + +\usesectionheadtemplate +{\hfill\insertsectionhead} +{\hfill\color{fg!50!bg}\insertsectionhead} + +% Head +\ifbeamer@compress + +% Here we define how the top of the frame looks, the "headline". +\setbeamertemplate{headline} +{% + \ifnum \thepage>1 + \leavevmode% + \begin{beamercolorbox}[wd=.5\paperwidth,ht=2.5ex,dp=1.125ex]{% + section in head/foot}% + \insertsectionnavigationhorizontal{.5\paperwidth}{\hskip0pt plus1filll}{}% + \end{beamercolorbox}% + \begin{beamercolorbox}[wd=.5\paperwidth,ht=2.5ex,dp=1.125ex]{% + subsection in head/foot}% + \insertsubsectionnavigationhorizontal{% + .5\paperwidth}{}{\hskip0pt plus1filll}% + \end{beamercolorbox}% + \fi %\thepage>1 +} + +\else% Not compressed + +\setbeamertemplate{headline} +{% + \ifnum \thepage>1 + \leavevmode% + \@tempdimb=2.4375ex% + \ifnum\beamer@subsectionmax<\beamer@sectionmax% + \multiply\@tempdimb by\beamer@sectionmax% + \else% + \multiply\@tempdimb by\beamer@subsectionmax% + \fi% + \ifdim\@tempdimb>0pt% + \advance\@tempdimb by 1.125ex% + \begin{beamercolorbox}[wd=.5\paperwidth,ht=\@tempdimb]{% + section in head/foot}% + \vbox to\@tempdimb{\vfil\insertsectionnavigation{.5\paperwidth}\vfil}% + \end{beamercolorbox}% + \begin{beamercolorbox}[wd=.5\paperwidth,ht=\@tempdimb]{% + subsection in head/foot}% + \vbox to\@tempdimb{\vfil\insertsubsectionnavigation{.5\paperwidth}\vfil}% + \end{beamercolorbox}% + \fi% + \fi % \thepage>1 +} + +\fi % end if compressed +\fi % TACCheadernav + + +\ifTACCheadertree + +\setbeamertemplate{headline} +{ + \begin{beamercolorbox}[wd=\paperwidth,colsep=1.5pt]{upper separation line head} + \end{beamercolorbox} + % + % Place short title + % + \begin{beamercolorbox}[wd=\paperwidth,ht=2.5ex,dp=1.125ex,% + leftskip=.3cm,rightskip=.3cm plus1fil]{title in head/foot} + \usebeamerfont{title in head/foot}\insertshorttitle + \end{beamercolorbox} + + % + % Place section + % + \begin{beamercolorbox}[wd=\paperwidth,ht=2.5ex,dp=1.125ex,% + leftskip=.3cm,rightskip=.3cm plus1fil]{section in head/foot} + \usebeamerfont{section in head/foot}% + %\ifbeamer@tree@showhooks + \setbox\beamer@tempbox=\hbox{\insertsectionhead}% + \ifdim\wd\beamer@tempbox>1pt% + \hskip2pt\raise1.9pt\hbox{\vrule width0.4pt height1.875ex\vrule width 5pt height0.4pt}% + \hskip1pt% + \fi + \insertsectionhead + \end{beamercolorbox} + +% +% Place subsection +% +\begin{beamercolorbox}[wd=\paperwidth,ht=2.5ex,dp=1.125ex,% + leftskip=.3cm,rightskip=.3cm plus1fil]{subsection in head/foot} + \usebeamerfont{subsection in head/foot}% + %\ifbeamer@tree@showhooks + \setbox\beamer@tempbox=\hbox{\insertsubsectionhead}% + \ifdim\wd\beamer@tempbox>1pt% + \hskip9.4pt\raise1.9pt\hbox{\vrule width0.4pt height1.875ex\vrule width 5pt height0.4pt}% + \hskip1pt% + \fi + \insertsubsectionhead +\end{beamercolorbox} + +% +% Place final separation box +% + \begin{beamercolorbox}[wd=\paperwidth,colsep=1.5pt + ]{lower separation line head} + \end{beamercolorbox} + + % + % Another matching rule which helps to frame the content + % + \hspace{.025\textwidth}\rule{.95\textwidth}{.5pt} +} +\fi % TACCheadertree + + +% The following command suppresses all navigation symbols. This is +% necessary in the TACC theme, since it overlaps where we want the +% logo to be. +\setbeamertemplate{navigation symbols}{} + + +\mode + diff --git a/my_docs/19/sc19/talk/themes/beamerthemeTACC16-169.sty b/my_docs/19/sc19/talk/themes/beamerthemeTACC16-169.sty new file mode 100644 index 000000000..22caf9a05 --- /dev/null +++ b/my_docs/19/sc19/talk/themes/beamerthemeTACC16-169.sty @@ -0,0 +1,38 @@ +%% TACC theme for beamer + +\newif\ifTACCheadernav +\DeclareOption{headernav}{\global\TACCheadernavtrue} + +\newif\ifTACCheadertree +\DeclareOption{headertree}{\global\TACCheadertreetrue} +\ProcessOptions + +\mode + +\makeatletter + \def\beamer@calltheme#1#2#3{% + \def\beamer@themelist{#2} + \@for\beamer@themename:=\beamer@themelist\do + {\usepackage[{#1}]{\beamer@themelocation/#3\beamer@themename}}} + + \def\usefolder#1{ + \def\beamer@themelocation{#1} + } + \def\beamer@themelocation{} + +\usefolder{themes} +\usefonttheme{TACC16} +\useinnertheme{TACC16} +\useoutertheme{TACC16-169} +\usecolortheme{TACC16} + +\mode + + +\newcommand{\event}[1]{% + \makeatletter% + \def\TACC@eventname{#1}% + \makeatother} + +\newcommand{\sectionframe}[1]{\section{#1}\frame{\Large\textbf{#1}}} +\newcommand{\subsectionframe}[1]{\subsection{#1}\frame{\large\textbf{#1}}} diff --git a/my_docs/19/sc19/talk/themes/beamerthemeTACC16.sty b/my_docs/19/sc19/talk/themes/beamerthemeTACC16.sty new file mode 100644 index 000000000..750bdd388 --- /dev/null +++ b/my_docs/19/sc19/talk/themes/beamerthemeTACC16.sty @@ -0,0 +1,26 @@ +%% TACC theme for beamer + +\newif\ifTACCheadernav +\DeclareOption{headernav}{\global\TACCheadernavtrue} + +\newif\ifTACCheadertree +\DeclareOption{headertree}{\global\TACCheadertreetrue} +\ProcessOptions + +\mode + +\usefonttheme{TACC16} +\useinnertheme{TACC16} +\useoutertheme{TACC16} +\usecolortheme{TACC16} + +\mode + + +\newcommand{\event}[1]{% + \makeatletter% + \def\TACC@eventname{#1}% + \makeatother} + +\newcommand{\sectionframe}[1]{\section{#1}\frame{\Large\textbf{#1}}} +\newcommand{\subsectionframe}[1]{\subsection{#1}\frame{\large\textbf{#1}}} diff --git a/my_docs/19/sc19/talk/themes/example.pdf b/my_docs/19/sc19/talk/themes/example.pdf new file mode 100644 index 000000000..add373eee Binary files /dev/null and b/my_docs/19/sc19/talk/themes/example.pdf differ diff --git a/my_docs/19/sc19/talk/themes/license.tex b/my_docs/19/sc19/talk/themes/license.tex new file mode 100644 index 000000000..74ff86759 --- /dev/null +++ b/my_docs/19/sc19/talk/themes/license.tex @@ -0,0 +1,14 @@ + +\begin{frame}{License} +\footnotesize +\textcopyright The University of Texas at Austin, \the\year\\ +\vspace{0.5 cm} +This work is licensed under the Creative Commons Attribution Non-Commercial 3.0 Unported License. To view a copy of this license, +visit http://creativecommons.org/licenses/by-nc/3.0/\\ +\vspace{0.5 cm} +When attributing this work, please use the following text: +"Designing and Administering Large-scale Systems", Texas Advanced Computing Center, \the\year. Available under a Creative Commons Attribution Non-Commercial 3.0 Unported License. +\newline +\newline +\includegraphics[width=1cm]{./figures/cc.png} +\end{frame} \ No newline at end of file diff --git a/my_docs/20/eb_user_20/Lmod-4color@2x.png b/my_docs/20/eb_user_20/Lmod-4color@2x.png deleted file mode 120000 index e15235193..000000000 --- a/my_docs/20/eb_user_20/Lmod-4color@2x.png +++ /dev/null @@ -1 +0,0 @@ -../../../logos/2x/Lmod-4color@2x.png \ No newline at end of file diff --git a/my_docs/20/eb_user_20/Lmod-4color@2x.png b/my_docs/20/eb_user_20/Lmod-4color@2x.png new file mode 100644 index 000000000..4810d74c3 Binary files /dev/null and b/my_docs/20/eb_user_20/Lmod-4color@2x.png differ diff --git a/my_docs/20/eb_user_20/beamercolorthemeTACC.sty b/my_docs/20/eb_user_20/beamercolorthemeTACC.sty deleted file mode 120000 index 8d27e673a..000000000 --- a/my_docs/20/eb_user_20/beamercolorthemeTACC.sty +++ /dev/null @@ -1 +0,0 @@ -../../beamer/beamercolorthemeTACC.sty \ No newline at end of file diff --git a/my_docs/20/eb_user_20/beamercolorthemeTACC.sty b/my_docs/20/eb_user_20/beamercolorthemeTACC.sty new file mode 100755 index 000000000..78beb6a4a --- /dev/null +++ b/my_docs/20/eb_user_20/beamercolorthemeTACC.sty @@ -0,0 +1,323 @@ +% Copyright 2003 by Till Tantau . +% +% This program can be redistributed and/or modified under the terms +% of the GNU Public License, version 2. + +\mode + +% I downloaded a gimp color palette from +% http://maururu.net/2007/latex-beamer-color-palette/ +% Which provides rgb values (I think) for several of the +% default beamer themes. You can open this in gimp by +% opening the Palettes dialog, right-clicking anywhere and choosing +% 'Import Palette'. A color in there called 'default added blue' +% appeared to be approximately what I wanted. It had the triple +% of values 141 145 208. If you double-click on this in the +% palette editor it gives you a bunch of information. You can't +% use these values directly to set a color...it just comes out white. +% I think definecolor is expecting something normalized by 255. Yes! + + +% bluish colors +\definecolor{defaddedblue}{rgb}{0.5529,.5686,.8157} % 141,145,208 +\definecolor{defblockheader}{rgb}{.1921,.2235,.6824} % 49,57,174 +\definecolor{flyaddedblue}{rgb}{.5961,.6118,.8431} % 152,156,215 + +% bluish-greys +\definecolor{beetleaddedblue1}{rgb}{.3333,.4039,.6196} % 85 103 158, dark +\definecolor{beetleaddedblue2}{rgb}{.4510,.5098,.7020} % 115 130 179, medium +\definecolor{beetleaddedblue3}{rgb}{.7059,.7255,.7961} % 180 185 203, light (greyest) + +% very light blue-greys +\definecolor{deflightouter1}{rgb}{.7608,.7647,.9020} % 194 195 230, dark +\definecolor{deflightouter2}{rgb}{.8 ,.8039,.9176} % 204 205 234, medium +\definecolor{deflightouter3}{rgb}{.8392,.8431,.9373} % 214 215 239, light + +% reddish colors +\definecolor{flyalertblockheader}{rgb}{.7373,.1294,.1333} % 188 33 34 +\definecolor{flyaddedred}{rgb}{.8667,.5647,.5647}% 221 144 144 +\definecolor{beaverouterframe}{rgb}{.5529,.0980,.0980}% 141 25 25 + +% greens (green is used for 'examples' in beamer) +\definecolor{defexblock}{rgb}{.9098,.9333,.9020} % 232 238 230, light +\definecolor{defaddedgreen}{rgb}{.5412,.6510,.4706} % 138 166 120, medium +\definecolor{defexblockheader}{rgb}{.1686,.3647,.0392} % 43 93 10, dark + +\definecolor{lightexblock}{rgb}{.9137,.9451,.9020} % 233 241 230, light +\definecolor{lightexblockheader}{rgb}{.8235,.8980,.8} % 210 229 204, medium +\definecolor{lightexblockheadertext}{rgb}{.2431,.5098,.0745} % 62 130 19, dark + + +%%% +% Set the normal text color +%%% +\setbeamercolor{normal text}{fg=black,bg=white} + +%%% +% Set the alerted text color +%%% +% \setbeamercolor{alerted text}{fg=red} +\setbeamercolor{alerted text}{fg=red!50!black} % half black/half red for green bg +% \setbeamercolor{alerted text}{fg=beaverouterframe} +% \setbeamercolor{alerted text}{fg=defblockheader} % doesn't stand out enough + + +% Set the 'example' text +\setbeamercolor{example text}{fg=green!50!black} + +\setbeamercolor{structure}{fg=black} + +\setbeamercolor{background canvas}{parent=normal text} +\setbeamercolor{background}{parent=background canvas} + +\setbeamercolor{palette primary}{use=structure,fg=structure.fg} +\setbeamercolor{palette secondary}{use=structure,fg=structure.fg!75!black} +\setbeamercolor{palette tertiary}{use=structure,fg=structure.fg!50!black} +\setbeamercolor{palette quaternary}{fg=black} + +\setbeamercolor{palette sidebar primary}{use=normal text,fg=normal text.fg} +\setbeamercolor{palette sidebar secondary}{use=structure,fg=structure.fg} +\setbeamercolor{palette sidebar tertiary}{use=normal text,fg=normal text.fg} +\setbeamercolor{palette sidebar quaternary}{use=structure,fg=structure.fg} + +\setbeamercolor{math text}{} +\setbeamercolor{math text inlined}{parent=math text} +\setbeamercolor{math text displayed}{parent=math text} + +\setbeamercolor{normal text in math text}{} + +\setbeamercolor{local structure}{parent=structure} + +\setbeamercolor{titlelike}{parent=structure} + +\setbeamercolor{title}{parent=titlelike} +\setbeamercolor{title in head/foot}{parent=palette quaternary} +\setbeamercolor{title in sidebar}{parent=palette sidebar quaternary} + +\setbeamercolor{subtitle}{parent=title} + +\setbeamercolor{author}{} +\setbeamercolor{author in head/foot}{parent=palette primary} +\setbeamercolor{author in sidebar}{use=palette sidebar tertiary,fg=palette sidebar tertiary.fg} + +\setbeamercolor{institute}{} +\setbeamercolor{institute in head/foot}{parent=palette tertiary} +\setbeamercolor{institute in sidebar}{use=palette sidebar tertiary,fg=palette sidebar tertiary.fg} + +\setbeamercolor{date}{} +\setbeamercolor{date in head/foot}{parent=palette secondary} +\setbeamercolor{date in sidebar}{use=palette sidebar tertiary,fg=palette sidebar tertiary.fg} + +\setbeamercolor{titlegraphic}{} + +\setbeamercolor{part name}{} +\setbeamercolor{part title}{parent=titlelike} + +\setbeamercolor{section in toc}{parent=structure} +\setbeamercolor{section in toc shaded}{parent=section in toc} +\setbeamercolor{section in head/foot}{parent=palette tertiary} +\setbeamercolor{section in sidebar}{parent=palette sidebar secondary} +\setbeamercolor{section in sidebar shaded}{use=section in sidebar,fg=section in sidebar.fg!40!bg} +\setbeamercolor{section number projected}{parent=item projected} + +\setbeamercolor{subsection in toc}{} +\setbeamercolor{subsection in toc shaded}{parent=subsection in toc} +\setbeamercolor{subsection in head/foot}{parent=palette secondary} +\setbeamercolor{subsection in sidebar}{parent=palette sidebar primary} +\setbeamercolor{subsection in sidebar shaded}{use=subsection in sidebar,fg=subsection in sidebar.fg!40!bg} +\setbeamercolor{subsection number projected}{parent={subitem projected}} + +\setbeamercolor{subsubsection in toc}{parent=subsection in toc} +\setbeamercolor{subsubsection in toc shaded}{parent=subsubsection in toc} +\setbeamercolor{subsubsection in head/foot}{parent=subsection in head/foot} +\setbeamercolor{subsubsection in sidebar}{parent=subsection in sidebar} +\setbeamercolor{subsubsection in sidebar shaded}{parent=subsection in sidebar shaded} +\setbeamercolor{subsubsection number projected}{parent=subsubitem projected} + +\setbeamercolor{headline}{} +\setbeamercolor{footline}{} + +\setbeamercolor{sidebar}{} +\setbeamercolor{sidebar left}{parent=sidebar} +\setbeamercolor{sidebar right}{parent=sidebar} + +\setbeamercolor{logo}{parent=palette secondary} + +\setbeamercolor{frametitle}{parent=titlelike} +\setbeamercolor{framesubtitle}{parent=frametitle} + +\setbeamercolor{frametitle right}{parent=frametitle} + +\setbeamercolor{caption}{} +\setbeamercolor{caption name}{parent=structure} + +\setbeamercolor{button}{use=local structure,bg=local structure.fg!50!bg,fg=white} +\setbeamercolor{button border}{use=button,fg=button.bg} +\setbeamercolor{navigation symbols}{use=structure,fg=structure.fg!40!bg} +\setbeamercolor{navigation symbols dimmed}{use=structure,fg=structure.fg!20!bg} +\setbeamercolor{mini frame}{parent=section in head/foot} + +% Color expressions are defined in the xcolor package +% +% Ex: Mixture of 40% green, 60% yellow: green!40!yellow +% +% The complement of any color can be obtained by prepending +% a minus sign: -green!40!yellow +% +% One can also combine up to three colors (in differing proportions) +% using the rgb command. For example, the following command combines +% 3 parts of the first color, with 2 parts of the second, and one part +% "red" +% +%\color{rgb:-green!40!yellow,3;green!40!yellow,2;red,1} +% Unfortunately, I don't think this works as an argument to setbeamercolor... +% "Orange" bg=green!30!yellow!30!red +% close to burnt orange: red!75!green +% lightgray is a color, but gray!25!white looks better +% +% A nice pair of greens +% (dark, a little too dark to be under black text...) -red!75!green!50!blue!25 +% (light) -red!75!green!50!blue!25!gray +% +% Some colors are only available via options to the xcolor package, eg. +% x11names,DarkOliveGreen4 +% svgnames, Chartreuse +% dvipsnames, ForestGreen +% +% but beamer does not seem to have any of these. +% +% The base color names which are always available are: +% black +% blue +% brown +% cyan +% darkgray +% gray +% green +% lightgray +% lime +% magenta +% olive +% orange +% pink +% purple +% red +% teal +% violet +% white +% yellow + +% From the beamer user guide, pg. 167 +% Inner color themes only specify the colors of elements used in inner +% themes. Most noticably, they specify the colors used for blocks. +% ... + +% Example color definition +% beamercolorthemedefault.sty:\definecolor{beamer@blendedblue}{rgb}{0.2,0.2,0.7} +% beamercolorthemedefault.sty:\setbeamercolor{structure}{fg=beamer@blendedblue} + +% The greens +% \setbeamercolor{block body}{bg=-red!75!green!50!blue!25!gray} +% \setbeamercolor{block title}{parent=structure,bg=-red!75!green!50!blue!25,fg=-red!75!green!50!blue!25!gray} + +%%% +% Set the block body and title background/foreground colors +%%% +% \setbeamercolor{block body}{bg=flyaddedblue} +% \setbeamercolor{block title}{bg=defblockheader,fg=flyaddedblue} + +% Purplish blues, too dark overall +% \setbeamercolor{block body}{bg=beetleaddedblue3} +% \setbeamercolor{block title}{bg=beetleaddedblue2,fg=beetleaddedblue3} + +% Very light blue greys +% 1. Not enough contrast +% \setbeamercolor{block body}{bg=deflightouter3} +% \setbeamercolor{block title}{bg=deflightouter2,fg=deflightouter3} + +% 2. Not enough contrast +% \setbeamercolor{block body}{bg=deflightouter3} +% \setbeamercolor{block title}{bg=deflightouter1,fg=deflightouter3} + +% 3. Combination of deflightouter and fly. The block bg is +% lighter than the all-beetle color scheme I previously thought was best. +% Currently I like this one the best +\setbeamercolor{block body}{bg=deflightouter3} +\setbeamercolor{block title}{bg=beetleaddedblue2,fg=deflightouter3} + +% 4. Greens. Looks like a highlighter. I don't really trust greens +% on projectors... It's almost too bright/hurts your eyes. +% \setbeamercolor{block body}{bg=defexblock} +% \setbeamercolor{block title}{bg=defaddedgreen,fg=defexblock} + +% This looks pretty good ... it's similar to the greens we had before +% but should be lighter. The blocks are just a little too "mint" colored +% though... +% \setbeamercolor{block body}{bg=defexblock} +% \setbeamercolor{block title}{bg=defexblockheader,fg=defexblock} + +% Pea Soup! +%\setbeamercolor{block body}{bg=defaddedgreen} +%\setbeamercolor{block title}{bg=defexblockheader,fg=defaddedgreen} + + +% Changing these didn't seem to do anything...I had to change the +% 'alerted text' color instead +\setbeamercolor{block body alerted}{} +\setbeamercolor{block body example}{} +\setbeamercolor{block title alerted}{parent=alerted text} +\setbeamercolor{block title example}{parent=example text} + +\setbeamercolor{item}{parent=local structure} +\setbeamercolor{subitem}{parent=item} +\setbeamercolor{subsubitem}{parent=subitem} + +\setbeamercolor{item projected}{parent=item,use=item,fg=white,bg=item.fg} +\setbeamercolor{subitem projected}{parent=item projected} +\setbeamercolor{subsubitem projected}{parent=subitem projected} + +\setbeamercolor{enumerate item}{parent=item} +\setbeamercolor{enumerate subitem}{parent=subitem} +\setbeamercolor{enumerate subsubitem}{parent=subsubitem} + +\setbeamercolor{itemize item}{parent=item} +\setbeamercolor{itemize subitem}{parent=subitem} +\setbeamercolor{itemize subsubitem}{parent=subsubitem} + +\setbeamercolor{itemize/enumerate body}{} +\setbeamercolor{itemize/enumerate subbody}{} +\setbeamercolor{itemize/enumerate subsubbody}{} + +\setbeamercolor{description item}{parent=item} + +\setbeamercolor{bibliography item}{parent=item} + +\setbeamercolor{bibliography entry author}{use=structure,fg=structure.fg} +\setbeamercolor{bibliography entry title}{use=normal text,fg=normal text.fg} +\setbeamercolor{bibliography entry location}{use=structure,fg=structure.fg!65!bg} +\setbeamercolor{bibliography entry note}{use=structure,fg=structure.fg!65!bg} + +\setbeamercolor{separation line}{} + +\setbeamercolor{upper separation line head}{parent=separation line} +\setbeamercolor{middle separation line head}{parent=separation line} +\setbeamercolor{lower separation line head}{parent=separation line} + +\setbeamercolor{upper separation line foot}{parent=separation line} +\setbeamercolor{middle separation line foot}{parent=separation line} +\setbeamercolor{lower separation line foot}{parent=separation line} + +\setbeamercolor{abstract}{} +\setbeamercolor{abstract title}{parent=structure} + +\setbeamercolor{verse}{} + +\setbeamercolor{quotation}{} +\setbeamercolor{quote}{parent=quotation} + +\setbeamercolor{page number in head/foot}{fg=fg!50!bg} + +\setbeamercolor{qed symbol}{parent=structure} + +\mode + diff --git a/my_docs/20/eb_user_20/beamercolorthemeTACC16.sty b/my_docs/20/eb_user_20/beamercolorthemeTACC16.sty deleted file mode 120000 index 58415801b..000000000 --- a/my_docs/20/eb_user_20/beamercolorthemeTACC16.sty +++ /dev/null @@ -1 +0,0 @@ -../../beamer/beamercolorthemeTACC16.sty \ No newline at end of file diff --git a/my_docs/20/eb_user_20/beamercolorthemeTACC16.sty b/my_docs/20/eb_user_20/beamercolorthemeTACC16.sty new file mode 100755 index 000000000..779dde91f --- /dev/null +++ b/my_docs/20/eb_user_20/beamercolorthemeTACC16.sty @@ -0,0 +1,192 @@ +% Copyright 2003 by Till Tantau . +% +% This program can be redistributed and/or modified under the terms +% of the GNU Public License, version 2. + +\mode + +\usepackage{textcase,regexpatch} + +\setbeamertemplate{blocks}[rounded][shadow=true] + + +\definecolor{TACCred}{RGB}{180,13,29} +\definecolor{TACCorange}{RGB}{210,104,43} +\definecolor{TACCblue}{RGB}{108, 134, 191} +\definecolor{TACCgreen}{RGB}{23,106,70} + +% I downloaded a gimp color palette from +% http://maururu.net/2007/latex-beamer-color-palette/ +% Which provides rgb values (I think) for several of the +% default beamer themes. You can open this in gimp by +% opening the Palettes dialog, right-clicking anywhere and choosing +% 'Import Palette'. A color in there called 'default added blue' +% appeared to be approximately what I wanted. It had the triple +% of values 141 145 208. If you double-click on this in the +% palette editor it gives you a bunch of information. You can't +% use these values directly to set a color...it just comes out white. +% I think definecolor is expecting something normalized by 255. Yes! + + +%%% +% Set the normal text color +%%% +\setbeamercolor{normal text}{fg=black} %,bg=white} +\setbeamercolor{example text}{fg=TACCgreen} +\setbeamercolor{alerted text}{fg=TACCorange} + + +\setbeamercolor{structure}{fg=black} +%\setbeamercolor{structure}{fg=black} + +\setbeamercolor{background canvas}{parent=normal text} +\setbeamercolor{background}{parent=background canvas} + +\setbeamercolor{palette primary}{use=structure,fg=structure.fg} +\setbeamercolor{palette secondary}{use=structure,fg=structure.fg!75!black} +\setbeamercolor{palette tertiary}{use=structure,fg=structure.fg!50!black} +\setbeamercolor{palette quaternary}{fg=black} + +\setbeamercolor{palette sidebar primary}{use=normal text,fg=normal text.fg} +\setbeamercolor{palette sidebar secondary}{use=structure,fg=structure.fg} +\setbeamercolor{palette sidebar tertiary}{use=normal text,fg=normal text.fg} +\setbeamercolor{palette sidebar quaternary}{use=structure,fg=structure.fg} + +\setbeamercolor{math text}{} +\setbeamercolor{math text inlined}{parent=math text} +\setbeamercolor{math text displayed}{parent=math text} + +\setbeamercolor{normal text in math text}{} + +\setbeamercolor{local structure}{parent=structure} + +\setbeamercolor{titlelike}{parent=structure} + +\setbeamercolor{title}{parent=titlelike} +\setbeamercolor{title in head/foot}{parent=palette quaternary} +\setbeamercolor{title in sidebar}{parent=palette sidebar quaternary} + +\setbeamercolor{subtitle}{parent=title} + +\setbeamercolor{author}{} +\setbeamercolor{author in head/foot}{parent=palette primary} +\setbeamercolor{author in sidebar}{use=palette sidebar tertiary,fg=palette sidebar tertiary.fg} + +\setbeamercolor{institute}{} +\setbeamercolor{institute in head/foot}{parent=palette tertiary} +\setbeamercolor{institute in sidebar}{use=palette sidebar tertiary,fg=palette sidebar tertiary.fg} + +\setbeamercolor{date}{} +\setbeamercolor{date in head/foot}{parent=palette secondary} +\setbeamercolor{date in sidebar}{use=palette sidebar tertiary,fg=palette sidebar tertiary.fg} + +\setbeamercolor{titlegraphic}{} + +\setbeamercolor{part name}{} +\setbeamercolor{part title}{parent=titlelike} + +\setbeamercolor{section in toc}{parent=structure} +\setbeamercolor{section in toc shaded}{parent=section in toc} +\setbeamercolor{section in head/foot}{parent=palette tertiary} +\setbeamercolor{section in sidebar}{parent=palette sidebar secondary} +\setbeamercolor{section in sidebar shaded}{use=section in sidebar,fg=section in sidebar.fg!40!bg} +\setbeamercolor{section number projected}{parent=item projected} + +\setbeamercolor{subsection in toc}{} +\setbeamercolor{subsection in toc shaded}{parent=subsection in toc} +\setbeamercolor{subsection in head/foot}{parent=palette secondary} +\setbeamercolor{subsection in sidebar}{parent=palette sidebar primary} +\setbeamercolor{subsection in sidebar shaded}{use=subsection in sidebar,fg=subsection in sidebar.fg!40!bg} +\setbeamercolor{subsection number projected}{parent={subitem projected}} + +\setbeamercolor{subsubsection in toc}{parent=subsection in toc} +\setbeamercolor{subsubsection in toc shaded}{parent=subsubsection in toc} +\setbeamercolor{subsubsection in head/foot}{parent=subsection in head/foot} +\setbeamercolor{subsubsection in sidebar}{parent=subsection in sidebar} +\setbeamercolor{subsubsection in sidebar shaded}{parent=subsection in sidebar shaded} +\setbeamercolor{subsubsection number projected}{parent=subsubitem projected} + +\setbeamercolor{headline}{} +\setbeamercolor{footline}{} + +\setbeamercolor{sidebar}{} +\setbeamercolor{sidebar left}{parent=sidebar} +\setbeamercolor{sidebar right}{parent=sidebar} + +\setbeamercolor{logo}{parent=palette secondary} + +\setbeamercolor{frametitle}{parent=titlelike} +\setbeamercolor{framesubtitle}{parent=frametitle} + +\setbeamercolor{frametitle right}{parent=frametitle} + +\setbeamercolor{caption}{} +\setbeamercolor{caption name}{parent=structure} + +\setbeamercolor{button}{use=local structure,bg=local structure.fg!50!bg,fg=white} +\setbeamercolor{button border}{use=button,fg=button.bg} +\setbeamercolor{navigation symbols}{use=structure,fg=structure.fg!40!bg} +\setbeamercolor{navigation symbols dimmed}{use=structure,fg=structure.fg!20!bg} +\setbeamercolor{mini frame}{parent=section in head/foot} + +\setbeamercolor{block body}{fg=black} +\setbeamercolor{block body alerted}{fg=black} +\setbeamercolor{block body example}{fg=black} + +\setbeamercolor{block title}{bg=TACCblue,fg=white} +\setbeamercolor{block title alerted}{bg=TACCred,fg=white} +\setbeamercolor{block title example}{bg=TACCgreen,fg=white} + +\setbeamercolor{item}{parent=local structure} +\setbeamercolor{subitem}{parent=item} +\setbeamercolor{subsubitem}{parent=subitem} + +\setbeamercolor{item projected}{parent=item,use=item,fg=black,bg=item.fg} +\setbeamercolor{subitem projected}{parent=item projected} +\setbeamercolor{subsubitem projected}{parent=subitem projected} + +\setbeamercolor{enumerate item}{parent=item} +\setbeamercolor{enumerate subitem}{parent=subitem} +\setbeamercolor{enumerate subsubitem}{parent=subsubitem} + +\setbeamercolor{itemize item}{parent=item} +\setbeamercolor{itemize subitem}{parent=subitem} +\setbeamercolor{itemize subsubitem}{parent=subsubitem} + +\setbeamercolor{itemize/enumerate body}{} +\setbeamercolor{itemize/enumerate subbody}{} +\setbeamercolor{itemize/enumerate subsubbody}{} + +\setbeamercolor{description item}{parent=item} + +\setbeamercolor{bibliography item}{parent=item} + +\setbeamercolor{bibliography entry author}{use=structure,fg=structure.fg} +\setbeamercolor{bibliography entry title}{use=normal text,fg=normal text.fg} +\setbeamercolor{bibliography entry location}{use=structure,fg=structure.fg!65!bg} +\setbeamercolor{bibliography entry note}{use=structure,fg=structure.fg!65!bg} + +\setbeamercolor{separation line}{} + +\setbeamercolor{upper separation line head}{parent=separation line} +\setbeamercolor{middle separation line head}{parent=separation line} +\setbeamercolor{lower separation line head}{parent=separation line} + +\setbeamercolor{upper separation line foot}{parent=separation line} +\setbeamercolor{middle separation line foot}{parent=separation line} +\setbeamercolor{lower separation line foot}{parent=separation line} + +\setbeamercolor{abstract}{} +\setbeamercolor{abstract title}{parent=structure} + +\setbeamercolor{verse}{} + +\setbeamercolor{quotation}{} +\setbeamercolor{quote}{parent=quotation} + +\setbeamercolor{page number in head/foot}{fg=fg!50!bg} + +\setbeamercolor{qed symbol}{parent=structure} + +\mode + diff --git a/my_docs/20/eb_user_20/beamerfontthemeTACC.sty b/my_docs/20/eb_user_20/beamerfontthemeTACC.sty deleted file mode 120000 index 78e971fb8..000000000 --- a/my_docs/20/eb_user_20/beamerfontthemeTACC.sty +++ /dev/null @@ -1 +0,0 @@ -../../beamer/beamerfontthemeTACC.sty \ No newline at end of file diff --git a/my_docs/20/eb_user_20/beamerfontthemeTACC.sty b/my_docs/20/eb_user_20/beamerfontthemeTACC.sty new file mode 100755 index 000000000..ef9ce1e5e --- /dev/null +++ b/my_docs/20/eb_user_20/beamerfontthemeTACC.sty @@ -0,0 +1,12 @@ +% Copyright 2003 by Till Tantau +% +% This program can be redistributed and/or modified under the terms +% of the GNU Public License, version 2. + +\mode + +\setbeamerfont{frametitle}{parent=structure,size=\LARGE,series=\bfseries} +\setbeamerfont{framesubtitle}{parent=frametitle,size=\small} + +\mode + \ No newline at end of file diff --git a/my_docs/20/eb_user_20/beamerfontthemeTACC16.sty b/my_docs/20/eb_user_20/beamerfontthemeTACC16.sty deleted file mode 120000 index a1f2fa5f9..000000000 --- a/my_docs/20/eb_user_20/beamerfontthemeTACC16.sty +++ /dev/null @@ -1 +0,0 @@ -../../beamer/beamerfontthemeTACC16.sty \ No newline at end of file diff --git a/my_docs/20/eb_user_20/beamerfontthemeTACC16.sty b/my_docs/20/eb_user_20/beamerfontthemeTACC16.sty new file mode 100755 index 000000000..b65271835 --- /dev/null +++ b/my_docs/20/eb_user_20/beamerfontthemeTACC16.sty @@ -0,0 +1,21 @@ +% Copyright 2003 by Till Tantau +% +% This program can be redistributed and/or modified under the terms +% of the GNU Public License, version 2. + +\mode +\setbeamerfont{title}{parent=structure,size=\LARGE,series=\bfseries} +\setbeamerfont{author}{parent=structure,size=\large, series=\normalfont} +\setbeamerfont{frametitle}{parent=structure,size=\LARGE,series=\bfseries} +\setbeamerfont{framesubtitle}{parent=frametitle,size=\small} + +%\usefonttheme{professionalfonts} % using non standard fonts for beamer +%\usefonttheme{serif} % default family is serif +%\usepackage{fontspec} +%\setmainfont{Century Gothic} + +\usepackage{fontspec} +\usepackage{libertine} + +\mode + diff --git a/my_docs/20/eb_user_20/beamerinnerthemeTACC.sty b/my_docs/20/eb_user_20/beamerinnerthemeTACC.sty deleted file mode 120000 index 8d5ae3921..000000000 --- a/my_docs/20/eb_user_20/beamerinnerthemeTACC.sty +++ /dev/null @@ -1 +0,0 @@ -../../beamer/beamerinnerthemeTACC.sty \ No newline at end of file diff --git a/my_docs/20/eb_user_20/beamerinnerthemeTACC.sty b/my_docs/20/eb_user_20/beamerinnerthemeTACC.sty new file mode 100755 index 000000000..29e2bce81 --- /dev/null +++ b/my_docs/20/eb_user_20/beamerinnerthemeTACC.sty @@ -0,0 +1,11 @@ +\mode + +\setbeamertemplate{itemize item}[circle] +\setbeamertemplate{itemize subitem}{{}--{}} +\setbeamertemplate{itemize subsubitem}[circle] +\setbeamertemplate{section in toc}{$\bullet$\hskip.5em\inserttocsection} +%\setbeamertemplate{subsection in toc}{} +\setbeamertemplate{subsubsection in toc}{} + +\mode + diff --git a/my_docs/20/eb_user_20/beamerinnerthemeTACC16.sty b/my_docs/20/eb_user_20/beamerinnerthemeTACC16.sty deleted file mode 120000 index 5955acc99..000000000 --- a/my_docs/20/eb_user_20/beamerinnerthemeTACC16.sty +++ /dev/null @@ -1 +0,0 @@ -../../beamer/beamerinnerthemeTACC16.sty \ No newline at end of file diff --git a/my_docs/20/eb_user_20/beamerinnerthemeTACC16.sty b/my_docs/20/eb_user_20/beamerinnerthemeTACC16.sty new file mode 100755 index 000000000..f7f454e1d --- /dev/null +++ b/my_docs/20/eb_user_20/beamerinnerthemeTACC16.sty @@ -0,0 +1,11 @@ +\mode + +\setbeamertemplate{itemize item}[triangle] +\setbeamertemplate{itemize subitem}[triangle] +\setbeamertemplate{itemize subsubitem}[triangle] +\setbeamertemplate{section in toc}{$\bullet$\hskip.5em\inserttocsection} +%\setbeamertemplate{subsection in toc}{} +\setbeamertemplate{subsubsection in toc}{} + +\mode + diff --git a/my_docs/20/eb_user_20/beamerouterthemeTACC.sty b/my_docs/20/eb_user_20/beamerouterthemeTACC.sty deleted file mode 120000 index da0a45d33..000000000 --- a/my_docs/20/eb_user_20/beamerouterthemeTACC.sty +++ /dev/null @@ -1 +0,0 @@ -../../beamer/beamerouterthemeTACC.sty \ No newline at end of file diff --git a/my_docs/20/eb_user_20/beamerouterthemeTACC.sty b/my_docs/20/eb_user_20/beamerouterthemeTACC.sty new file mode 100755 index 000000000..038580303 --- /dev/null +++ b/my_docs/20/eb_user_20/beamerouterthemeTACC.sty @@ -0,0 +1,196 @@ +% Copyright 2003 by Till Tantau +% +% This program can be redistributed and/or modified under the terms +% of the GNU Public License, version 2. + +\mode + +\setbeamertemplate{frametitle}[default][center] +\addtobeamertemplate{frametitle}{\vskip 4ex minus 4ex}{} + +% Here we define what appears at the bottom of each slide: the "footline". +\setbeamertemplate{footline}{% + \leavevmode% + + % Horizontal line dividing the rest of the slide from the footer? + % hrule goes all the way across... + % \hrule height.3pt% + % With \rule, you can specify the thickness + % \rule[raise-height]{width}{thickness} + \hspace{.025\textwidth}\rule{.95\textwidth}{.5pt} + + \hbox{% + % On the left half of the footer, insert the TACC logo + \begin{minipage}{.5\textwidth}% + \hskip .033\textwidth%Give horizontal space else this will set on the left edge of the slide! + % TACC logo with custom viewport! + \includegraphics[viewport=1 -1 135 35, clip=true, width=.4\textwidth]{figures/TACC_logo} + \end{minipage} + % + \begin{minipage}{.5\textwidth}% + \vskip .023\textheight% + \raggedleft% + \setlength{\rightskip}{.033\textwidth} + % + % If we are not on the first page, insert a page number + % For some reason, insertframenumber is buggy when you have fragile + % slides with verbatim environments in them... it tends to skip numbers + % for some reason! On the other hand, the pagenumber is incremented + % for *every* slide, including transition slides... + \ifnum \thepage>1 + % \insertshorttitle + \insertframenumber + % \insertframenumber/\inserttotalframenumber + % \insertpagenumber + \else % Do a phantom of whatever you do on other pages, so spacing matches + %$\phantom{\insertshorttitle}$ + $\phantom{\insertframenumber}$ + %$\phantom{\insertframenumber/\inserttotalframenumber}$ + %$\phantom{\insertpagenumber}$ + \fi + \hfill\includegraphics[width=.5\textwidth]{figures/UT_logo}% + \end{minipage}% + }% + \vskip .023\textheight% +} + + + + +\ifTACCheadernav + +\usesectionheadtemplate +{\hfill\insertsectionhead} +{\hfill\color{fg!50!bg}\insertsectionhead} + +% Head +\ifbeamer@compress + +% Here we define how the top of the frame looks, the "headline". +\setbeamertemplate{headline} +{% + \ifnum \thepage>1 + \leavevmode% + \begin{beamercolorbox}[wd=.5\paperwidth,ht=2.5ex,dp=1.125ex]{% + section in head/foot}% + \insertsectionnavigationhorizontal{.5\paperwidth}{\hskip0pt plus1filll}{}% + \end{beamercolorbox}% + \begin{beamercolorbox}[wd=.5\paperwidth,ht=2.5ex,dp=1.125ex]{% + subsection in head/foot}% + \insertsubsectionnavigationhorizontal{% + .5\paperwidth}{}{\hskip0pt plus1filll}% + \end{beamercolorbox}% + \fi %\thepage>1 +} + +\else% Not compressed + +\setbeamertemplate{headline} +{% + \ifnum \thepage>1 + \leavevmode% + \@tempdimb=2.4375ex% + \ifnum\beamer@subsectionmax<\beamer@sectionmax% + \multiply\@tempdimb by\beamer@sectionmax% + \else% + \multiply\@tempdimb by\beamer@subsectionmax% + \fi% + \ifdim\@tempdimb>0pt% + \advance\@tempdimb by 1.125ex% + \begin{beamercolorbox}[wd=.5\paperwidth,ht=\@tempdimb]{% + section in head/foot}% + \vbox to\@tempdimb{\vfil\insertsectionnavigation{.5\paperwidth}\vfil}% + \end{beamercolorbox}% + \begin{beamercolorbox}[wd=.5\paperwidth,ht=\@tempdimb]{% + subsection in head/foot}% + \vbox to\@tempdimb{\vfil\insertsubsectionnavigation{.5\paperwidth}\vfil}% + \end{beamercolorbox}% + \fi% + \fi % \thepage>1 +} + +\fi % end if compressed +\fi % TACCheadernav + + +\ifTACCheadertree + +\setbeamertemplate{headline} +{ + \begin{beamercolorbox}[wd=\paperwidth,colsep=1.5pt + ]{upper separation line head} + \end{beamercolorbox} + % + % Place short title + % + \begin{beamercolorbox}[wd=\paperwidth,ht=2.5ex,dp=1.125ex,% + leftskip=.3cm,rightskip=.3cm plus1fil]{title in head/foot} + \usebeamerfont{title in head/foot}\insertshorttitle + \end{beamercolorbox} + + % + % Place section + % + \begin{beamercolorbox}[wd=\paperwidth,ht=2.5ex,dp=1.125ex,% + leftskip=.3cm,rightskip=.3cm plus1fil]{section in head/foot} + \usebeamerfont{section in head/foot}% + %\ifbeamer@tree@showhooks + \setbox\beamer@tempbox=\hbox{\insertsectionhead}% + \ifdim\wd\beamer@tempbox>1pt% + \hskip2pt\raise1.9pt\hbox{\vrule width0.4pt height1.875ex\vrule width 5pt height0.4pt}% + \hskip1pt% + \fi% \ifdim + %\else% + %\hskip6pt% + %\fi% \ifbeamer + \insertsectionhead + \end{beamercolorbox} + +% +% Place subsection +% +\begin{beamercolorbox}[wd=\paperwidth,ht=2.5ex,dp=1.125ex,% + leftskip=.3cm,rightskip=.3cm plus1fil]{subsection in head/foot} + \usebeamerfont{subsection in head/foot}% + %\ifbeamer@tree@showhooks + \setbox\beamer@tempbox=\hbox{\insertsubsectionhead}% + \ifdim\wd\beamer@tempbox>1pt% + \hskip9.4pt\raise1.9pt\hbox{\vrule width0.4pt height1.875ex\vrule width 5pt height0.4pt}% + \hskip1pt% + \fi% \ifdim + %\else% + %\hskip12pt% + %\fi% \ifbeamer + \insertsubsectionhead +\end{beamercolorbox} + +% +% Place final separation box +% + \begin{beamercolorbox}[wd=\paperwidth,colsep=1.5pt + ]{lower separation line head} + \end{beamercolorbox} + + % + % Another matching rule which helps to frame the content + % + \hspace{.025\textwidth}\rule{.95\textwidth}{.5pt} +} +\fi % TACCheadertree + + +% The following command suppresses all navigation symbols. This is +% necessary in the TACC theme, since it overlaps where we want the +% logo to be. +\setbeamertemplate{navigation symbols}{} + +% Align the navigation symbols vertically (still overlaps our logo!) +%\setbeamertemplate{navigation symbols}[vertical]{} + +% Only places the slide-forward and slide-back symbol, but yes, +% this still overlaps our logo! +%\setbeamertemplate{navigation symbols}[only frame symbol]{} + + +\mode + diff --git a/my_docs/20/eb_user_20/beamerouterthemeTACC16.sty b/my_docs/20/eb_user_20/beamerouterthemeTACC16.sty deleted file mode 120000 index 54bd09537..000000000 --- a/my_docs/20/eb_user_20/beamerouterthemeTACC16.sty +++ /dev/null @@ -1 +0,0 @@ -../../beamer/beamerouterthemeTACC16.sty \ No newline at end of file diff --git a/my_docs/20/eb_user_20/beamerouterthemeTACC16.sty b/my_docs/20/eb_user_20/beamerouterthemeTACC16.sty new file mode 100755 index 000000000..d5e6388c7 --- /dev/null +++ b/my_docs/20/eb_user_20/beamerouterthemeTACC16.sty @@ -0,0 +1,312 @@ +% Antonio Gomez (agomez@tacc.utexas.edu) +% 4-20-17. Added option to put the footer on the right side + + + +\mode + +\usepackage{xcolor} +\usepackage{graphicx} +\usepackage{etoolbox} + + + +% This theme accepts the "rightfooter" option +% When used, it will put the TACC logo at the bottom of the slide on the right side +% By default, it goes to the left + +\xifaspectratio{ + {169} { + \pgfdeclareimage[width=\paperwidth]{titlebackground}{./figures/master169.jpg} + \if@rightfooterOption + \pgfdeclareimage[width=\paperwidth]{background}{./figures/secondary_right169.jpg} +\else + \pgfdeclareimage[width=\paperwidth]{background}{./figures/secondary169.jpg} +\fi +} +}[ +\pgfdeclareimage[width=\paperwidth]{titlebackground}{./figures/master.jpg} + \if@rightfooterOption + \pgfdeclareimage[width=\paperwidth]{background}{./figures/secondary_right.jpg} +\else + \pgfdeclareimage[width=\paperwidth]{background}{./figures/secondary.jpg} +\fi +] + +\setbeamertemplate{background canvas}{% +\xifaspectratio{ + {169} { + \ifnum\c@framenumber=1 % + \begin{picture}(0,0) + \put(-3,-256){% + \pgfuseimage{titlebackground} + } + \end{picture} + \else% + \begin{picture}(0,0) + \put(-3,-260){% + \pgfuseimage{background} + } + \end{picture} + \fi + } + {43} { + \ifnum\c@framenumber=1 % + \begin{picture}(0,0) + \put(-4,-274){% + \pgfuseimage{titlebackground} + } + \end{picture} + \else% + \begin{picture}(0,0) + \put(-4,-274){% + \pgfuseimage{background} + } + \end{picture} + \fi + } +} +} + + + +%\setbeamertemplate{background canvas}{% +% % On title page +% \ifnum\c@framenumber=1 % +% \begin{picture}(0,0) +% \put(0,-253){% +% \pgfuseimage{titlebackground} +% } +% \end{picture} +% +% \else% +% \xifaspectratio{ +% {169} { +% % Other frames background +% \begin{picture}(0,0) +% \put(-4,-260){% +% \pgfuseimage{background} +% } +% \end{picture} +% } +% }[ +% % Other frames background +% \begin{picture}(0,0) +% \put(-4,-274){% +% \pgfuseimage{background} +% } +% \end{picture} +% ] +% \fi% +%} + + +\setbeamertemplate{title page}{ +\vspace{40pt} +\begin{center} +\usebeamerfont{title} {\huge \inserttitle}\par +\vspace{4ex} +\usebeamerfont{author} { + \insertauthor +}\par +\vspace{2ex} +\usebeamerfont{institute}{ + \insertinstitute +} \par +\vspace{2ex} +\usebeamerfont{date}{ + \insertdate +} +\end{center} +} + + +\setbeamertemplate{frametitle}[default][center] +\setbeamertemplate{frametitle}{ + \makeatletter + \regexpatchcmd{\insertframetitle} + {(\c{usebeamertemplate}.*)\c{fi}} + {\c{NoCaseChange}\cB\{\1\cE\}\c{fi}} + {}{}% + \makeatother + \vskip1ex + \insertframetitle +} + +% Here we define what appears at the bottom of each slide: the "footline". +\setbeamertemplate{footline}{% + \leavevmode% + + % Horizontal line dividing the rest of the slide from the footer? + % hrule goes all the way across... + % \hrule height.3pt% + % With \rule, you can specify the thickness + % \rule[raise-height]{width}{thickness} + % \hspace{.025\textwidth}\rule{.95\textwidth}{.5pt} + + \hbox{% + \ifnum \thepage>1 + \if@rightfooterOption + \begin{minipage}{.2\textwidth}% + \hskip .05\textwidth%Give horizontal space else this will set on the left edge of the slide! + \end{minipage} + \else + \begin{minipage}{.4\textwidth}% + \hskip .05\textwidth%Give horizontal space else this will set on the left edge of the slide! + \end{minipage} + \fi + + + \begin{minipage}{\textwidth}% + % \vskip .023\textheight% + \raggedleft% + \setlength{\rightskip}{\textwidth} + \if@rightfooterOption + \hbox{% + \begin{beamercolorbox}[wd=0.7\textwidth,ht=2.25ex,dp=1ex,left]{author in head/foot}% + \insertshorttitle{} \hskip .01\textwidth | \hskip .01\textwidth \insertdate{} \hskip .01\textwidth | \hskip .01\textwidth \insertframenumber{} + \end{beamercolorbox}% + } + \else + \hbox{% + \begin{beamercolorbox}[wd=0.5\textwidth,ht=2.25ex,dp=1ex,left]{author in head/foot}% + \insertshorttitle{} \hskip .01\textwidth | \hskip .01\textwidth \insertdate{} \hskip .01\textwidth | \hskip .01\textwidth \insertframenumber{} + \end{beamercolorbox}% + } + \fi + + \end{minipage}% + \begin{minipage}{.05\textwidth}% + \end{minipage}% + \fi %\thepage>1 + }% + \vskip .023\textheight% + +} + + + + +\ifTACCheadernav + +\usesectionheadtemplate +{\hfill\insertsectionhead} +{\hfill\color{fg!50!bg}\insertsectionhead} + +% Head +\ifbeamer@compress + +% Here we define how the top of the frame looks, the "headline". +\setbeamertemplate{headline} +{% + \ifnum \thepage>1 + \leavevmode% + \begin{beamercolorbox}[wd=.5\paperwidth,ht=2.5ex,dp=1.125ex]{% + section in head/foot}% + \insertsectionnavigationhorizontal{.5\paperwidth}{\hskip0pt plus1filll}{}% + \end{beamercolorbox}% + \begin{beamercolorbox}[wd=.5\paperwidth,ht=2.5ex,dp=1.125ex]{% + subsection in head/foot}% + \insertsubsectionnavigationhorizontal{% + .5\paperwidth}{}{\hskip0pt plus1filll}% + \end{beamercolorbox}% + \fi %\thepage>1 +} + +\else% Not compressed + +\setbeamertemplate{headline} +{% + \ifnum \thepage>1 + \leavevmode% + \@tempdimb=2.4375ex% + \ifnum\beamer@subsectionmax<\beamer@sectionmax% + \multiply\@tempdimb by\beamer@sectionmax% + \else% + \multiply\@tempdimb by\beamer@subsectionmax% + \fi% + \ifdim\@tempdimb>0pt% + \advance\@tempdimb by 1.125ex% + \begin{beamercolorbox}[wd=.5\paperwidth,ht=\@tempdimb]{% + section in head/foot}% + \vbox to\@tempdimb{\vfil\insertsectionnavigation{.5\paperwidth}\vfil}% + \end{beamercolorbox}% + \begin{beamercolorbox}[wd=.5\paperwidth,ht=\@tempdimb]{% + subsection in head/foot}% + \vbox to\@tempdimb{\vfil\insertsubsectionnavigation{.5\paperwidth}\vfil}% + \end{beamercolorbox}% + \fi% + \fi % \thepage>1 +} + +\fi % end if compressed +\fi % TACCheadernav + + +\ifTACCheadertree + +\setbeamertemplate{headline} +{ + \begin{beamercolorbox}[wd=\paperwidth,colsep=1.5pt]{upper separation line head} + \end{beamercolorbox} + % + % Place short title + % + \begin{beamercolorbox}[wd=\paperwidth,ht=2.5ex,dp=1.125ex,% + leftskip=.3cm,rightskip=.3cm plus1fil]{title in head/foot} + \usebeamerfont{title in head/foot}\insertshorttitle + \end{beamercolorbox} + + % + % Place section + % + \begin{beamercolorbox}[wd=\paperwidth,ht=2.5ex,dp=1.125ex,% + leftskip=.3cm,rightskip=.3cm plus1fil]{section in head/foot} + \usebeamerfont{section in head/foot}% + %\ifbeamer@tree@showhooks + \setbox\beamer@tempbox=\hbox{\insertsectionhead}% + \ifdim\wd\beamer@tempbox>1pt% + \hskip2pt\raise1.9pt\hbox{\vrule width0.4pt height1.875ex\vrule width 5pt height0.4pt}% + \hskip1pt% + \fi + \insertsectionhead + \end{beamercolorbox} + +% +% Place subsection +% +\begin{beamercolorbox}[wd=\paperwidth,ht=2.5ex,dp=1.125ex,% + leftskip=.3cm,rightskip=.3cm plus1fil]{subsection in head/foot} + \usebeamerfont{subsection in head/foot}% + %\ifbeamer@tree@showhooks + \setbox\beamer@tempbox=\hbox{\insertsubsectionhead}% + \ifdim\wd\beamer@tempbox>1pt% + \hskip9.4pt\raise1.9pt\hbox{\vrule width0.4pt height1.875ex\vrule width 5pt height0.4pt}% + \hskip1pt% + \fi + \insertsubsectionhead +\end{beamercolorbox} + +% +% Place final separation box +% + \begin{beamercolorbox}[wd=\paperwidth,colsep=1.5pt + ]{lower separation line head} + \end{beamercolorbox} + + % + % Another matching rule which helps to frame the content + % + \hspace{.025\textwidth}\rule{.95\textwidth}{.5pt} +} +\fi % TACCheadertree + + +% The following command suppresses all navigation symbols. This is +% necessary in the TACC theme, since it overlaps where we want the +% logo to be. +\setbeamertemplate{navigation symbols}{} + + +\mode + diff --git a/my_docs/20/eb_user_20/beamerthemeTACC.sty b/my_docs/20/eb_user_20/beamerthemeTACC.sty deleted file mode 120000 index 5c339abd4..000000000 --- a/my_docs/20/eb_user_20/beamerthemeTACC.sty +++ /dev/null @@ -1 +0,0 @@ -../../beamer/beamerthemeTACC.sty \ No newline at end of file diff --git a/my_docs/20/eb_user_20/beamerthemeTACC.sty b/my_docs/20/eb_user_20/beamerthemeTACC.sty new file mode 100755 index 000000000..c6a1b1269 --- /dev/null +++ b/my_docs/20/eb_user_20/beamerthemeTACC.sty @@ -0,0 +1,26 @@ +%% TACC theme for beamer + +\newif\ifTACCheadernav +\DeclareOption{headernav}{\global\TACCheadernavtrue} + +\newif\ifTACCheadertree +\DeclareOption{headertree}{\global\TACCheadertreetrue} +\ProcessOptions + +\mode + +\usefonttheme{TACC} +\usecolortheme{TACC} +\useinnertheme{TACC} +\useoutertheme{TACC} + +\mode + + +\newcommand{\event}[1]{% + \makeatletter% + \def\TACC@eventname{#1}% + \makeatother} + +\newcommand{\sectionframe}[1]{\section{#1}\frame{\Large\textbf{#1}}} +\newcommand{\subsectionframe}[1]{\subsection{#1}\frame{\large\textbf{#1}}} diff --git a/my_docs/20/eb_user_20/beamerthemeTACC16.sty b/my_docs/20/eb_user_20/beamerthemeTACC16.sty deleted file mode 120000 index 7a9d4d296..000000000 --- a/my_docs/20/eb_user_20/beamerthemeTACC16.sty +++ /dev/null @@ -1 +0,0 @@ -../../beamer/beamerthemeTACC16.sty \ No newline at end of file diff --git a/my_docs/20/eb_user_20/beamerthemeTACC16.sty b/my_docs/20/eb_user_20/beamerthemeTACC16.sty new file mode 100755 index 000000000..b522d0207 --- /dev/null +++ b/my_docs/20/eb_user_20/beamerthemeTACC16.sty @@ -0,0 +1,61 @@ +%% TACC theme for beamer + + +\newif\if@rightfooterOption +\@rightfooterOptionfalse +\DeclareOption{rightfooter}{\@rightfooterOptiontrue} +\ProcessOptions + + +\newif\ifTACCheadernav +\DeclareOption{headernav}{\global\TACCheadernavtrue} + +\newif\ifTACCheadertree +\DeclareOption{headertree}{\global\TACCheadertreetrue} +\ProcessOptions + +\usepackage{xparse} +\ExplSyntaxOn +\NewDocumentCommand{\ifaspectratio}{mmm} + { + % Recover the option from those passed to the class + \keys_set:nf { zunbeltz/beameroptions } { \use:c { opt@beamer.cls } } + \str_if_eq:nVTF { #1 } \l_zunbeltz_aspectratio_tl { #2 } { #3 } + } +\NewDocumentCommand{\xifaspectratio}{mO{}} + { + % Recover the option from those passed to the class + \keys_set:nf { zunbeltz/beameroptions } { \use:c { opt@beamer.cls } } + \str_case:VnF \l_zunbeltz_aspectratio_tl { #1 } { #2 } + } +% We need to define only one key, the other are treated as `unknown' +\keys_define:nn { zunbeltz/beameroptions } + { + aspectratio .tl_set:N = \l_zunbeltz_aspectratio_tl, + aspectratio .initial:n = 43, + unknown .code:n = {}, + } + +% Generate the variants we need +\cs_generate_variant:Nn \keys_set:nn { nf } +\cs_generate_variant:Nn \str_if_eq:nnTF { nV } +\cs_generate_variant:Nn \str_case:nnF { V } +\ExplSyntaxOff + +\mode + +\usefonttheme{TACC16} +\useinnertheme{TACC16} +\useoutertheme{TACC16} +\usecolortheme{TACC16} + +\mode + + +\newcommand{\event}[1]{% + \makeatletter% + \def\TACC@eventname{#1}% + \makeatother} + +\newcommand{\sectionframe}[1]{\section{#1}\frame{\Large\textbf{#1}}} +\newcommand{\subsectionframe}[1]{\subsection{#1}\frame{\large\textbf{#1}}} diff --git a/my_docs/20/eb_user_20/figures b/my_docs/20/eb_user_20/figures deleted file mode 120000 index ddafd8974..000000000 --- a/my_docs/20/eb_user_20/figures +++ /dev/null @@ -1 +0,0 @@ -../../beamer/figures \ No newline at end of file diff --git a/my_docs/20/eb_user_20/figures/TACC_logo.pdf b/my_docs/20/eb_user_20/figures/TACC_logo.pdf new file mode 100755 index 000000000..c018a20cb Binary files /dev/null and b/my_docs/20/eb_user_20/figures/TACC_logo.pdf differ diff --git a/my_docs/20/eb_user_20/figures/UT_logo.pdf b/my_docs/20/eb_user_20/figures/UT_logo.pdf new file mode 100755 index 000000000..d5b42e752 Binary files /dev/null and b/my_docs/20/eb_user_20/figures/UT_logo.pdf differ diff --git a/my_docs/20/eb_user_20/figures/cc.png b/my_docs/20/eb_user_20/figures/cc.png new file mode 100644 index 000000000..8a532ff8f Binary files /dev/null and b/my_docs/20/eb_user_20/figures/cc.png differ diff --git a/my_docs/20/eb_user_20/figures/isa.png b/my_docs/20/eb_user_20/figures/isa.png new file mode 100644 index 000000000..f95d985e7 Binary files /dev/null and b/my_docs/20/eb_user_20/figures/isa.png differ diff --git a/my_docs/20/eb_user_20/figures/master.jpg b/my_docs/20/eb_user_20/figures/master.jpg new file mode 100644 index 000000000..f5c56c04a Binary files /dev/null and b/my_docs/20/eb_user_20/figures/master.jpg differ diff --git a/my_docs/20/eb_user_20/figures/master169.jpg b/my_docs/20/eb_user_20/figures/master169.jpg new file mode 100644 index 000000000..b215776eb Binary files /dev/null and b/my_docs/20/eb_user_20/figures/master169.jpg differ diff --git a/my_docs/20/eb_user_20/figures/master169.png b/my_docs/20/eb_user_20/figures/master169.png new file mode 100644 index 000000000..bc5c0ed12 Binary files /dev/null and b/my_docs/20/eb_user_20/figures/master169.png differ diff --git a/my_docs/20/eb_user_20/figures/secondary.jpg b/my_docs/20/eb_user_20/figures/secondary.jpg new file mode 100644 index 000000000..d905a95c9 Binary files /dev/null and b/my_docs/20/eb_user_20/figures/secondary.jpg differ diff --git a/my_docs/20/eb_user_20/figures/secondary169.jpg b/my_docs/20/eb_user_20/figures/secondary169.jpg new file mode 100644 index 000000000..4eb017957 Binary files /dev/null and b/my_docs/20/eb_user_20/figures/secondary169.jpg differ diff --git a/my_docs/20/eb_user_20/figures/secondary169.png b/my_docs/20/eb_user_20/figures/secondary169.png new file mode 100644 index 000000000..cb9060a56 Binary files /dev/null and b/my_docs/20/eb_user_20/figures/secondary169.png differ diff --git a/my_docs/20/eb_user_20/figures/secondary_right.jpg b/my_docs/20/eb_user_20/figures/secondary_right.jpg new file mode 100644 index 000000000..f25f93a58 Binary files /dev/null and b/my_docs/20/eb_user_20/figures/secondary_right.jpg differ diff --git a/my_docs/20/eb_user_20/figures/secondary_right169.jpg b/my_docs/20/eb_user_20/figures/secondary_right169.jpg new file mode 100644 index 000000000..567a1078f Binary files /dev/null and b/my_docs/20/eb_user_20/figures/secondary_right169.jpg differ diff --git a/my_docs/20/eb_user_20/themes b/my_docs/20/eb_user_20/themes deleted file mode 120000 index a98530730..000000000 --- a/my_docs/20/eb_user_20/themes +++ /dev/null @@ -1 +0,0 @@ -../../beamer/themes \ No newline at end of file diff --git a/my_docs/20/eb_user_20/themes/beamercolorthemeTACC16.sty b/my_docs/20/eb_user_20/themes/beamercolorthemeTACC16.sty new file mode 100644 index 000000000..248ae8cb6 --- /dev/null +++ b/my_docs/20/eb_user_20/themes/beamercolorthemeTACC16.sty @@ -0,0 +1,193 @@ +% Copyright 2003 by Till Tantau . +% +% This program can be redistributed and/or modified under the terms +% of the GNU Public License, version 2. + +\mode + +\usepackage{textcase,regexpatch} + +\setbeamertemplate{blocks}[rounded][shadow=true] + + +\definecolor{TACCred}{RGB}{180,13,29} +\definecolor{TACCorange}{RGB}{210,104,43} +\definecolor{TACCblue}{RGB}{21,77,122} +%\definecolor{TACCgreen}{RGB}{30,134,104} +\definecolor{TACCgreen}{RGB}{49,168,51} + +% I downloaded a gimp color palette from +% http://maururu.net/2007/latex-beamer-color-palette/ +% Which provides rgb values (I think) for several of the +% default beamer themes. You can open this in gimp by +% opening the Palettes dialog, right-clicking anywhere and choosing +% 'Import Palette'. A color in there called 'default added blue' +% appeared to be approximately what I wanted. It had the triple +% of values 141 145 208. If you double-click on this in the +% palette editor it gives you a bunch of information. You can't +% use these values directly to set a color...it just comes out white. +% I think definecolor is expecting something normalized by 255. Yes! + + +%%% +% Set the normal text color +%%% +\setbeamercolor{normal text}{fg=black} %,bg=white} +\setbeamercolor{example text}{fg=TACCgreen} +\setbeamercolor{alerted text}{fg=TACCorange} + + +\setbeamercolor{structure}{fg=black} +%\setbeamercolor{structure}{fg=black} + +\setbeamercolor{background canvas}{parent=normal text} +\setbeamercolor{background}{parent=background canvas} + +\setbeamercolor{palette primary}{use=structure,fg=structure.fg} +\setbeamercolor{palette secondary}{use=structure,fg=structure.fg!75!black} +\setbeamercolor{palette tertiary}{use=structure,fg=structure.fg!50!black} +\setbeamercolor{palette quaternary}{fg=black} + +\setbeamercolor{palette sidebar primary}{use=normal text,fg=normal text.fg} +\setbeamercolor{palette sidebar secondary}{use=structure,fg=structure.fg} +\setbeamercolor{palette sidebar tertiary}{use=normal text,fg=normal text.fg} +\setbeamercolor{palette sidebar quaternary}{use=structure,fg=structure.fg} + +\setbeamercolor{math text}{} +\setbeamercolor{math text inlined}{parent=math text} +\setbeamercolor{math text displayed}{parent=math text} + +\setbeamercolor{normal text in math text}{} + +\setbeamercolor{local structure}{parent=structure} + +\setbeamercolor{titlelike}{parent=structure} + +\setbeamercolor{title}{parent=titlelike} +\setbeamercolor{title in head/foot}{parent=palette quaternary} +\setbeamercolor{title in sidebar}{parent=palette sidebar quaternary} + +\setbeamercolor{subtitle}{parent=title} + +\setbeamercolor{author}{} +\setbeamercolor{author in head/foot}{parent=palette primary} +\setbeamercolor{author in sidebar}{use=palette sidebar tertiary,fg=palette sidebar tertiary.fg} + +\setbeamercolor{institute}{} +\setbeamercolor{institute in head/foot}{parent=palette tertiary} +\setbeamercolor{institute in sidebar}{use=palette sidebar tertiary,fg=palette sidebar tertiary.fg} + +\setbeamercolor{date}{} +\setbeamercolor{date in head/foot}{parent=palette secondary} +\setbeamercolor{date in sidebar}{use=palette sidebar tertiary,fg=palette sidebar tertiary.fg} + +\setbeamercolor{titlegraphic}{} + +\setbeamercolor{part name}{} +\setbeamercolor{part title}{parent=titlelike} + +\setbeamercolor{section in toc}{parent=structure} +\setbeamercolor{section in toc shaded}{parent=section in toc} +\setbeamercolor{section in head/foot}{parent=palette tertiary} +\setbeamercolor{section in sidebar}{parent=palette sidebar secondary} +\setbeamercolor{section in sidebar shaded}{use=section in sidebar,fg=section in sidebar.fg!40!bg} +\setbeamercolor{section number projected}{parent=item projected} + +\setbeamercolor{subsection in toc}{} +\setbeamercolor{subsection in toc shaded}{parent=subsection in toc} +\setbeamercolor{subsection in head/foot}{parent=palette secondary} +\setbeamercolor{subsection in sidebar}{parent=palette sidebar primary} +\setbeamercolor{subsection in sidebar shaded}{use=subsection in sidebar,fg=subsection in sidebar.fg!40!bg} +\setbeamercolor{subsection number projected}{parent={subitem projected}} + +\setbeamercolor{subsubsection in toc}{parent=subsection in toc} +\setbeamercolor{subsubsection in toc shaded}{parent=subsubsection in toc} +\setbeamercolor{subsubsection in head/foot}{parent=subsection in head/foot} +\setbeamercolor{subsubsection in sidebar}{parent=subsection in sidebar} +\setbeamercolor{subsubsection in sidebar shaded}{parent=subsection in sidebar shaded} +\setbeamercolor{subsubsection number projected}{parent=subsubitem projected} + +\setbeamercolor{headline}{} +\setbeamercolor{footline}{} + +\setbeamercolor{sidebar}{} +\setbeamercolor{sidebar left}{parent=sidebar} +\setbeamercolor{sidebar right}{parent=sidebar} + +\setbeamercolor{logo}{parent=palette secondary} + +\setbeamercolor{frametitle}{parent=titlelike} +\setbeamercolor{framesubtitle}{parent=frametitle} + +\setbeamercolor{frametitle right}{parent=frametitle} + +\setbeamercolor{caption}{} +\setbeamercolor{caption name}{parent=structure} + +\setbeamercolor{button}{use=local structure,bg=local structure.fg!50!bg,fg=white} +\setbeamercolor{button border}{use=button,fg=button.bg} +\setbeamercolor{navigation symbols}{use=structure,fg=structure.fg!40!bg} +\setbeamercolor{navigation symbols dimmed}{use=structure,fg=structure.fg!20!bg} +\setbeamercolor{mini frame}{parent=section in head/foot} + +\setbeamercolor{block body}{fg=black} +\setbeamercolor{block body alerted}{fg=black} +\setbeamercolor{block body example}{fg=black} + +\setbeamercolor{block title}{bg=TACCblue,fg=white} +\setbeamercolor{block title alerted}{bg=TACCred,fg=white} +\setbeamercolor{block title example}{bg=TACCgreen,fg=white} + +\setbeamercolor{item}{parent=local structure} +\setbeamercolor{subitem}{parent=item} +\setbeamercolor{subsubitem}{parent=subitem} + +\setbeamercolor{item projected}{parent=item,use=item,fg=black,bg=item.fg} +\setbeamercolor{subitem projected}{parent=item projected} +\setbeamercolor{subsubitem projected}{parent=subitem projected} + +\setbeamercolor{enumerate item}{parent=item} +\setbeamercolor{enumerate subitem}{parent=subitem} +\setbeamercolor{enumerate subsubitem}{parent=subsubitem} + +\setbeamercolor{itemize item}{parent=item} +\setbeamercolor{itemize subitem}{parent=subitem} +\setbeamercolor{itemize subsubitem}{parent=subsubitem} + +\setbeamercolor{itemize/enumerate body}{} +\setbeamercolor{itemize/enumerate subbody}{} +\setbeamercolor{itemize/enumerate subsubbody}{} + +\setbeamercolor{description item}{parent=item} + +\setbeamercolor{bibliography item}{parent=item} + +\setbeamercolor{bibliography entry author}{use=structure,fg=structure.fg} +\setbeamercolor{bibliography entry title}{use=normal text,fg=normal text.fg} +\setbeamercolor{bibliography entry location}{use=structure,fg=structure.fg!65!bg} +\setbeamercolor{bibliography entry note}{use=structure,fg=structure.fg!65!bg} + +\setbeamercolor{separation line}{} + +\setbeamercolor{upper separation line head}{parent=separation line} +\setbeamercolor{middle separation line head}{parent=separation line} +\setbeamercolor{lower separation line head}{parent=separation line} + +\setbeamercolor{upper separation line foot}{parent=separation line} +\setbeamercolor{middle separation line foot}{parent=separation line} +\setbeamercolor{lower separation line foot}{parent=separation line} + +\setbeamercolor{abstract}{} +\setbeamercolor{abstract title}{parent=structure} + +\setbeamercolor{verse}{} + +\setbeamercolor{quotation}{} +\setbeamercolor{quote}{parent=quotation} + +\setbeamercolor{page number in head/foot}{fg=fg!50!bg} + +\setbeamercolor{qed symbol}{parent=structure} + +\mode + diff --git a/my_docs/20/eb_user_20/themes/beamerfontthemeTACC16.sty b/my_docs/20/eb_user_20/themes/beamerfontthemeTACC16.sty new file mode 100644 index 000000000..d0fc325cc --- /dev/null +++ b/my_docs/20/eb_user_20/themes/beamerfontthemeTACC16.sty @@ -0,0 +1,21 @@ +% Copyright 2003 by Till Tantau +% +% This program can be redistributed and/or modified under the terms +% of the GNU Public License, version 2. + +\mode +\setbeamerfont{title}{parent=structure,size=\LARGE,series=\bfseries} +\setbeamerfont{author}{parent=structure,size=\large, series=\normalfont} +\setbeamerfont{frametitle}{parent=structure,size=\LARGE,series=\bfseries} +\setbeamerfont{framesubtitle}{parent=frametitle,size=\small} + +%\usefonttheme{professionalfonts} % using non standard fonts for beamer +%\usefonttheme{serif} % default family is serif +%\usepackage{fontspec} +%\setmainfont{Century Gothic} + +%\usepackage{fontspec} +\usepackage{libertine} + +\mode + diff --git a/my_docs/20/eb_user_20/themes/beamerinnerthemeTACC16.sty b/my_docs/20/eb_user_20/themes/beamerinnerthemeTACC16.sty new file mode 100644 index 000000000..f7f454e1d --- /dev/null +++ b/my_docs/20/eb_user_20/themes/beamerinnerthemeTACC16.sty @@ -0,0 +1,11 @@ +\mode + +\setbeamertemplate{itemize item}[triangle] +\setbeamertemplate{itemize subitem}[triangle] +\setbeamertemplate{itemize subsubitem}[triangle] +\setbeamertemplate{section in toc}{$\bullet$\hskip.5em\inserttocsection} +%\setbeamertemplate{subsection in toc}{} +\setbeamertemplate{subsubsection in toc}{} + +\mode + diff --git a/my_docs/20/eb_user_20/themes/beamerouterthemeTACC16-169.sty b/my_docs/20/eb_user_20/themes/beamerouterthemeTACC16-169.sty new file mode 100644 index 000000000..c62f9ed04 --- /dev/null +++ b/my_docs/20/eb_user_20/themes/beamerouterthemeTACC16-169.sty @@ -0,0 +1,247 @@ +% Copyright 2003 by Till Tantau +% +% This program can be redistributed and/or modified under the terms +% of the GNU Public License, version 2. + +\mode + +\usepackage{xcolor} +\usepackage{graphicx} +\usepackage{etoolbox} + +\pgfdeclareimage[width=\paperwidth]{titlebackground}{./figures/master169.png} +\pgfdeclareimage[width=\paperwidth]{background}{./figures/secondary169.png} + +\setbeamertemplate{background canvas}{% + \ifnum\c@framenumber=1% + \begin{picture}(0,0) + \put(-0.15,-250){% + \pgfuseimage{titlebackground} + } + %\put(0,-130.7){% + + %\begin{minipage}[b][45mm][t]{\textwidth}%{226mm} + %\begin{center} + % \usebeamerfont{title}{\MakeTextUppercase{\inserttitle}\par} + %\vspace{2ex} + %\usebeamerfont{author}{\insertauthor} + % \end{center} + %\end{minipage} + %} + \end{picture} + % On title page + \else% + % Other frames background + \begin{picture}(0,0) + \put(-0.15,-255.55){% + \pgfuseimage{background} + } + \end{picture} + \fi% +} + + +\setbeamertemplate{title page}{ +\vspace{40pt} +\begin{center} +\usebeamerfont{title} {\huge \inserttitle}\par +\vspace{4ex} +\usebeamerfont{author} { + \insertauthor +}\par +\vspace{2ex} +\usebeamerfont{institute}{ + \insertinstitute +} \par +\vspace{2ex} +\usebeamerfont{date}{ + \insertdate +} +\end{center} +} + + +\setbeamertemplate{frametitle}[default][center] +\setbeamertemplate{frametitle}{ + \makeatletter + \regexpatchcmd{\insertframetitle} + {(\c{usebeamertemplate}.*)\c{fi}} + {\c{NoCaseChange}\cB\{\1\cE\}\c{fi}} + {}{}% + \makeatother + \vskip1ex + \insertframetitle +} + +% Here we define what appears at the bottom of each slide: the "footline". +\setbeamertemplate{footline}{% + \leavevmode% + + % Horizontal line dividing the rest of the slide from the footer? + % hrule goes all the way across... + % \hrule height.3pt% + % With \rule, you can specify the thickness + % \rule[raise-height]{width}{thickness} + % \hspace{.025\textwidth}\rule{.95\textwidth}{.5pt} + + \hbox{% + \ifnum \thepage>1 + % On the left half of the footer, insert the TACC of + \begin{minipage}{.2\textwidth}% + \hskip .05\textwidth%Give horizontal space else this will set on the left edge of the slide! + % \includegraphics[width=.8\textwidth]{TACC_logo.png} + \end{minipage} + + + \begin{minipage}{\textwidth}% + % \vskip .023\textheight% + \raggedleft% + \setlength{\rightskip}{\textwidth} + \hbox{% + \begin{beamercolorbox}[wd=0.7\textwidth,ht=2.25ex,dp=1ex,left]{author in head/foot}% + \insertshorttitle{} \hskip .01\textwidth | \hskip .01\textwidth \insertdate{} \hskip .01\textwidth | \hskip .01\textwidth \insertframenumber{} + \end{beamercolorbox}% + } + + % + % If we are not on the first page, insert a page number + % For some reason, insertframenumber is buggy when you have fragile + % slides with verbatim environments in them... it tends to skip numbers + % for some reason! On the other hand, the pagenumber is incremented + % for *every* slide, including transition slides... + % \hfill\includegraphics[width=\textwidth]{tacc_ut.png} + \end{minipage}% + \begin{minipage}{.05\textwidth}% + \end{minipage}% + \fi %\thepage>1 + }% + \vskip .023\textheight% + +} + + + + +\ifTACCheadernav + +\usesectionheadtemplate +{\hfill\insertsectionhead} +{\hfill\color{fg!50!bg}\insertsectionhead} + +% Head +\ifbeamer@compress + +% Here we define how the top of the frame looks, the "headline". +\setbeamertemplate{headline} +{% + \ifnum \thepage>1 + \leavevmode% + \begin{beamercolorbox}[wd=.5\paperwidth,ht=2.5ex,dp=1.125ex]{% + section in head/foot}% + \insertsectionnavigationhorizontal{.5\paperwidth}{\hskip0pt plus1filll}{}% + \end{beamercolorbox}% + \begin{beamercolorbox}[wd=.5\paperwidth,ht=2.5ex,dp=1.125ex]{% + subsection in head/foot}% + \insertsubsectionnavigationhorizontal{% + .5\paperwidth}{}{\hskip0pt plus1filll}% + \end{beamercolorbox}% + \fi %\thepage>1 +} + +\else% Not compressed + +\setbeamertemplate{headline} +{% + \ifnum \thepage>1 + \leavevmode% + \@tempdimb=2.4375ex% + \ifnum\beamer@subsectionmax<\beamer@sectionmax% + \multiply\@tempdimb by\beamer@sectionmax% + \else% + \multiply\@tempdimb by\beamer@subsectionmax% + \fi% + \ifdim\@tempdimb>0pt% + \advance\@tempdimb by 1.125ex% + \begin{beamercolorbox}[wd=.5\paperwidth,ht=\@tempdimb]{% + section in head/foot}% + \vbox to\@tempdimb{\vfil\insertsectionnavigation{.5\paperwidth}\vfil}% + \end{beamercolorbox}% + \begin{beamercolorbox}[wd=.5\paperwidth,ht=\@tempdimb]{% + subsection in head/foot}% + \vbox to\@tempdimb{\vfil\insertsubsectionnavigation{.5\paperwidth}\vfil}% + \end{beamercolorbox}% + \fi% + \fi % \thepage>1 +} + +\fi % end if compressed +\fi % TACCheadernav + + +\ifTACCheadertree + +\setbeamertemplate{headline} +{ + \begin{beamercolorbox}[wd=\paperwidth,colsep=1.5pt]{upper separation line head} + \end{beamercolorbox} + % + % Place short title + % + \begin{beamercolorbox}[wd=\paperwidth,ht=2.5ex,dp=1.125ex,% + leftskip=.3cm,rightskip=.3cm plus1fil]{title in head/foot} + \usebeamerfont{title in head/foot}\insertshorttitle + \end{beamercolorbox} + + % + % Place section + % + \begin{beamercolorbox}[wd=\paperwidth,ht=2.5ex,dp=1.125ex,% + leftskip=.3cm,rightskip=.3cm plus1fil]{section in head/foot} + \usebeamerfont{section in head/foot}% + %\ifbeamer@tree@showhooks + \setbox\beamer@tempbox=\hbox{\insertsectionhead}% + \ifdim\wd\beamer@tempbox>1pt% + \hskip2pt\raise1.9pt\hbox{\vrule width0.4pt height1.875ex\vrule width 5pt height0.4pt}% + \hskip1pt% + \fi + \insertsectionhead + \end{beamercolorbox} + +% +% Place subsection +% +\begin{beamercolorbox}[wd=\paperwidth,ht=2.5ex,dp=1.125ex,% + leftskip=.3cm,rightskip=.3cm plus1fil]{subsection in head/foot} + \usebeamerfont{subsection in head/foot}% + %\ifbeamer@tree@showhooks + \setbox\beamer@tempbox=\hbox{\insertsubsectionhead}% + \ifdim\wd\beamer@tempbox>1pt% + \hskip9.4pt\raise1.9pt\hbox{\vrule width0.4pt height1.875ex\vrule width 5pt height0.4pt}% + \hskip1pt% + \fi + \insertsubsectionhead +\end{beamercolorbox} + +% +% Place final separation box +% + \begin{beamercolorbox}[wd=\paperwidth,colsep=1.5pt + ]{lower separation line head} + \end{beamercolorbox} + + % + % Another matching rule which helps to frame the content + % + \hspace{.025\textwidth}\rule{.95\textwidth}{.5pt} +} +\fi % TACCheadertree + + +% The following command suppresses all navigation symbols. This is +% necessary in the TACC theme, since it overlaps where we want the +% logo to be. +\setbeamertemplate{navigation symbols}{} + + +\mode + diff --git a/my_docs/20/eb_user_20/themes/beamerouterthemeTACC16.sty b/my_docs/20/eb_user_20/themes/beamerouterthemeTACC16.sty new file mode 100644 index 000000000..c5b178018 --- /dev/null +++ b/my_docs/20/eb_user_20/themes/beamerouterthemeTACC16.sty @@ -0,0 +1,247 @@ +% Copyright 2003 by Till Tantau +% +% This program can be redistributed and/or modified under the terms +% of the GNU Public License, version 2. + +\mode + +\usepackage{xcolor} +\usepackage{graphicx} +\usepackage{etoolbox} + +\pgfdeclareimage[width=\paperwidth]{titlebackground}{master.jpg} +\pgfdeclareimage[width=\paperwidth]{background}{secondary.jpg} + +\setbeamertemplate{background canvas}{% + \ifnum\c@framenumber=1% + \begin{picture}(0,0) + \put(0,-273){% + \pgfuseimage{titlebackground} + } + %\put(0,-130.7){% + + %\begin{minipage}[b][45mm][t]{\textwidth}%{226mm} + %\begin{center} + % \usebeamerfont{title}{\MakeTextUppercase{\inserttitle}\par} + %\vspace{2ex} + %\usebeamerfont{author}{\insertauthor} + % \end{center} + %\end{minipage} + %} + \end{picture} + % On title page + \else% + % Other frames background + \begin{picture}(0,0) + \put(0,-273){% + \pgfuseimage{background} + } + \end{picture} + \fi% +} + + +\setbeamertemplate{title page}{ +\vspace{40pt} +\begin{center} +\usebeamerfont{title} {\huge \inserttitle}\par +\vspace{4ex} +\usebeamerfont{author} { + \insertauthor +}\par +\vspace{2ex} +\usebeamerfont{institute}{ + \insertinstitute +} \par +\vspace{2ex} +\usebeamerfont{date}{ + \insertdate +} +\end{center} +} + + +\setbeamertemplate{frametitle}[default][center] +\setbeamertemplate{frametitle}{ + \makeatletter + \regexpatchcmd{\insertframetitle} + {(\c{usebeamertemplate}.*)\c{fi}} + {\c{NoCaseChange}\cB\{\1\cE\}\c{fi}} + {}{}% + \makeatother + \vskip1ex + \insertframetitle +} + +% Here we define what appears at the bottom of each slide: the "footline". +\setbeamertemplate{footline}{% + \leavevmode% + + % Horizontal line dividing the rest of the slide from the footer? + % hrule goes all the way across... + % \hrule height.3pt% + % With \rule, you can specify the thickness + % \rule[raise-height]{width}{thickness} + % \hspace{.025\textwidth}\rule{.95\textwidth}{.5pt} + + \hbox{% + \ifnum \thepage>1 + % On the left half of the footer, insert the TACC of + \begin{minipage}{.2\textwidth}% + \hskip .05\textwidth%Give horizontal space else this will set on the left edge of the slide! + % \includegraphics[width=.8\textwidth]{figures/TACC_logo.png} + \end{minipage} + + + \begin{minipage}{\textwidth}% + % \vskip .023\textheight% + \raggedleft% + \setlength{\rightskip}{\textwidth} + \hbox{% + \begin{beamercolorbox}[wd=0.7\textwidth,ht=2.25ex,dp=1ex,left]{author in head/foot}% + \insertshorttitle{} \hskip .01\textwidth | \hskip .01\textwidth \insertdate{} \hskip .01\textwidth | \hskip .01\textwidth \insertframenumber{} + \end{beamercolorbox}% + } + + % + % If we are not on the first page, insert a page number + % For some reason, insertframenumber is buggy when you have fragile + % slides with verbatim environments in them... it tends to skip numbers + % for some reason! On the other hand, the pagenumber is incremented + % for *every* slide, including transition slides... + % \hfill\includegraphics[width=\textwidth]{figures/tacc_ut.png} + \end{minipage}% + \begin{minipage}{.05\textwidth}% + \end{minipage}% + \fi %\thepage>1 + }% + \vskip .023\textheight% + +} + + + + +\ifTACCheadernav + +\usesectionheadtemplate +{\hfill\insertsectionhead} +{\hfill\color{fg!50!bg}\insertsectionhead} + +% Head +\ifbeamer@compress + +% Here we define how the top of the frame looks, the "headline". +\setbeamertemplate{headline} +{% + \ifnum \thepage>1 + \leavevmode% + \begin{beamercolorbox}[wd=.5\paperwidth,ht=2.5ex,dp=1.125ex]{% + section in head/foot}% + \insertsectionnavigationhorizontal{.5\paperwidth}{\hskip0pt plus1filll}{}% + \end{beamercolorbox}% + \begin{beamercolorbox}[wd=.5\paperwidth,ht=2.5ex,dp=1.125ex]{% + subsection in head/foot}% + \insertsubsectionnavigationhorizontal{% + .5\paperwidth}{}{\hskip0pt plus1filll}% + \end{beamercolorbox}% + \fi %\thepage>1 +} + +\else% Not compressed + +\setbeamertemplate{headline} +{% + \ifnum \thepage>1 + \leavevmode% + \@tempdimb=2.4375ex% + \ifnum\beamer@subsectionmax<\beamer@sectionmax% + \multiply\@tempdimb by\beamer@sectionmax% + \else% + \multiply\@tempdimb by\beamer@subsectionmax% + \fi% + \ifdim\@tempdimb>0pt% + \advance\@tempdimb by 1.125ex% + \begin{beamercolorbox}[wd=.5\paperwidth,ht=\@tempdimb]{% + section in head/foot}% + \vbox to\@tempdimb{\vfil\insertsectionnavigation{.5\paperwidth}\vfil}% + \end{beamercolorbox}% + \begin{beamercolorbox}[wd=.5\paperwidth,ht=\@tempdimb]{% + subsection in head/foot}% + \vbox to\@tempdimb{\vfil\insertsubsectionnavigation{.5\paperwidth}\vfil}% + \end{beamercolorbox}% + \fi% + \fi % \thepage>1 +} + +\fi % end if compressed +\fi % TACCheadernav + + +\ifTACCheadertree + +\setbeamertemplate{headline} +{ + \begin{beamercolorbox}[wd=\paperwidth,colsep=1.5pt]{upper separation line head} + \end{beamercolorbox} + % + % Place short title + % + \begin{beamercolorbox}[wd=\paperwidth,ht=2.5ex,dp=1.125ex,% + leftskip=.3cm,rightskip=.3cm plus1fil]{title in head/foot} + \usebeamerfont{title in head/foot}\insertshorttitle + \end{beamercolorbox} + + % + % Place section + % + \begin{beamercolorbox}[wd=\paperwidth,ht=2.5ex,dp=1.125ex,% + leftskip=.3cm,rightskip=.3cm plus1fil]{section in head/foot} + \usebeamerfont{section in head/foot}% + %\ifbeamer@tree@showhooks + \setbox\beamer@tempbox=\hbox{\insertsectionhead}% + \ifdim\wd\beamer@tempbox>1pt% + \hskip2pt\raise1.9pt\hbox{\vrule width0.4pt height1.875ex\vrule width 5pt height0.4pt}% + \hskip1pt% + \fi + \insertsectionhead + \end{beamercolorbox} + +% +% Place subsection +% +\begin{beamercolorbox}[wd=\paperwidth,ht=2.5ex,dp=1.125ex,% + leftskip=.3cm,rightskip=.3cm plus1fil]{subsection in head/foot} + \usebeamerfont{subsection in head/foot}% + %\ifbeamer@tree@showhooks + \setbox\beamer@tempbox=\hbox{\insertsubsectionhead}% + \ifdim\wd\beamer@tempbox>1pt% + \hskip9.4pt\raise1.9pt\hbox{\vrule width0.4pt height1.875ex\vrule width 5pt height0.4pt}% + \hskip1pt% + \fi + \insertsubsectionhead +\end{beamercolorbox} + +% +% Place final separation box +% + \begin{beamercolorbox}[wd=\paperwidth,colsep=1.5pt + ]{lower separation line head} + \end{beamercolorbox} + + % + % Another matching rule which helps to frame the content + % + \hspace{.025\textwidth}\rule{.95\textwidth}{.5pt} +} +\fi % TACCheadertree + + +% The following command suppresses all navigation symbols. This is +% necessary in the TACC theme, since it overlaps where we want the +% logo to be. +\setbeamertemplate{navigation symbols}{} + + +\mode + diff --git a/my_docs/20/eb_user_20/themes/beamerthemeTACC16-169.sty b/my_docs/20/eb_user_20/themes/beamerthemeTACC16-169.sty new file mode 100644 index 000000000..22caf9a05 --- /dev/null +++ b/my_docs/20/eb_user_20/themes/beamerthemeTACC16-169.sty @@ -0,0 +1,38 @@ +%% TACC theme for beamer + +\newif\ifTACCheadernav +\DeclareOption{headernav}{\global\TACCheadernavtrue} + +\newif\ifTACCheadertree +\DeclareOption{headertree}{\global\TACCheadertreetrue} +\ProcessOptions + +\mode + +\makeatletter + \def\beamer@calltheme#1#2#3{% + \def\beamer@themelist{#2} + \@for\beamer@themename:=\beamer@themelist\do + {\usepackage[{#1}]{\beamer@themelocation/#3\beamer@themename}}} + + \def\usefolder#1{ + \def\beamer@themelocation{#1} + } + \def\beamer@themelocation{} + +\usefolder{themes} +\usefonttheme{TACC16} +\useinnertheme{TACC16} +\useoutertheme{TACC16-169} +\usecolortheme{TACC16} + +\mode + + +\newcommand{\event}[1]{% + \makeatletter% + \def\TACC@eventname{#1}% + \makeatother} + +\newcommand{\sectionframe}[1]{\section{#1}\frame{\Large\textbf{#1}}} +\newcommand{\subsectionframe}[1]{\subsection{#1}\frame{\large\textbf{#1}}} diff --git a/my_docs/20/eb_user_20/themes/beamerthemeTACC16.sty b/my_docs/20/eb_user_20/themes/beamerthemeTACC16.sty new file mode 100644 index 000000000..750bdd388 --- /dev/null +++ b/my_docs/20/eb_user_20/themes/beamerthemeTACC16.sty @@ -0,0 +1,26 @@ +%% TACC theme for beamer + +\newif\ifTACCheadernav +\DeclareOption{headernav}{\global\TACCheadernavtrue} + +\newif\ifTACCheadertree +\DeclareOption{headertree}{\global\TACCheadertreetrue} +\ProcessOptions + +\mode + +\usefonttheme{TACC16} +\useinnertheme{TACC16} +\useoutertheme{TACC16} +\usecolortheme{TACC16} + +\mode + + +\newcommand{\event}[1]{% + \makeatletter% + \def\TACC@eventname{#1}% + \makeatother} + +\newcommand{\sectionframe}[1]{\section{#1}\frame{\Large\textbf{#1}}} +\newcommand{\subsectionframe}[1]{\subsection{#1}\frame{\large\textbf{#1}}} diff --git a/my_docs/20/eb_user_20/themes/example.pdf b/my_docs/20/eb_user_20/themes/example.pdf new file mode 100644 index 000000000..add373eee Binary files /dev/null and b/my_docs/20/eb_user_20/themes/example.pdf differ diff --git a/my_docs/20/eb_user_20/themes/license.tex b/my_docs/20/eb_user_20/themes/license.tex new file mode 100644 index 000000000..74ff86759 --- /dev/null +++ b/my_docs/20/eb_user_20/themes/license.tex @@ -0,0 +1,14 @@ + +\begin{frame}{License} +\footnotesize +\textcopyright The University of Texas at Austin, \the\year\\ +\vspace{0.5 cm} +This work is licensed under the Creative Commons Attribution Non-Commercial 3.0 Unported License. To view a copy of this license, +visit http://creativecommons.org/licenses/by-nc/3.0/\\ +\vspace{0.5 cm} +When attributing this work, please use the following text: +"Designing and Administering Large-scale Systems", Texas Advanced Computing Center, \the\year. Available under a Creative Commons Attribution Non-Commercial 3.0 Unported License. +\newline +\newline +\includegraphics[width=1cm]{./figures/cc.png} +\end{frame} \ No newline at end of file diff --git a/my_docs/21/eb_user_21/Lmod-4color@2x.png b/my_docs/21/eb_user_21/Lmod-4color@2x.png deleted file mode 120000 index e15235193..000000000 --- a/my_docs/21/eb_user_21/Lmod-4color@2x.png +++ /dev/null @@ -1 +0,0 @@ -../../../logos/2x/Lmod-4color@2x.png \ No newline at end of file diff --git a/my_docs/21/eb_user_21/Lmod-4color@2x.png b/my_docs/21/eb_user_21/Lmod-4color@2x.png new file mode 100644 index 000000000..4810d74c3 Binary files /dev/null and b/my_docs/21/eb_user_21/Lmod-4color@2x.png differ diff --git a/my_docs/21/eb_user_21/beamercolorthemeTACC.sty b/my_docs/21/eb_user_21/beamercolorthemeTACC.sty deleted file mode 120000 index 8d27e673a..000000000 --- a/my_docs/21/eb_user_21/beamercolorthemeTACC.sty +++ /dev/null @@ -1 +0,0 @@ -../../beamer/beamercolorthemeTACC.sty \ No newline at end of file diff --git a/my_docs/21/eb_user_21/beamercolorthemeTACC.sty b/my_docs/21/eb_user_21/beamercolorthemeTACC.sty new file mode 100755 index 000000000..78beb6a4a --- /dev/null +++ b/my_docs/21/eb_user_21/beamercolorthemeTACC.sty @@ -0,0 +1,323 @@ +% Copyright 2003 by Till Tantau . +% +% This program can be redistributed and/or modified under the terms +% of the GNU Public License, version 2. + +\mode + +% I downloaded a gimp color palette from +% http://maururu.net/2007/latex-beamer-color-palette/ +% Which provides rgb values (I think) for several of the +% default beamer themes. You can open this in gimp by +% opening the Palettes dialog, right-clicking anywhere and choosing +% 'Import Palette'. A color in there called 'default added blue' +% appeared to be approximately what I wanted. It had the triple +% of values 141 145 208. If you double-click on this in the +% palette editor it gives you a bunch of information. You can't +% use these values directly to set a color...it just comes out white. +% I think definecolor is expecting something normalized by 255. Yes! + + +% bluish colors +\definecolor{defaddedblue}{rgb}{0.5529,.5686,.8157} % 141,145,208 +\definecolor{defblockheader}{rgb}{.1921,.2235,.6824} % 49,57,174 +\definecolor{flyaddedblue}{rgb}{.5961,.6118,.8431} % 152,156,215 + +% bluish-greys +\definecolor{beetleaddedblue1}{rgb}{.3333,.4039,.6196} % 85 103 158, dark +\definecolor{beetleaddedblue2}{rgb}{.4510,.5098,.7020} % 115 130 179, medium +\definecolor{beetleaddedblue3}{rgb}{.7059,.7255,.7961} % 180 185 203, light (greyest) + +% very light blue-greys +\definecolor{deflightouter1}{rgb}{.7608,.7647,.9020} % 194 195 230, dark +\definecolor{deflightouter2}{rgb}{.8 ,.8039,.9176} % 204 205 234, medium +\definecolor{deflightouter3}{rgb}{.8392,.8431,.9373} % 214 215 239, light + +% reddish colors +\definecolor{flyalertblockheader}{rgb}{.7373,.1294,.1333} % 188 33 34 +\definecolor{flyaddedred}{rgb}{.8667,.5647,.5647}% 221 144 144 +\definecolor{beaverouterframe}{rgb}{.5529,.0980,.0980}% 141 25 25 + +% greens (green is used for 'examples' in beamer) +\definecolor{defexblock}{rgb}{.9098,.9333,.9020} % 232 238 230, light +\definecolor{defaddedgreen}{rgb}{.5412,.6510,.4706} % 138 166 120, medium +\definecolor{defexblockheader}{rgb}{.1686,.3647,.0392} % 43 93 10, dark + +\definecolor{lightexblock}{rgb}{.9137,.9451,.9020} % 233 241 230, light +\definecolor{lightexblockheader}{rgb}{.8235,.8980,.8} % 210 229 204, medium +\definecolor{lightexblockheadertext}{rgb}{.2431,.5098,.0745} % 62 130 19, dark + + +%%% +% Set the normal text color +%%% +\setbeamercolor{normal text}{fg=black,bg=white} + +%%% +% Set the alerted text color +%%% +% \setbeamercolor{alerted text}{fg=red} +\setbeamercolor{alerted text}{fg=red!50!black} % half black/half red for green bg +% \setbeamercolor{alerted text}{fg=beaverouterframe} +% \setbeamercolor{alerted text}{fg=defblockheader} % doesn't stand out enough + + +% Set the 'example' text +\setbeamercolor{example text}{fg=green!50!black} + +\setbeamercolor{structure}{fg=black} + +\setbeamercolor{background canvas}{parent=normal text} +\setbeamercolor{background}{parent=background canvas} + +\setbeamercolor{palette primary}{use=structure,fg=structure.fg} +\setbeamercolor{palette secondary}{use=structure,fg=structure.fg!75!black} +\setbeamercolor{palette tertiary}{use=structure,fg=structure.fg!50!black} +\setbeamercolor{palette quaternary}{fg=black} + +\setbeamercolor{palette sidebar primary}{use=normal text,fg=normal text.fg} +\setbeamercolor{palette sidebar secondary}{use=structure,fg=structure.fg} +\setbeamercolor{palette sidebar tertiary}{use=normal text,fg=normal text.fg} +\setbeamercolor{palette sidebar quaternary}{use=structure,fg=structure.fg} + +\setbeamercolor{math text}{} +\setbeamercolor{math text inlined}{parent=math text} +\setbeamercolor{math text displayed}{parent=math text} + +\setbeamercolor{normal text in math text}{} + +\setbeamercolor{local structure}{parent=structure} + +\setbeamercolor{titlelike}{parent=structure} + +\setbeamercolor{title}{parent=titlelike} +\setbeamercolor{title in head/foot}{parent=palette quaternary} +\setbeamercolor{title in sidebar}{parent=palette sidebar quaternary} + +\setbeamercolor{subtitle}{parent=title} + +\setbeamercolor{author}{} +\setbeamercolor{author in head/foot}{parent=palette primary} +\setbeamercolor{author in sidebar}{use=palette sidebar tertiary,fg=palette sidebar tertiary.fg} + +\setbeamercolor{institute}{} +\setbeamercolor{institute in head/foot}{parent=palette tertiary} +\setbeamercolor{institute in sidebar}{use=palette sidebar tertiary,fg=palette sidebar tertiary.fg} + +\setbeamercolor{date}{} +\setbeamercolor{date in head/foot}{parent=palette secondary} +\setbeamercolor{date in sidebar}{use=palette sidebar tertiary,fg=palette sidebar tertiary.fg} + +\setbeamercolor{titlegraphic}{} + +\setbeamercolor{part name}{} +\setbeamercolor{part title}{parent=titlelike} + +\setbeamercolor{section in toc}{parent=structure} +\setbeamercolor{section in toc shaded}{parent=section in toc} +\setbeamercolor{section in head/foot}{parent=palette tertiary} +\setbeamercolor{section in sidebar}{parent=palette sidebar secondary} +\setbeamercolor{section in sidebar shaded}{use=section in sidebar,fg=section in sidebar.fg!40!bg} +\setbeamercolor{section number projected}{parent=item projected} + +\setbeamercolor{subsection in toc}{} +\setbeamercolor{subsection in toc shaded}{parent=subsection in toc} +\setbeamercolor{subsection in head/foot}{parent=palette secondary} +\setbeamercolor{subsection in sidebar}{parent=palette sidebar primary} +\setbeamercolor{subsection in sidebar shaded}{use=subsection in sidebar,fg=subsection in sidebar.fg!40!bg} +\setbeamercolor{subsection number projected}{parent={subitem projected}} + +\setbeamercolor{subsubsection in toc}{parent=subsection in toc} +\setbeamercolor{subsubsection in toc shaded}{parent=subsubsection in toc} +\setbeamercolor{subsubsection in head/foot}{parent=subsection in head/foot} +\setbeamercolor{subsubsection in sidebar}{parent=subsection in sidebar} +\setbeamercolor{subsubsection in sidebar shaded}{parent=subsection in sidebar shaded} +\setbeamercolor{subsubsection number projected}{parent=subsubitem projected} + +\setbeamercolor{headline}{} +\setbeamercolor{footline}{} + +\setbeamercolor{sidebar}{} +\setbeamercolor{sidebar left}{parent=sidebar} +\setbeamercolor{sidebar right}{parent=sidebar} + +\setbeamercolor{logo}{parent=palette secondary} + +\setbeamercolor{frametitle}{parent=titlelike} +\setbeamercolor{framesubtitle}{parent=frametitle} + +\setbeamercolor{frametitle right}{parent=frametitle} + +\setbeamercolor{caption}{} +\setbeamercolor{caption name}{parent=structure} + +\setbeamercolor{button}{use=local structure,bg=local structure.fg!50!bg,fg=white} +\setbeamercolor{button border}{use=button,fg=button.bg} +\setbeamercolor{navigation symbols}{use=structure,fg=structure.fg!40!bg} +\setbeamercolor{navigation symbols dimmed}{use=structure,fg=structure.fg!20!bg} +\setbeamercolor{mini frame}{parent=section in head/foot} + +% Color expressions are defined in the xcolor package +% +% Ex: Mixture of 40% green, 60% yellow: green!40!yellow +% +% The complement of any color can be obtained by prepending +% a minus sign: -green!40!yellow +% +% One can also combine up to three colors (in differing proportions) +% using the rgb command. For example, the following command combines +% 3 parts of the first color, with 2 parts of the second, and one part +% "red" +% +%\color{rgb:-green!40!yellow,3;green!40!yellow,2;red,1} +% Unfortunately, I don't think this works as an argument to setbeamercolor... +% "Orange" bg=green!30!yellow!30!red +% close to burnt orange: red!75!green +% lightgray is a color, but gray!25!white looks better +% +% A nice pair of greens +% (dark, a little too dark to be under black text...) -red!75!green!50!blue!25 +% (light) -red!75!green!50!blue!25!gray +% +% Some colors are only available via options to the xcolor package, eg. +% x11names,DarkOliveGreen4 +% svgnames, Chartreuse +% dvipsnames, ForestGreen +% +% but beamer does not seem to have any of these. +% +% The base color names which are always available are: +% black +% blue +% brown +% cyan +% darkgray +% gray +% green +% lightgray +% lime +% magenta +% olive +% orange +% pink +% purple +% red +% teal +% violet +% white +% yellow + +% From the beamer user guide, pg. 167 +% Inner color themes only specify the colors of elements used in inner +% themes. Most noticably, they specify the colors used for blocks. +% ... + +% Example color definition +% beamercolorthemedefault.sty:\definecolor{beamer@blendedblue}{rgb}{0.2,0.2,0.7} +% beamercolorthemedefault.sty:\setbeamercolor{structure}{fg=beamer@blendedblue} + +% The greens +% \setbeamercolor{block body}{bg=-red!75!green!50!blue!25!gray} +% \setbeamercolor{block title}{parent=structure,bg=-red!75!green!50!blue!25,fg=-red!75!green!50!blue!25!gray} + +%%% +% Set the block body and title background/foreground colors +%%% +% \setbeamercolor{block body}{bg=flyaddedblue} +% \setbeamercolor{block title}{bg=defblockheader,fg=flyaddedblue} + +% Purplish blues, too dark overall +% \setbeamercolor{block body}{bg=beetleaddedblue3} +% \setbeamercolor{block title}{bg=beetleaddedblue2,fg=beetleaddedblue3} + +% Very light blue greys +% 1. Not enough contrast +% \setbeamercolor{block body}{bg=deflightouter3} +% \setbeamercolor{block title}{bg=deflightouter2,fg=deflightouter3} + +% 2. Not enough contrast +% \setbeamercolor{block body}{bg=deflightouter3} +% \setbeamercolor{block title}{bg=deflightouter1,fg=deflightouter3} + +% 3. Combination of deflightouter and fly. The block bg is +% lighter than the all-beetle color scheme I previously thought was best. +% Currently I like this one the best +\setbeamercolor{block body}{bg=deflightouter3} +\setbeamercolor{block title}{bg=beetleaddedblue2,fg=deflightouter3} + +% 4. Greens. Looks like a highlighter. I don't really trust greens +% on projectors... It's almost too bright/hurts your eyes. +% \setbeamercolor{block body}{bg=defexblock} +% \setbeamercolor{block title}{bg=defaddedgreen,fg=defexblock} + +% This looks pretty good ... it's similar to the greens we had before +% but should be lighter. The blocks are just a little too "mint" colored +% though... +% \setbeamercolor{block body}{bg=defexblock} +% \setbeamercolor{block title}{bg=defexblockheader,fg=defexblock} + +% Pea Soup! +%\setbeamercolor{block body}{bg=defaddedgreen} +%\setbeamercolor{block title}{bg=defexblockheader,fg=defaddedgreen} + + +% Changing these didn't seem to do anything...I had to change the +% 'alerted text' color instead +\setbeamercolor{block body alerted}{} +\setbeamercolor{block body example}{} +\setbeamercolor{block title alerted}{parent=alerted text} +\setbeamercolor{block title example}{parent=example text} + +\setbeamercolor{item}{parent=local structure} +\setbeamercolor{subitem}{parent=item} +\setbeamercolor{subsubitem}{parent=subitem} + +\setbeamercolor{item projected}{parent=item,use=item,fg=white,bg=item.fg} +\setbeamercolor{subitem projected}{parent=item projected} +\setbeamercolor{subsubitem projected}{parent=subitem projected} + +\setbeamercolor{enumerate item}{parent=item} +\setbeamercolor{enumerate subitem}{parent=subitem} +\setbeamercolor{enumerate subsubitem}{parent=subsubitem} + +\setbeamercolor{itemize item}{parent=item} +\setbeamercolor{itemize subitem}{parent=subitem} +\setbeamercolor{itemize subsubitem}{parent=subsubitem} + +\setbeamercolor{itemize/enumerate body}{} +\setbeamercolor{itemize/enumerate subbody}{} +\setbeamercolor{itemize/enumerate subsubbody}{} + +\setbeamercolor{description item}{parent=item} + +\setbeamercolor{bibliography item}{parent=item} + +\setbeamercolor{bibliography entry author}{use=structure,fg=structure.fg} +\setbeamercolor{bibliography entry title}{use=normal text,fg=normal text.fg} +\setbeamercolor{bibliography entry location}{use=structure,fg=structure.fg!65!bg} +\setbeamercolor{bibliography entry note}{use=structure,fg=structure.fg!65!bg} + +\setbeamercolor{separation line}{} + +\setbeamercolor{upper separation line head}{parent=separation line} +\setbeamercolor{middle separation line head}{parent=separation line} +\setbeamercolor{lower separation line head}{parent=separation line} + +\setbeamercolor{upper separation line foot}{parent=separation line} +\setbeamercolor{middle separation line foot}{parent=separation line} +\setbeamercolor{lower separation line foot}{parent=separation line} + +\setbeamercolor{abstract}{} +\setbeamercolor{abstract title}{parent=structure} + +\setbeamercolor{verse}{} + +\setbeamercolor{quotation}{} +\setbeamercolor{quote}{parent=quotation} + +\setbeamercolor{page number in head/foot}{fg=fg!50!bg} + +\setbeamercolor{qed symbol}{parent=structure} + +\mode + diff --git a/my_docs/21/eb_user_21/beamercolorthemeTACC16.sty b/my_docs/21/eb_user_21/beamercolorthemeTACC16.sty deleted file mode 120000 index 58415801b..000000000 --- a/my_docs/21/eb_user_21/beamercolorthemeTACC16.sty +++ /dev/null @@ -1 +0,0 @@ -../../beamer/beamercolorthemeTACC16.sty \ No newline at end of file diff --git a/my_docs/21/eb_user_21/beamercolorthemeTACC16.sty b/my_docs/21/eb_user_21/beamercolorthemeTACC16.sty new file mode 100755 index 000000000..779dde91f --- /dev/null +++ b/my_docs/21/eb_user_21/beamercolorthemeTACC16.sty @@ -0,0 +1,192 @@ +% Copyright 2003 by Till Tantau . +% +% This program can be redistributed and/or modified under the terms +% of the GNU Public License, version 2. + +\mode + +\usepackage{textcase,regexpatch} + +\setbeamertemplate{blocks}[rounded][shadow=true] + + +\definecolor{TACCred}{RGB}{180,13,29} +\definecolor{TACCorange}{RGB}{210,104,43} +\definecolor{TACCblue}{RGB}{108, 134, 191} +\definecolor{TACCgreen}{RGB}{23,106,70} + +% I downloaded a gimp color palette from +% http://maururu.net/2007/latex-beamer-color-palette/ +% Which provides rgb values (I think) for several of the +% default beamer themes. You can open this in gimp by +% opening the Palettes dialog, right-clicking anywhere and choosing +% 'Import Palette'. A color in there called 'default added blue' +% appeared to be approximately what I wanted. It had the triple +% of values 141 145 208. If you double-click on this in the +% palette editor it gives you a bunch of information. You can't +% use these values directly to set a color...it just comes out white. +% I think definecolor is expecting something normalized by 255. Yes! + + +%%% +% Set the normal text color +%%% +\setbeamercolor{normal text}{fg=black} %,bg=white} +\setbeamercolor{example text}{fg=TACCgreen} +\setbeamercolor{alerted text}{fg=TACCorange} + + +\setbeamercolor{structure}{fg=black} +%\setbeamercolor{structure}{fg=black} + +\setbeamercolor{background canvas}{parent=normal text} +\setbeamercolor{background}{parent=background canvas} + +\setbeamercolor{palette primary}{use=structure,fg=structure.fg} +\setbeamercolor{palette secondary}{use=structure,fg=structure.fg!75!black} +\setbeamercolor{palette tertiary}{use=structure,fg=structure.fg!50!black} +\setbeamercolor{palette quaternary}{fg=black} + +\setbeamercolor{palette sidebar primary}{use=normal text,fg=normal text.fg} +\setbeamercolor{palette sidebar secondary}{use=structure,fg=structure.fg} +\setbeamercolor{palette sidebar tertiary}{use=normal text,fg=normal text.fg} +\setbeamercolor{palette sidebar quaternary}{use=structure,fg=structure.fg} + +\setbeamercolor{math text}{} +\setbeamercolor{math text inlined}{parent=math text} +\setbeamercolor{math text displayed}{parent=math text} + +\setbeamercolor{normal text in math text}{} + +\setbeamercolor{local structure}{parent=structure} + +\setbeamercolor{titlelike}{parent=structure} + +\setbeamercolor{title}{parent=titlelike} +\setbeamercolor{title in head/foot}{parent=palette quaternary} +\setbeamercolor{title in sidebar}{parent=palette sidebar quaternary} + +\setbeamercolor{subtitle}{parent=title} + +\setbeamercolor{author}{} +\setbeamercolor{author in head/foot}{parent=palette primary} +\setbeamercolor{author in sidebar}{use=palette sidebar tertiary,fg=palette sidebar tertiary.fg} + +\setbeamercolor{institute}{} +\setbeamercolor{institute in head/foot}{parent=palette tertiary} +\setbeamercolor{institute in sidebar}{use=palette sidebar tertiary,fg=palette sidebar tertiary.fg} + +\setbeamercolor{date}{} +\setbeamercolor{date in head/foot}{parent=palette secondary} +\setbeamercolor{date in sidebar}{use=palette sidebar tertiary,fg=palette sidebar tertiary.fg} + +\setbeamercolor{titlegraphic}{} + +\setbeamercolor{part name}{} +\setbeamercolor{part title}{parent=titlelike} + +\setbeamercolor{section in toc}{parent=structure} +\setbeamercolor{section in toc shaded}{parent=section in toc} +\setbeamercolor{section in head/foot}{parent=palette tertiary} +\setbeamercolor{section in sidebar}{parent=palette sidebar secondary} +\setbeamercolor{section in sidebar shaded}{use=section in sidebar,fg=section in sidebar.fg!40!bg} +\setbeamercolor{section number projected}{parent=item projected} + +\setbeamercolor{subsection in toc}{} +\setbeamercolor{subsection in toc shaded}{parent=subsection in toc} +\setbeamercolor{subsection in head/foot}{parent=palette secondary} +\setbeamercolor{subsection in sidebar}{parent=palette sidebar primary} +\setbeamercolor{subsection in sidebar shaded}{use=subsection in sidebar,fg=subsection in sidebar.fg!40!bg} +\setbeamercolor{subsection number projected}{parent={subitem projected}} + +\setbeamercolor{subsubsection in toc}{parent=subsection in toc} +\setbeamercolor{subsubsection in toc shaded}{parent=subsubsection in toc} +\setbeamercolor{subsubsection in head/foot}{parent=subsection in head/foot} +\setbeamercolor{subsubsection in sidebar}{parent=subsection in sidebar} +\setbeamercolor{subsubsection in sidebar shaded}{parent=subsection in sidebar shaded} +\setbeamercolor{subsubsection number projected}{parent=subsubitem projected} + +\setbeamercolor{headline}{} +\setbeamercolor{footline}{} + +\setbeamercolor{sidebar}{} +\setbeamercolor{sidebar left}{parent=sidebar} +\setbeamercolor{sidebar right}{parent=sidebar} + +\setbeamercolor{logo}{parent=palette secondary} + +\setbeamercolor{frametitle}{parent=titlelike} +\setbeamercolor{framesubtitle}{parent=frametitle} + +\setbeamercolor{frametitle right}{parent=frametitle} + +\setbeamercolor{caption}{} +\setbeamercolor{caption name}{parent=structure} + +\setbeamercolor{button}{use=local structure,bg=local structure.fg!50!bg,fg=white} +\setbeamercolor{button border}{use=button,fg=button.bg} +\setbeamercolor{navigation symbols}{use=structure,fg=structure.fg!40!bg} +\setbeamercolor{navigation symbols dimmed}{use=structure,fg=structure.fg!20!bg} +\setbeamercolor{mini frame}{parent=section in head/foot} + +\setbeamercolor{block body}{fg=black} +\setbeamercolor{block body alerted}{fg=black} +\setbeamercolor{block body example}{fg=black} + +\setbeamercolor{block title}{bg=TACCblue,fg=white} +\setbeamercolor{block title alerted}{bg=TACCred,fg=white} +\setbeamercolor{block title example}{bg=TACCgreen,fg=white} + +\setbeamercolor{item}{parent=local structure} +\setbeamercolor{subitem}{parent=item} +\setbeamercolor{subsubitem}{parent=subitem} + +\setbeamercolor{item projected}{parent=item,use=item,fg=black,bg=item.fg} +\setbeamercolor{subitem projected}{parent=item projected} +\setbeamercolor{subsubitem projected}{parent=subitem projected} + +\setbeamercolor{enumerate item}{parent=item} +\setbeamercolor{enumerate subitem}{parent=subitem} +\setbeamercolor{enumerate subsubitem}{parent=subsubitem} + +\setbeamercolor{itemize item}{parent=item} +\setbeamercolor{itemize subitem}{parent=subitem} +\setbeamercolor{itemize subsubitem}{parent=subsubitem} + +\setbeamercolor{itemize/enumerate body}{} +\setbeamercolor{itemize/enumerate subbody}{} +\setbeamercolor{itemize/enumerate subsubbody}{} + +\setbeamercolor{description item}{parent=item} + +\setbeamercolor{bibliography item}{parent=item} + +\setbeamercolor{bibliography entry author}{use=structure,fg=structure.fg} +\setbeamercolor{bibliography entry title}{use=normal text,fg=normal text.fg} +\setbeamercolor{bibliography entry location}{use=structure,fg=structure.fg!65!bg} +\setbeamercolor{bibliography entry note}{use=structure,fg=structure.fg!65!bg} + +\setbeamercolor{separation line}{} + +\setbeamercolor{upper separation line head}{parent=separation line} +\setbeamercolor{middle separation line head}{parent=separation line} +\setbeamercolor{lower separation line head}{parent=separation line} + +\setbeamercolor{upper separation line foot}{parent=separation line} +\setbeamercolor{middle separation line foot}{parent=separation line} +\setbeamercolor{lower separation line foot}{parent=separation line} + +\setbeamercolor{abstract}{} +\setbeamercolor{abstract title}{parent=structure} + +\setbeamercolor{verse}{} + +\setbeamercolor{quotation}{} +\setbeamercolor{quote}{parent=quotation} + +\setbeamercolor{page number in head/foot}{fg=fg!50!bg} + +\setbeamercolor{qed symbol}{parent=structure} + +\mode + diff --git a/my_docs/21/eb_user_21/beamerfontthemeTACC.sty b/my_docs/21/eb_user_21/beamerfontthemeTACC.sty deleted file mode 120000 index 78e971fb8..000000000 --- a/my_docs/21/eb_user_21/beamerfontthemeTACC.sty +++ /dev/null @@ -1 +0,0 @@ -../../beamer/beamerfontthemeTACC.sty \ No newline at end of file diff --git a/my_docs/21/eb_user_21/beamerfontthemeTACC.sty b/my_docs/21/eb_user_21/beamerfontthemeTACC.sty new file mode 100755 index 000000000..ef9ce1e5e --- /dev/null +++ b/my_docs/21/eb_user_21/beamerfontthemeTACC.sty @@ -0,0 +1,12 @@ +% Copyright 2003 by Till Tantau +% +% This program can be redistributed and/or modified under the terms +% of the GNU Public License, version 2. + +\mode + +\setbeamerfont{frametitle}{parent=structure,size=\LARGE,series=\bfseries} +\setbeamerfont{framesubtitle}{parent=frametitle,size=\small} + +\mode + \ No newline at end of file diff --git a/my_docs/21/eb_user_21/beamerfontthemeTACC16.sty b/my_docs/21/eb_user_21/beamerfontthemeTACC16.sty deleted file mode 120000 index a1f2fa5f9..000000000 --- a/my_docs/21/eb_user_21/beamerfontthemeTACC16.sty +++ /dev/null @@ -1 +0,0 @@ -../../beamer/beamerfontthemeTACC16.sty \ No newline at end of file diff --git a/my_docs/21/eb_user_21/beamerfontthemeTACC16.sty b/my_docs/21/eb_user_21/beamerfontthemeTACC16.sty new file mode 100755 index 000000000..b65271835 --- /dev/null +++ b/my_docs/21/eb_user_21/beamerfontthemeTACC16.sty @@ -0,0 +1,21 @@ +% Copyright 2003 by Till Tantau +% +% This program can be redistributed and/or modified under the terms +% of the GNU Public License, version 2. + +\mode +\setbeamerfont{title}{parent=structure,size=\LARGE,series=\bfseries} +\setbeamerfont{author}{parent=structure,size=\large, series=\normalfont} +\setbeamerfont{frametitle}{parent=structure,size=\LARGE,series=\bfseries} +\setbeamerfont{framesubtitle}{parent=frametitle,size=\small} + +%\usefonttheme{professionalfonts} % using non standard fonts for beamer +%\usefonttheme{serif} % default family is serif +%\usepackage{fontspec} +%\setmainfont{Century Gothic} + +\usepackage{fontspec} +\usepackage{libertine} + +\mode + diff --git a/my_docs/21/eb_user_21/beamerinnerthemeTACC.sty b/my_docs/21/eb_user_21/beamerinnerthemeTACC.sty deleted file mode 120000 index 8d5ae3921..000000000 --- a/my_docs/21/eb_user_21/beamerinnerthemeTACC.sty +++ /dev/null @@ -1 +0,0 @@ -../../beamer/beamerinnerthemeTACC.sty \ No newline at end of file diff --git a/my_docs/21/eb_user_21/beamerinnerthemeTACC.sty b/my_docs/21/eb_user_21/beamerinnerthemeTACC.sty new file mode 100755 index 000000000..29e2bce81 --- /dev/null +++ b/my_docs/21/eb_user_21/beamerinnerthemeTACC.sty @@ -0,0 +1,11 @@ +\mode + +\setbeamertemplate{itemize item}[circle] +\setbeamertemplate{itemize subitem}{{}--{}} +\setbeamertemplate{itemize subsubitem}[circle] +\setbeamertemplate{section in toc}{$\bullet$\hskip.5em\inserttocsection} +%\setbeamertemplate{subsection in toc}{} +\setbeamertemplate{subsubsection in toc}{} + +\mode + diff --git a/my_docs/21/eb_user_21/beamerinnerthemeTACC16.sty b/my_docs/21/eb_user_21/beamerinnerthemeTACC16.sty deleted file mode 120000 index 5955acc99..000000000 --- a/my_docs/21/eb_user_21/beamerinnerthemeTACC16.sty +++ /dev/null @@ -1 +0,0 @@ -../../beamer/beamerinnerthemeTACC16.sty \ No newline at end of file diff --git a/my_docs/21/eb_user_21/beamerinnerthemeTACC16.sty b/my_docs/21/eb_user_21/beamerinnerthemeTACC16.sty new file mode 100755 index 000000000..f7f454e1d --- /dev/null +++ b/my_docs/21/eb_user_21/beamerinnerthemeTACC16.sty @@ -0,0 +1,11 @@ +\mode + +\setbeamertemplate{itemize item}[triangle] +\setbeamertemplate{itemize subitem}[triangle] +\setbeamertemplate{itemize subsubitem}[triangle] +\setbeamertemplate{section in toc}{$\bullet$\hskip.5em\inserttocsection} +%\setbeamertemplate{subsection in toc}{} +\setbeamertemplate{subsubsection in toc}{} + +\mode + diff --git a/my_docs/21/eb_user_21/beamerouterthemeTACC.sty b/my_docs/21/eb_user_21/beamerouterthemeTACC.sty deleted file mode 120000 index da0a45d33..000000000 --- a/my_docs/21/eb_user_21/beamerouterthemeTACC.sty +++ /dev/null @@ -1 +0,0 @@ -../../beamer/beamerouterthemeTACC.sty \ No newline at end of file diff --git a/my_docs/21/eb_user_21/beamerouterthemeTACC.sty b/my_docs/21/eb_user_21/beamerouterthemeTACC.sty new file mode 100755 index 000000000..038580303 --- /dev/null +++ b/my_docs/21/eb_user_21/beamerouterthemeTACC.sty @@ -0,0 +1,196 @@ +% Copyright 2003 by Till Tantau +% +% This program can be redistributed and/or modified under the terms +% of the GNU Public License, version 2. + +\mode + +\setbeamertemplate{frametitle}[default][center] +\addtobeamertemplate{frametitle}{\vskip 4ex minus 4ex}{} + +% Here we define what appears at the bottom of each slide: the "footline". +\setbeamertemplate{footline}{% + \leavevmode% + + % Horizontal line dividing the rest of the slide from the footer? + % hrule goes all the way across... + % \hrule height.3pt% + % With \rule, you can specify the thickness + % \rule[raise-height]{width}{thickness} + \hspace{.025\textwidth}\rule{.95\textwidth}{.5pt} + + \hbox{% + % On the left half of the footer, insert the TACC logo + \begin{minipage}{.5\textwidth}% + \hskip .033\textwidth%Give horizontal space else this will set on the left edge of the slide! + % TACC logo with custom viewport! + \includegraphics[viewport=1 -1 135 35, clip=true, width=.4\textwidth]{figures/TACC_logo} + \end{minipage} + % + \begin{minipage}{.5\textwidth}% + \vskip .023\textheight% + \raggedleft% + \setlength{\rightskip}{.033\textwidth} + % + % If we are not on the first page, insert a page number + % For some reason, insertframenumber is buggy when you have fragile + % slides with verbatim environments in them... it tends to skip numbers + % for some reason! On the other hand, the pagenumber is incremented + % for *every* slide, including transition slides... + \ifnum \thepage>1 + % \insertshorttitle + \insertframenumber + % \insertframenumber/\inserttotalframenumber + % \insertpagenumber + \else % Do a phantom of whatever you do on other pages, so spacing matches + %$\phantom{\insertshorttitle}$ + $\phantom{\insertframenumber}$ + %$\phantom{\insertframenumber/\inserttotalframenumber}$ + %$\phantom{\insertpagenumber}$ + \fi + \hfill\includegraphics[width=.5\textwidth]{figures/UT_logo}% + \end{minipage}% + }% + \vskip .023\textheight% +} + + + + +\ifTACCheadernav + +\usesectionheadtemplate +{\hfill\insertsectionhead} +{\hfill\color{fg!50!bg}\insertsectionhead} + +% Head +\ifbeamer@compress + +% Here we define how the top of the frame looks, the "headline". +\setbeamertemplate{headline} +{% + \ifnum \thepage>1 + \leavevmode% + \begin{beamercolorbox}[wd=.5\paperwidth,ht=2.5ex,dp=1.125ex]{% + section in head/foot}% + \insertsectionnavigationhorizontal{.5\paperwidth}{\hskip0pt plus1filll}{}% + \end{beamercolorbox}% + \begin{beamercolorbox}[wd=.5\paperwidth,ht=2.5ex,dp=1.125ex]{% + subsection in head/foot}% + \insertsubsectionnavigationhorizontal{% + .5\paperwidth}{}{\hskip0pt plus1filll}% + \end{beamercolorbox}% + \fi %\thepage>1 +} + +\else% Not compressed + +\setbeamertemplate{headline} +{% + \ifnum \thepage>1 + \leavevmode% + \@tempdimb=2.4375ex% + \ifnum\beamer@subsectionmax<\beamer@sectionmax% + \multiply\@tempdimb by\beamer@sectionmax% + \else% + \multiply\@tempdimb by\beamer@subsectionmax% + \fi% + \ifdim\@tempdimb>0pt% + \advance\@tempdimb by 1.125ex% + \begin{beamercolorbox}[wd=.5\paperwidth,ht=\@tempdimb]{% + section in head/foot}% + \vbox to\@tempdimb{\vfil\insertsectionnavigation{.5\paperwidth}\vfil}% + \end{beamercolorbox}% + \begin{beamercolorbox}[wd=.5\paperwidth,ht=\@tempdimb]{% + subsection in head/foot}% + \vbox to\@tempdimb{\vfil\insertsubsectionnavigation{.5\paperwidth}\vfil}% + \end{beamercolorbox}% + \fi% + \fi % \thepage>1 +} + +\fi % end if compressed +\fi % TACCheadernav + + +\ifTACCheadertree + +\setbeamertemplate{headline} +{ + \begin{beamercolorbox}[wd=\paperwidth,colsep=1.5pt + ]{upper separation line head} + \end{beamercolorbox} + % + % Place short title + % + \begin{beamercolorbox}[wd=\paperwidth,ht=2.5ex,dp=1.125ex,% + leftskip=.3cm,rightskip=.3cm plus1fil]{title in head/foot} + \usebeamerfont{title in head/foot}\insertshorttitle + \end{beamercolorbox} + + % + % Place section + % + \begin{beamercolorbox}[wd=\paperwidth,ht=2.5ex,dp=1.125ex,% + leftskip=.3cm,rightskip=.3cm plus1fil]{section in head/foot} + \usebeamerfont{section in head/foot}% + %\ifbeamer@tree@showhooks + \setbox\beamer@tempbox=\hbox{\insertsectionhead}% + \ifdim\wd\beamer@tempbox>1pt% + \hskip2pt\raise1.9pt\hbox{\vrule width0.4pt height1.875ex\vrule width 5pt height0.4pt}% + \hskip1pt% + \fi% \ifdim + %\else% + %\hskip6pt% + %\fi% \ifbeamer + \insertsectionhead + \end{beamercolorbox} + +% +% Place subsection +% +\begin{beamercolorbox}[wd=\paperwidth,ht=2.5ex,dp=1.125ex,% + leftskip=.3cm,rightskip=.3cm plus1fil]{subsection in head/foot} + \usebeamerfont{subsection in head/foot}% + %\ifbeamer@tree@showhooks + \setbox\beamer@tempbox=\hbox{\insertsubsectionhead}% + \ifdim\wd\beamer@tempbox>1pt% + \hskip9.4pt\raise1.9pt\hbox{\vrule width0.4pt height1.875ex\vrule width 5pt height0.4pt}% + \hskip1pt% + \fi% \ifdim + %\else% + %\hskip12pt% + %\fi% \ifbeamer + \insertsubsectionhead +\end{beamercolorbox} + +% +% Place final separation box +% + \begin{beamercolorbox}[wd=\paperwidth,colsep=1.5pt + ]{lower separation line head} + \end{beamercolorbox} + + % + % Another matching rule which helps to frame the content + % + \hspace{.025\textwidth}\rule{.95\textwidth}{.5pt} +} +\fi % TACCheadertree + + +% The following command suppresses all navigation symbols. This is +% necessary in the TACC theme, since it overlaps where we want the +% logo to be. +\setbeamertemplate{navigation symbols}{} + +% Align the navigation symbols vertically (still overlaps our logo!) +%\setbeamertemplate{navigation symbols}[vertical]{} + +% Only places the slide-forward and slide-back symbol, but yes, +% this still overlaps our logo! +%\setbeamertemplate{navigation symbols}[only frame symbol]{} + + +\mode + diff --git a/my_docs/21/eb_user_21/beamerouterthemeTACC16.sty b/my_docs/21/eb_user_21/beamerouterthemeTACC16.sty deleted file mode 120000 index 54bd09537..000000000 --- a/my_docs/21/eb_user_21/beamerouterthemeTACC16.sty +++ /dev/null @@ -1 +0,0 @@ -../../beamer/beamerouterthemeTACC16.sty \ No newline at end of file diff --git a/my_docs/21/eb_user_21/beamerouterthemeTACC16.sty b/my_docs/21/eb_user_21/beamerouterthemeTACC16.sty new file mode 100755 index 000000000..d5e6388c7 --- /dev/null +++ b/my_docs/21/eb_user_21/beamerouterthemeTACC16.sty @@ -0,0 +1,312 @@ +% Antonio Gomez (agomez@tacc.utexas.edu) +% 4-20-17. Added option to put the footer on the right side + + + +\mode + +\usepackage{xcolor} +\usepackage{graphicx} +\usepackage{etoolbox} + + + +% This theme accepts the "rightfooter" option +% When used, it will put the TACC logo at the bottom of the slide on the right side +% By default, it goes to the left + +\xifaspectratio{ + {169} { + \pgfdeclareimage[width=\paperwidth]{titlebackground}{./figures/master169.jpg} + \if@rightfooterOption + \pgfdeclareimage[width=\paperwidth]{background}{./figures/secondary_right169.jpg} +\else + \pgfdeclareimage[width=\paperwidth]{background}{./figures/secondary169.jpg} +\fi +} +}[ +\pgfdeclareimage[width=\paperwidth]{titlebackground}{./figures/master.jpg} + \if@rightfooterOption + \pgfdeclareimage[width=\paperwidth]{background}{./figures/secondary_right.jpg} +\else + \pgfdeclareimage[width=\paperwidth]{background}{./figures/secondary.jpg} +\fi +] + +\setbeamertemplate{background canvas}{% +\xifaspectratio{ + {169} { + \ifnum\c@framenumber=1 % + \begin{picture}(0,0) + \put(-3,-256){% + \pgfuseimage{titlebackground} + } + \end{picture} + \else% + \begin{picture}(0,0) + \put(-3,-260){% + \pgfuseimage{background} + } + \end{picture} + \fi + } + {43} { + \ifnum\c@framenumber=1 % + \begin{picture}(0,0) + \put(-4,-274){% + \pgfuseimage{titlebackground} + } + \end{picture} + \else% + \begin{picture}(0,0) + \put(-4,-274){% + \pgfuseimage{background} + } + \end{picture} + \fi + } +} +} + + + +%\setbeamertemplate{background canvas}{% +% % On title page +% \ifnum\c@framenumber=1 % +% \begin{picture}(0,0) +% \put(0,-253){% +% \pgfuseimage{titlebackground} +% } +% \end{picture} +% +% \else% +% \xifaspectratio{ +% {169} { +% % Other frames background +% \begin{picture}(0,0) +% \put(-4,-260){% +% \pgfuseimage{background} +% } +% \end{picture} +% } +% }[ +% % Other frames background +% \begin{picture}(0,0) +% \put(-4,-274){% +% \pgfuseimage{background} +% } +% \end{picture} +% ] +% \fi% +%} + + +\setbeamertemplate{title page}{ +\vspace{40pt} +\begin{center} +\usebeamerfont{title} {\huge \inserttitle}\par +\vspace{4ex} +\usebeamerfont{author} { + \insertauthor +}\par +\vspace{2ex} +\usebeamerfont{institute}{ + \insertinstitute +} \par +\vspace{2ex} +\usebeamerfont{date}{ + \insertdate +} +\end{center} +} + + +\setbeamertemplate{frametitle}[default][center] +\setbeamertemplate{frametitle}{ + \makeatletter + \regexpatchcmd{\insertframetitle} + {(\c{usebeamertemplate}.*)\c{fi}} + {\c{NoCaseChange}\cB\{\1\cE\}\c{fi}} + {}{}% + \makeatother + \vskip1ex + \insertframetitle +} + +% Here we define what appears at the bottom of each slide: the "footline". +\setbeamertemplate{footline}{% + \leavevmode% + + % Horizontal line dividing the rest of the slide from the footer? + % hrule goes all the way across... + % \hrule height.3pt% + % With \rule, you can specify the thickness + % \rule[raise-height]{width}{thickness} + % \hspace{.025\textwidth}\rule{.95\textwidth}{.5pt} + + \hbox{% + \ifnum \thepage>1 + \if@rightfooterOption + \begin{minipage}{.2\textwidth}% + \hskip .05\textwidth%Give horizontal space else this will set on the left edge of the slide! + \end{minipage} + \else + \begin{minipage}{.4\textwidth}% + \hskip .05\textwidth%Give horizontal space else this will set on the left edge of the slide! + \end{minipage} + \fi + + + \begin{minipage}{\textwidth}% + % \vskip .023\textheight% + \raggedleft% + \setlength{\rightskip}{\textwidth} + \if@rightfooterOption + \hbox{% + \begin{beamercolorbox}[wd=0.7\textwidth,ht=2.25ex,dp=1ex,left]{author in head/foot}% + \insertshorttitle{} \hskip .01\textwidth | \hskip .01\textwidth \insertdate{} \hskip .01\textwidth | \hskip .01\textwidth \insertframenumber{} + \end{beamercolorbox}% + } + \else + \hbox{% + \begin{beamercolorbox}[wd=0.5\textwidth,ht=2.25ex,dp=1ex,left]{author in head/foot}% + \insertshorttitle{} \hskip .01\textwidth | \hskip .01\textwidth \insertdate{} \hskip .01\textwidth | \hskip .01\textwidth \insertframenumber{} + \end{beamercolorbox}% + } + \fi + + \end{minipage}% + \begin{minipage}{.05\textwidth}% + \end{minipage}% + \fi %\thepage>1 + }% + \vskip .023\textheight% + +} + + + + +\ifTACCheadernav + +\usesectionheadtemplate +{\hfill\insertsectionhead} +{\hfill\color{fg!50!bg}\insertsectionhead} + +% Head +\ifbeamer@compress + +% Here we define how the top of the frame looks, the "headline". +\setbeamertemplate{headline} +{% + \ifnum \thepage>1 + \leavevmode% + \begin{beamercolorbox}[wd=.5\paperwidth,ht=2.5ex,dp=1.125ex]{% + section in head/foot}% + \insertsectionnavigationhorizontal{.5\paperwidth}{\hskip0pt plus1filll}{}% + \end{beamercolorbox}% + \begin{beamercolorbox}[wd=.5\paperwidth,ht=2.5ex,dp=1.125ex]{% + subsection in head/foot}% + \insertsubsectionnavigationhorizontal{% + .5\paperwidth}{}{\hskip0pt plus1filll}% + \end{beamercolorbox}% + \fi %\thepage>1 +} + +\else% Not compressed + +\setbeamertemplate{headline} +{% + \ifnum \thepage>1 + \leavevmode% + \@tempdimb=2.4375ex% + \ifnum\beamer@subsectionmax<\beamer@sectionmax% + \multiply\@tempdimb by\beamer@sectionmax% + \else% + \multiply\@tempdimb by\beamer@subsectionmax% + \fi% + \ifdim\@tempdimb>0pt% + \advance\@tempdimb by 1.125ex% + \begin{beamercolorbox}[wd=.5\paperwidth,ht=\@tempdimb]{% + section in head/foot}% + \vbox to\@tempdimb{\vfil\insertsectionnavigation{.5\paperwidth}\vfil}% + \end{beamercolorbox}% + \begin{beamercolorbox}[wd=.5\paperwidth,ht=\@tempdimb]{% + subsection in head/foot}% + \vbox to\@tempdimb{\vfil\insertsubsectionnavigation{.5\paperwidth}\vfil}% + \end{beamercolorbox}% + \fi% + \fi % \thepage>1 +} + +\fi % end if compressed +\fi % TACCheadernav + + +\ifTACCheadertree + +\setbeamertemplate{headline} +{ + \begin{beamercolorbox}[wd=\paperwidth,colsep=1.5pt]{upper separation line head} + \end{beamercolorbox} + % + % Place short title + % + \begin{beamercolorbox}[wd=\paperwidth,ht=2.5ex,dp=1.125ex,% + leftskip=.3cm,rightskip=.3cm plus1fil]{title in head/foot} + \usebeamerfont{title in head/foot}\insertshorttitle + \end{beamercolorbox} + + % + % Place section + % + \begin{beamercolorbox}[wd=\paperwidth,ht=2.5ex,dp=1.125ex,% + leftskip=.3cm,rightskip=.3cm plus1fil]{section in head/foot} + \usebeamerfont{section in head/foot}% + %\ifbeamer@tree@showhooks + \setbox\beamer@tempbox=\hbox{\insertsectionhead}% + \ifdim\wd\beamer@tempbox>1pt% + \hskip2pt\raise1.9pt\hbox{\vrule width0.4pt height1.875ex\vrule width 5pt height0.4pt}% + \hskip1pt% + \fi + \insertsectionhead + \end{beamercolorbox} + +% +% Place subsection +% +\begin{beamercolorbox}[wd=\paperwidth,ht=2.5ex,dp=1.125ex,% + leftskip=.3cm,rightskip=.3cm plus1fil]{subsection in head/foot} + \usebeamerfont{subsection in head/foot}% + %\ifbeamer@tree@showhooks + \setbox\beamer@tempbox=\hbox{\insertsubsectionhead}% + \ifdim\wd\beamer@tempbox>1pt% + \hskip9.4pt\raise1.9pt\hbox{\vrule width0.4pt height1.875ex\vrule width 5pt height0.4pt}% + \hskip1pt% + \fi + \insertsubsectionhead +\end{beamercolorbox} + +% +% Place final separation box +% + \begin{beamercolorbox}[wd=\paperwidth,colsep=1.5pt + ]{lower separation line head} + \end{beamercolorbox} + + % + % Another matching rule which helps to frame the content + % + \hspace{.025\textwidth}\rule{.95\textwidth}{.5pt} +} +\fi % TACCheadertree + + +% The following command suppresses all navigation symbols. This is +% necessary in the TACC theme, since it overlaps where we want the +% logo to be. +\setbeamertemplate{navigation symbols}{} + + +\mode + diff --git a/my_docs/21/eb_user_21/beamerthemeTACC.sty b/my_docs/21/eb_user_21/beamerthemeTACC.sty deleted file mode 120000 index 5c339abd4..000000000 --- a/my_docs/21/eb_user_21/beamerthemeTACC.sty +++ /dev/null @@ -1 +0,0 @@ -../../beamer/beamerthemeTACC.sty \ No newline at end of file diff --git a/my_docs/21/eb_user_21/beamerthemeTACC.sty b/my_docs/21/eb_user_21/beamerthemeTACC.sty new file mode 100755 index 000000000..c6a1b1269 --- /dev/null +++ b/my_docs/21/eb_user_21/beamerthemeTACC.sty @@ -0,0 +1,26 @@ +%% TACC theme for beamer + +\newif\ifTACCheadernav +\DeclareOption{headernav}{\global\TACCheadernavtrue} + +\newif\ifTACCheadertree +\DeclareOption{headertree}{\global\TACCheadertreetrue} +\ProcessOptions + +\mode + +\usefonttheme{TACC} +\usecolortheme{TACC} +\useinnertheme{TACC} +\useoutertheme{TACC} + +\mode + + +\newcommand{\event}[1]{% + \makeatletter% + \def\TACC@eventname{#1}% + \makeatother} + +\newcommand{\sectionframe}[1]{\section{#1}\frame{\Large\textbf{#1}}} +\newcommand{\subsectionframe}[1]{\subsection{#1}\frame{\large\textbf{#1}}} diff --git a/my_docs/21/eb_user_21/beamerthemeTACC16.sty b/my_docs/21/eb_user_21/beamerthemeTACC16.sty deleted file mode 120000 index 7a9d4d296..000000000 --- a/my_docs/21/eb_user_21/beamerthemeTACC16.sty +++ /dev/null @@ -1 +0,0 @@ -../../beamer/beamerthemeTACC16.sty \ No newline at end of file diff --git a/my_docs/21/eb_user_21/beamerthemeTACC16.sty b/my_docs/21/eb_user_21/beamerthemeTACC16.sty new file mode 100755 index 000000000..b522d0207 --- /dev/null +++ b/my_docs/21/eb_user_21/beamerthemeTACC16.sty @@ -0,0 +1,61 @@ +%% TACC theme for beamer + + +\newif\if@rightfooterOption +\@rightfooterOptionfalse +\DeclareOption{rightfooter}{\@rightfooterOptiontrue} +\ProcessOptions + + +\newif\ifTACCheadernav +\DeclareOption{headernav}{\global\TACCheadernavtrue} + +\newif\ifTACCheadertree +\DeclareOption{headertree}{\global\TACCheadertreetrue} +\ProcessOptions + +\usepackage{xparse} +\ExplSyntaxOn +\NewDocumentCommand{\ifaspectratio}{mmm} + { + % Recover the option from those passed to the class + \keys_set:nf { zunbeltz/beameroptions } { \use:c { opt@beamer.cls } } + \str_if_eq:nVTF { #1 } \l_zunbeltz_aspectratio_tl { #2 } { #3 } + } +\NewDocumentCommand{\xifaspectratio}{mO{}} + { + % Recover the option from those passed to the class + \keys_set:nf { zunbeltz/beameroptions } { \use:c { opt@beamer.cls } } + \str_case:VnF \l_zunbeltz_aspectratio_tl { #1 } { #2 } + } +% We need to define only one key, the other are treated as `unknown' +\keys_define:nn { zunbeltz/beameroptions } + { + aspectratio .tl_set:N = \l_zunbeltz_aspectratio_tl, + aspectratio .initial:n = 43, + unknown .code:n = {}, + } + +% Generate the variants we need +\cs_generate_variant:Nn \keys_set:nn { nf } +\cs_generate_variant:Nn \str_if_eq:nnTF { nV } +\cs_generate_variant:Nn \str_case:nnF { V } +\ExplSyntaxOff + +\mode + +\usefonttheme{TACC16} +\useinnertheme{TACC16} +\useoutertheme{TACC16} +\usecolortheme{TACC16} + +\mode + + +\newcommand{\event}[1]{% + \makeatletter% + \def\TACC@eventname{#1}% + \makeatother} + +\newcommand{\sectionframe}[1]{\section{#1}\frame{\Large\textbf{#1}}} +\newcommand{\subsectionframe}[1]{\subsection{#1}\frame{\large\textbf{#1}}} diff --git a/my_docs/21/eb_user_21/figures b/my_docs/21/eb_user_21/figures deleted file mode 120000 index ddafd8974..000000000 --- a/my_docs/21/eb_user_21/figures +++ /dev/null @@ -1 +0,0 @@ -../../beamer/figures \ No newline at end of file diff --git a/my_docs/21/eb_user_21/figures/TACC_logo.pdf b/my_docs/21/eb_user_21/figures/TACC_logo.pdf new file mode 100755 index 000000000..c018a20cb Binary files /dev/null and b/my_docs/21/eb_user_21/figures/TACC_logo.pdf differ diff --git a/my_docs/21/eb_user_21/figures/UT_logo.pdf b/my_docs/21/eb_user_21/figures/UT_logo.pdf new file mode 100755 index 000000000..d5b42e752 Binary files /dev/null and b/my_docs/21/eb_user_21/figures/UT_logo.pdf differ diff --git a/my_docs/21/eb_user_21/figures/cc.png b/my_docs/21/eb_user_21/figures/cc.png new file mode 100644 index 000000000..8a532ff8f Binary files /dev/null and b/my_docs/21/eb_user_21/figures/cc.png differ diff --git a/my_docs/21/eb_user_21/figures/isa.png b/my_docs/21/eb_user_21/figures/isa.png new file mode 100644 index 000000000..f95d985e7 Binary files /dev/null and b/my_docs/21/eb_user_21/figures/isa.png differ diff --git a/my_docs/21/eb_user_21/figures/master.jpg b/my_docs/21/eb_user_21/figures/master.jpg new file mode 100644 index 000000000..f5c56c04a Binary files /dev/null and b/my_docs/21/eb_user_21/figures/master.jpg differ diff --git a/my_docs/21/eb_user_21/figures/master169.jpg b/my_docs/21/eb_user_21/figures/master169.jpg new file mode 100644 index 000000000..b215776eb Binary files /dev/null and b/my_docs/21/eb_user_21/figures/master169.jpg differ diff --git a/my_docs/21/eb_user_21/figures/master169.png b/my_docs/21/eb_user_21/figures/master169.png new file mode 100644 index 000000000..bc5c0ed12 Binary files /dev/null and b/my_docs/21/eb_user_21/figures/master169.png differ diff --git a/my_docs/21/eb_user_21/figures/secondary.jpg b/my_docs/21/eb_user_21/figures/secondary.jpg new file mode 100644 index 000000000..d905a95c9 Binary files /dev/null and b/my_docs/21/eb_user_21/figures/secondary.jpg differ diff --git a/my_docs/21/eb_user_21/figures/secondary169.jpg b/my_docs/21/eb_user_21/figures/secondary169.jpg new file mode 100644 index 000000000..4eb017957 Binary files /dev/null and b/my_docs/21/eb_user_21/figures/secondary169.jpg differ diff --git a/my_docs/21/eb_user_21/figures/secondary169.png b/my_docs/21/eb_user_21/figures/secondary169.png new file mode 100644 index 000000000..cb9060a56 Binary files /dev/null and b/my_docs/21/eb_user_21/figures/secondary169.png differ diff --git a/my_docs/21/eb_user_21/figures/secondary_right.jpg b/my_docs/21/eb_user_21/figures/secondary_right.jpg new file mode 100644 index 000000000..f25f93a58 Binary files /dev/null and b/my_docs/21/eb_user_21/figures/secondary_right.jpg differ diff --git a/my_docs/21/eb_user_21/figures/secondary_right169.jpg b/my_docs/21/eb_user_21/figures/secondary_right169.jpg new file mode 100644 index 000000000..567a1078f Binary files /dev/null and b/my_docs/21/eb_user_21/figures/secondary_right169.jpg differ diff --git a/my_docs/21/eb_user_21/themes b/my_docs/21/eb_user_21/themes deleted file mode 120000 index a98530730..000000000 --- a/my_docs/21/eb_user_21/themes +++ /dev/null @@ -1 +0,0 @@ -../../beamer/themes \ No newline at end of file diff --git a/my_docs/21/eb_user_21/themes/beamercolorthemeTACC16.sty b/my_docs/21/eb_user_21/themes/beamercolorthemeTACC16.sty new file mode 100644 index 000000000..248ae8cb6 --- /dev/null +++ b/my_docs/21/eb_user_21/themes/beamercolorthemeTACC16.sty @@ -0,0 +1,193 @@ +% Copyright 2003 by Till Tantau . +% +% This program can be redistributed and/or modified under the terms +% of the GNU Public License, version 2. + +\mode + +\usepackage{textcase,regexpatch} + +\setbeamertemplate{blocks}[rounded][shadow=true] + + +\definecolor{TACCred}{RGB}{180,13,29} +\definecolor{TACCorange}{RGB}{210,104,43} +\definecolor{TACCblue}{RGB}{21,77,122} +%\definecolor{TACCgreen}{RGB}{30,134,104} +\definecolor{TACCgreen}{RGB}{49,168,51} + +% I downloaded a gimp color palette from +% http://maururu.net/2007/latex-beamer-color-palette/ +% Which provides rgb values (I think) for several of the +% default beamer themes. You can open this in gimp by +% opening the Palettes dialog, right-clicking anywhere and choosing +% 'Import Palette'. A color in there called 'default added blue' +% appeared to be approximately what I wanted. It had the triple +% of values 141 145 208. If you double-click on this in the +% palette editor it gives you a bunch of information. You can't +% use these values directly to set a color...it just comes out white. +% I think definecolor is expecting something normalized by 255. Yes! + + +%%% +% Set the normal text color +%%% +\setbeamercolor{normal text}{fg=black} %,bg=white} +\setbeamercolor{example text}{fg=TACCgreen} +\setbeamercolor{alerted text}{fg=TACCorange} + + +\setbeamercolor{structure}{fg=black} +%\setbeamercolor{structure}{fg=black} + +\setbeamercolor{background canvas}{parent=normal text} +\setbeamercolor{background}{parent=background canvas} + +\setbeamercolor{palette primary}{use=structure,fg=structure.fg} +\setbeamercolor{palette secondary}{use=structure,fg=structure.fg!75!black} +\setbeamercolor{palette tertiary}{use=structure,fg=structure.fg!50!black} +\setbeamercolor{palette quaternary}{fg=black} + +\setbeamercolor{palette sidebar primary}{use=normal text,fg=normal text.fg} +\setbeamercolor{palette sidebar secondary}{use=structure,fg=structure.fg} +\setbeamercolor{palette sidebar tertiary}{use=normal text,fg=normal text.fg} +\setbeamercolor{palette sidebar quaternary}{use=structure,fg=structure.fg} + +\setbeamercolor{math text}{} +\setbeamercolor{math text inlined}{parent=math text} +\setbeamercolor{math text displayed}{parent=math text} + +\setbeamercolor{normal text in math text}{} + +\setbeamercolor{local structure}{parent=structure} + +\setbeamercolor{titlelike}{parent=structure} + +\setbeamercolor{title}{parent=titlelike} +\setbeamercolor{title in head/foot}{parent=palette quaternary} +\setbeamercolor{title in sidebar}{parent=palette sidebar quaternary} + +\setbeamercolor{subtitle}{parent=title} + +\setbeamercolor{author}{} +\setbeamercolor{author in head/foot}{parent=palette primary} +\setbeamercolor{author in sidebar}{use=palette sidebar tertiary,fg=palette sidebar tertiary.fg} + +\setbeamercolor{institute}{} +\setbeamercolor{institute in head/foot}{parent=palette tertiary} +\setbeamercolor{institute in sidebar}{use=palette sidebar tertiary,fg=palette sidebar tertiary.fg} + +\setbeamercolor{date}{} +\setbeamercolor{date in head/foot}{parent=palette secondary} +\setbeamercolor{date in sidebar}{use=palette sidebar tertiary,fg=palette sidebar tertiary.fg} + +\setbeamercolor{titlegraphic}{} + +\setbeamercolor{part name}{} +\setbeamercolor{part title}{parent=titlelike} + +\setbeamercolor{section in toc}{parent=structure} +\setbeamercolor{section in toc shaded}{parent=section in toc} +\setbeamercolor{section in head/foot}{parent=palette tertiary} +\setbeamercolor{section in sidebar}{parent=palette sidebar secondary} +\setbeamercolor{section in sidebar shaded}{use=section in sidebar,fg=section in sidebar.fg!40!bg} +\setbeamercolor{section number projected}{parent=item projected} + +\setbeamercolor{subsection in toc}{} +\setbeamercolor{subsection in toc shaded}{parent=subsection in toc} +\setbeamercolor{subsection in head/foot}{parent=palette secondary} +\setbeamercolor{subsection in sidebar}{parent=palette sidebar primary} +\setbeamercolor{subsection in sidebar shaded}{use=subsection in sidebar,fg=subsection in sidebar.fg!40!bg} +\setbeamercolor{subsection number projected}{parent={subitem projected}} + +\setbeamercolor{subsubsection in toc}{parent=subsection in toc} +\setbeamercolor{subsubsection in toc shaded}{parent=subsubsection in toc} +\setbeamercolor{subsubsection in head/foot}{parent=subsection in head/foot} +\setbeamercolor{subsubsection in sidebar}{parent=subsection in sidebar} +\setbeamercolor{subsubsection in sidebar shaded}{parent=subsection in sidebar shaded} +\setbeamercolor{subsubsection number projected}{parent=subsubitem projected} + +\setbeamercolor{headline}{} +\setbeamercolor{footline}{} + +\setbeamercolor{sidebar}{} +\setbeamercolor{sidebar left}{parent=sidebar} +\setbeamercolor{sidebar right}{parent=sidebar} + +\setbeamercolor{logo}{parent=palette secondary} + +\setbeamercolor{frametitle}{parent=titlelike} +\setbeamercolor{framesubtitle}{parent=frametitle} + +\setbeamercolor{frametitle right}{parent=frametitle} + +\setbeamercolor{caption}{} +\setbeamercolor{caption name}{parent=structure} + +\setbeamercolor{button}{use=local structure,bg=local structure.fg!50!bg,fg=white} +\setbeamercolor{button border}{use=button,fg=button.bg} +\setbeamercolor{navigation symbols}{use=structure,fg=structure.fg!40!bg} +\setbeamercolor{navigation symbols dimmed}{use=structure,fg=structure.fg!20!bg} +\setbeamercolor{mini frame}{parent=section in head/foot} + +\setbeamercolor{block body}{fg=black} +\setbeamercolor{block body alerted}{fg=black} +\setbeamercolor{block body example}{fg=black} + +\setbeamercolor{block title}{bg=TACCblue,fg=white} +\setbeamercolor{block title alerted}{bg=TACCred,fg=white} +\setbeamercolor{block title example}{bg=TACCgreen,fg=white} + +\setbeamercolor{item}{parent=local structure} +\setbeamercolor{subitem}{parent=item} +\setbeamercolor{subsubitem}{parent=subitem} + +\setbeamercolor{item projected}{parent=item,use=item,fg=black,bg=item.fg} +\setbeamercolor{subitem projected}{parent=item projected} +\setbeamercolor{subsubitem projected}{parent=subitem projected} + +\setbeamercolor{enumerate item}{parent=item} +\setbeamercolor{enumerate subitem}{parent=subitem} +\setbeamercolor{enumerate subsubitem}{parent=subsubitem} + +\setbeamercolor{itemize item}{parent=item} +\setbeamercolor{itemize subitem}{parent=subitem} +\setbeamercolor{itemize subsubitem}{parent=subsubitem} + +\setbeamercolor{itemize/enumerate body}{} +\setbeamercolor{itemize/enumerate subbody}{} +\setbeamercolor{itemize/enumerate subsubbody}{} + +\setbeamercolor{description item}{parent=item} + +\setbeamercolor{bibliography item}{parent=item} + +\setbeamercolor{bibliography entry author}{use=structure,fg=structure.fg} +\setbeamercolor{bibliography entry title}{use=normal text,fg=normal text.fg} +\setbeamercolor{bibliography entry location}{use=structure,fg=structure.fg!65!bg} +\setbeamercolor{bibliography entry note}{use=structure,fg=structure.fg!65!bg} + +\setbeamercolor{separation line}{} + +\setbeamercolor{upper separation line head}{parent=separation line} +\setbeamercolor{middle separation line head}{parent=separation line} +\setbeamercolor{lower separation line head}{parent=separation line} + +\setbeamercolor{upper separation line foot}{parent=separation line} +\setbeamercolor{middle separation line foot}{parent=separation line} +\setbeamercolor{lower separation line foot}{parent=separation line} + +\setbeamercolor{abstract}{} +\setbeamercolor{abstract title}{parent=structure} + +\setbeamercolor{verse}{} + +\setbeamercolor{quotation}{} +\setbeamercolor{quote}{parent=quotation} + +\setbeamercolor{page number in head/foot}{fg=fg!50!bg} + +\setbeamercolor{qed symbol}{parent=structure} + +\mode + diff --git a/my_docs/21/eb_user_21/themes/beamerfontthemeTACC16.sty b/my_docs/21/eb_user_21/themes/beamerfontthemeTACC16.sty new file mode 100644 index 000000000..d0fc325cc --- /dev/null +++ b/my_docs/21/eb_user_21/themes/beamerfontthemeTACC16.sty @@ -0,0 +1,21 @@ +% Copyright 2003 by Till Tantau +% +% This program can be redistributed and/or modified under the terms +% of the GNU Public License, version 2. + +\mode +\setbeamerfont{title}{parent=structure,size=\LARGE,series=\bfseries} +\setbeamerfont{author}{parent=structure,size=\large, series=\normalfont} +\setbeamerfont{frametitle}{parent=structure,size=\LARGE,series=\bfseries} +\setbeamerfont{framesubtitle}{parent=frametitle,size=\small} + +%\usefonttheme{professionalfonts} % using non standard fonts for beamer +%\usefonttheme{serif} % default family is serif +%\usepackage{fontspec} +%\setmainfont{Century Gothic} + +%\usepackage{fontspec} +\usepackage{libertine} + +\mode + diff --git a/my_docs/21/eb_user_21/themes/beamerinnerthemeTACC16.sty b/my_docs/21/eb_user_21/themes/beamerinnerthemeTACC16.sty new file mode 100644 index 000000000..f7f454e1d --- /dev/null +++ b/my_docs/21/eb_user_21/themes/beamerinnerthemeTACC16.sty @@ -0,0 +1,11 @@ +\mode + +\setbeamertemplate{itemize item}[triangle] +\setbeamertemplate{itemize subitem}[triangle] +\setbeamertemplate{itemize subsubitem}[triangle] +\setbeamertemplate{section in toc}{$\bullet$\hskip.5em\inserttocsection} +%\setbeamertemplate{subsection in toc}{} +\setbeamertemplate{subsubsection in toc}{} + +\mode + diff --git a/my_docs/21/eb_user_21/themes/beamerouterthemeTACC16-169.sty b/my_docs/21/eb_user_21/themes/beamerouterthemeTACC16-169.sty new file mode 100644 index 000000000..c62f9ed04 --- /dev/null +++ b/my_docs/21/eb_user_21/themes/beamerouterthemeTACC16-169.sty @@ -0,0 +1,247 @@ +% Copyright 2003 by Till Tantau +% +% This program can be redistributed and/or modified under the terms +% of the GNU Public License, version 2. + +\mode + +\usepackage{xcolor} +\usepackage{graphicx} +\usepackage{etoolbox} + +\pgfdeclareimage[width=\paperwidth]{titlebackground}{./figures/master169.png} +\pgfdeclareimage[width=\paperwidth]{background}{./figures/secondary169.png} + +\setbeamertemplate{background canvas}{% + \ifnum\c@framenumber=1% + \begin{picture}(0,0) + \put(-0.15,-250){% + \pgfuseimage{titlebackground} + } + %\put(0,-130.7){% + + %\begin{minipage}[b][45mm][t]{\textwidth}%{226mm} + %\begin{center} + % \usebeamerfont{title}{\MakeTextUppercase{\inserttitle}\par} + %\vspace{2ex} + %\usebeamerfont{author}{\insertauthor} + % \end{center} + %\end{minipage} + %} + \end{picture} + % On title page + \else% + % Other frames background + \begin{picture}(0,0) + \put(-0.15,-255.55){% + \pgfuseimage{background} + } + \end{picture} + \fi% +} + + +\setbeamertemplate{title page}{ +\vspace{40pt} +\begin{center} +\usebeamerfont{title} {\huge \inserttitle}\par +\vspace{4ex} +\usebeamerfont{author} { + \insertauthor +}\par +\vspace{2ex} +\usebeamerfont{institute}{ + \insertinstitute +} \par +\vspace{2ex} +\usebeamerfont{date}{ + \insertdate +} +\end{center} +} + + +\setbeamertemplate{frametitle}[default][center] +\setbeamertemplate{frametitle}{ + \makeatletter + \regexpatchcmd{\insertframetitle} + {(\c{usebeamertemplate}.*)\c{fi}} + {\c{NoCaseChange}\cB\{\1\cE\}\c{fi}} + {}{}% + \makeatother + \vskip1ex + \insertframetitle +} + +% Here we define what appears at the bottom of each slide: the "footline". +\setbeamertemplate{footline}{% + \leavevmode% + + % Horizontal line dividing the rest of the slide from the footer? + % hrule goes all the way across... + % \hrule height.3pt% + % With \rule, you can specify the thickness + % \rule[raise-height]{width}{thickness} + % \hspace{.025\textwidth}\rule{.95\textwidth}{.5pt} + + \hbox{% + \ifnum \thepage>1 + % On the left half of the footer, insert the TACC of + \begin{minipage}{.2\textwidth}% + \hskip .05\textwidth%Give horizontal space else this will set on the left edge of the slide! + % \includegraphics[width=.8\textwidth]{TACC_logo.png} + \end{minipage} + + + \begin{minipage}{\textwidth}% + % \vskip .023\textheight% + \raggedleft% + \setlength{\rightskip}{\textwidth} + \hbox{% + \begin{beamercolorbox}[wd=0.7\textwidth,ht=2.25ex,dp=1ex,left]{author in head/foot}% + \insertshorttitle{} \hskip .01\textwidth | \hskip .01\textwidth \insertdate{} \hskip .01\textwidth | \hskip .01\textwidth \insertframenumber{} + \end{beamercolorbox}% + } + + % + % If we are not on the first page, insert a page number + % For some reason, insertframenumber is buggy when you have fragile + % slides with verbatim environments in them... it tends to skip numbers + % for some reason! On the other hand, the pagenumber is incremented + % for *every* slide, including transition slides... + % \hfill\includegraphics[width=\textwidth]{tacc_ut.png} + \end{minipage}% + \begin{minipage}{.05\textwidth}% + \end{minipage}% + \fi %\thepage>1 + }% + \vskip .023\textheight% + +} + + + + +\ifTACCheadernav + +\usesectionheadtemplate +{\hfill\insertsectionhead} +{\hfill\color{fg!50!bg}\insertsectionhead} + +% Head +\ifbeamer@compress + +% Here we define how the top of the frame looks, the "headline". +\setbeamertemplate{headline} +{% + \ifnum \thepage>1 + \leavevmode% + \begin{beamercolorbox}[wd=.5\paperwidth,ht=2.5ex,dp=1.125ex]{% + section in head/foot}% + \insertsectionnavigationhorizontal{.5\paperwidth}{\hskip0pt plus1filll}{}% + \end{beamercolorbox}% + \begin{beamercolorbox}[wd=.5\paperwidth,ht=2.5ex,dp=1.125ex]{% + subsection in head/foot}% + \insertsubsectionnavigationhorizontal{% + .5\paperwidth}{}{\hskip0pt plus1filll}% + \end{beamercolorbox}% + \fi %\thepage>1 +} + +\else% Not compressed + +\setbeamertemplate{headline} +{% + \ifnum \thepage>1 + \leavevmode% + \@tempdimb=2.4375ex% + \ifnum\beamer@subsectionmax<\beamer@sectionmax% + \multiply\@tempdimb by\beamer@sectionmax% + \else% + \multiply\@tempdimb by\beamer@subsectionmax% + \fi% + \ifdim\@tempdimb>0pt% + \advance\@tempdimb by 1.125ex% + \begin{beamercolorbox}[wd=.5\paperwidth,ht=\@tempdimb]{% + section in head/foot}% + \vbox to\@tempdimb{\vfil\insertsectionnavigation{.5\paperwidth}\vfil}% + \end{beamercolorbox}% + \begin{beamercolorbox}[wd=.5\paperwidth,ht=\@tempdimb]{% + subsection in head/foot}% + \vbox to\@tempdimb{\vfil\insertsubsectionnavigation{.5\paperwidth}\vfil}% + \end{beamercolorbox}% + \fi% + \fi % \thepage>1 +} + +\fi % end if compressed +\fi % TACCheadernav + + +\ifTACCheadertree + +\setbeamertemplate{headline} +{ + \begin{beamercolorbox}[wd=\paperwidth,colsep=1.5pt]{upper separation line head} + \end{beamercolorbox} + % + % Place short title + % + \begin{beamercolorbox}[wd=\paperwidth,ht=2.5ex,dp=1.125ex,% + leftskip=.3cm,rightskip=.3cm plus1fil]{title in head/foot} + \usebeamerfont{title in head/foot}\insertshorttitle + \end{beamercolorbox} + + % + % Place section + % + \begin{beamercolorbox}[wd=\paperwidth,ht=2.5ex,dp=1.125ex,% + leftskip=.3cm,rightskip=.3cm plus1fil]{section in head/foot} + \usebeamerfont{section in head/foot}% + %\ifbeamer@tree@showhooks + \setbox\beamer@tempbox=\hbox{\insertsectionhead}% + \ifdim\wd\beamer@tempbox>1pt% + \hskip2pt\raise1.9pt\hbox{\vrule width0.4pt height1.875ex\vrule width 5pt height0.4pt}% + \hskip1pt% + \fi + \insertsectionhead + \end{beamercolorbox} + +% +% Place subsection +% +\begin{beamercolorbox}[wd=\paperwidth,ht=2.5ex,dp=1.125ex,% + leftskip=.3cm,rightskip=.3cm plus1fil]{subsection in head/foot} + \usebeamerfont{subsection in head/foot}% + %\ifbeamer@tree@showhooks + \setbox\beamer@tempbox=\hbox{\insertsubsectionhead}% + \ifdim\wd\beamer@tempbox>1pt% + \hskip9.4pt\raise1.9pt\hbox{\vrule width0.4pt height1.875ex\vrule width 5pt height0.4pt}% + \hskip1pt% + \fi + \insertsubsectionhead +\end{beamercolorbox} + +% +% Place final separation box +% + \begin{beamercolorbox}[wd=\paperwidth,colsep=1.5pt + ]{lower separation line head} + \end{beamercolorbox} + + % + % Another matching rule which helps to frame the content + % + \hspace{.025\textwidth}\rule{.95\textwidth}{.5pt} +} +\fi % TACCheadertree + + +% The following command suppresses all navigation symbols. This is +% necessary in the TACC theme, since it overlaps where we want the +% logo to be. +\setbeamertemplate{navigation symbols}{} + + +\mode + diff --git a/my_docs/21/eb_user_21/themes/beamerouterthemeTACC16.sty b/my_docs/21/eb_user_21/themes/beamerouterthemeTACC16.sty new file mode 100644 index 000000000..c5b178018 --- /dev/null +++ b/my_docs/21/eb_user_21/themes/beamerouterthemeTACC16.sty @@ -0,0 +1,247 @@ +% Copyright 2003 by Till Tantau +% +% This program can be redistributed and/or modified under the terms +% of the GNU Public License, version 2. + +\mode + +\usepackage{xcolor} +\usepackage{graphicx} +\usepackage{etoolbox} + +\pgfdeclareimage[width=\paperwidth]{titlebackground}{master.jpg} +\pgfdeclareimage[width=\paperwidth]{background}{secondary.jpg} + +\setbeamertemplate{background canvas}{% + \ifnum\c@framenumber=1% + \begin{picture}(0,0) + \put(0,-273){% + \pgfuseimage{titlebackground} + } + %\put(0,-130.7){% + + %\begin{minipage}[b][45mm][t]{\textwidth}%{226mm} + %\begin{center} + % \usebeamerfont{title}{\MakeTextUppercase{\inserttitle}\par} + %\vspace{2ex} + %\usebeamerfont{author}{\insertauthor} + % \end{center} + %\end{minipage} + %} + \end{picture} + % On title page + \else% + % Other frames background + \begin{picture}(0,0) + \put(0,-273){% + \pgfuseimage{background} + } + \end{picture} + \fi% +} + + +\setbeamertemplate{title page}{ +\vspace{40pt} +\begin{center} +\usebeamerfont{title} {\huge \inserttitle}\par +\vspace{4ex} +\usebeamerfont{author} { + \insertauthor +}\par +\vspace{2ex} +\usebeamerfont{institute}{ + \insertinstitute +} \par +\vspace{2ex} +\usebeamerfont{date}{ + \insertdate +} +\end{center} +} + + +\setbeamertemplate{frametitle}[default][center] +\setbeamertemplate{frametitle}{ + \makeatletter + \regexpatchcmd{\insertframetitle} + {(\c{usebeamertemplate}.*)\c{fi}} + {\c{NoCaseChange}\cB\{\1\cE\}\c{fi}} + {}{}% + \makeatother + \vskip1ex + \insertframetitle +} + +% Here we define what appears at the bottom of each slide: the "footline". +\setbeamertemplate{footline}{% + \leavevmode% + + % Horizontal line dividing the rest of the slide from the footer? + % hrule goes all the way across... + % \hrule height.3pt% + % With \rule, you can specify the thickness + % \rule[raise-height]{width}{thickness} + % \hspace{.025\textwidth}\rule{.95\textwidth}{.5pt} + + \hbox{% + \ifnum \thepage>1 + % On the left half of the footer, insert the TACC of + \begin{minipage}{.2\textwidth}% + \hskip .05\textwidth%Give horizontal space else this will set on the left edge of the slide! + % \includegraphics[width=.8\textwidth]{figures/TACC_logo.png} + \end{minipage} + + + \begin{minipage}{\textwidth}% + % \vskip .023\textheight% + \raggedleft% + \setlength{\rightskip}{\textwidth} + \hbox{% + \begin{beamercolorbox}[wd=0.7\textwidth,ht=2.25ex,dp=1ex,left]{author in head/foot}% + \insertshorttitle{} \hskip .01\textwidth | \hskip .01\textwidth \insertdate{} \hskip .01\textwidth | \hskip .01\textwidth \insertframenumber{} + \end{beamercolorbox}% + } + + % + % If we are not on the first page, insert a page number + % For some reason, insertframenumber is buggy when you have fragile + % slides with verbatim environments in them... it tends to skip numbers + % for some reason! On the other hand, the pagenumber is incremented + % for *every* slide, including transition slides... + % \hfill\includegraphics[width=\textwidth]{figures/tacc_ut.png} + \end{minipage}% + \begin{minipage}{.05\textwidth}% + \end{minipage}% + \fi %\thepage>1 + }% + \vskip .023\textheight% + +} + + + + +\ifTACCheadernav + +\usesectionheadtemplate +{\hfill\insertsectionhead} +{\hfill\color{fg!50!bg}\insertsectionhead} + +% Head +\ifbeamer@compress + +% Here we define how the top of the frame looks, the "headline". +\setbeamertemplate{headline} +{% + \ifnum \thepage>1 + \leavevmode% + \begin{beamercolorbox}[wd=.5\paperwidth,ht=2.5ex,dp=1.125ex]{% + section in head/foot}% + \insertsectionnavigationhorizontal{.5\paperwidth}{\hskip0pt plus1filll}{}% + \end{beamercolorbox}% + \begin{beamercolorbox}[wd=.5\paperwidth,ht=2.5ex,dp=1.125ex]{% + subsection in head/foot}% + \insertsubsectionnavigationhorizontal{% + .5\paperwidth}{}{\hskip0pt plus1filll}% + \end{beamercolorbox}% + \fi %\thepage>1 +} + +\else% Not compressed + +\setbeamertemplate{headline} +{% + \ifnum \thepage>1 + \leavevmode% + \@tempdimb=2.4375ex% + \ifnum\beamer@subsectionmax<\beamer@sectionmax% + \multiply\@tempdimb by\beamer@sectionmax% + \else% + \multiply\@tempdimb by\beamer@subsectionmax% + \fi% + \ifdim\@tempdimb>0pt% + \advance\@tempdimb by 1.125ex% + \begin{beamercolorbox}[wd=.5\paperwidth,ht=\@tempdimb]{% + section in head/foot}% + \vbox to\@tempdimb{\vfil\insertsectionnavigation{.5\paperwidth}\vfil}% + \end{beamercolorbox}% + \begin{beamercolorbox}[wd=.5\paperwidth,ht=\@tempdimb]{% + subsection in head/foot}% + \vbox to\@tempdimb{\vfil\insertsubsectionnavigation{.5\paperwidth}\vfil}% + \end{beamercolorbox}% + \fi% + \fi % \thepage>1 +} + +\fi % end if compressed +\fi % TACCheadernav + + +\ifTACCheadertree + +\setbeamertemplate{headline} +{ + \begin{beamercolorbox}[wd=\paperwidth,colsep=1.5pt]{upper separation line head} + \end{beamercolorbox} + % + % Place short title + % + \begin{beamercolorbox}[wd=\paperwidth,ht=2.5ex,dp=1.125ex,% + leftskip=.3cm,rightskip=.3cm plus1fil]{title in head/foot} + \usebeamerfont{title in head/foot}\insertshorttitle + \end{beamercolorbox} + + % + % Place section + % + \begin{beamercolorbox}[wd=\paperwidth,ht=2.5ex,dp=1.125ex,% + leftskip=.3cm,rightskip=.3cm plus1fil]{section in head/foot} + \usebeamerfont{section in head/foot}% + %\ifbeamer@tree@showhooks + \setbox\beamer@tempbox=\hbox{\insertsectionhead}% + \ifdim\wd\beamer@tempbox>1pt% + \hskip2pt\raise1.9pt\hbox{\vrule width0.4pt height1.875ex\vrule width 5pt height0.4pt}% + \hskip1pt% + \fi + \insertsectionhead + \end{beamercolorbox} + +% +% Place subsection +% +\begin{beamercolorbox}[wd=\paperwidth,ht=2.5ex,dp=1.125ex,% + leftskip=.3cm,rightskip=.3cm plus1fil]{subsection in head/foot} + \usebeamerfont{subsection in head/foot}% + %\ifbeamer@tree@showhooks + \setbox\beamer@tempbox=\hbox{\insertsubsectionhead}% + \ifdim\wd\beamer@tempbox>1pt% + \hskip9.4pt\raise1.9pt\hbox{\vrule width0.4pt height1.875ex\vrule width 5pt height0.4pt}% + \hskip1pt% + \fi + \insertsubsectionhead +\end{beamercolorbox} + +% +% Place final separation box +% + \begin{beamercolorbox}[wd=\paperwidth,colsep=1.5pt + ]{lower separation line head} + \end{beamercolorbox} + + % + % Another matching rule which helps to frame the content + % + \hspace{.025\textwidth}\rule{.95\textwidth}{.5pt} +} +\fi % TACCheadertree + + +% The following command suppresses all navigation symbols. This is +% necessary in the TACC theme, since it overlaps where we want the +% logo to be. +\setbeamertemplate{navigation symbols}{} + + +\mode + diff --git a/my_docs/21/eb_user_21/themes/beamerthemeTACC16-169.sty b/my_docs/21/eb_user_21/themes/beamerthemeTACC16-169.sty new file mode 100644 index 000000000..22caf9a05 --- /dev/null +++ b/my_docs/21/eb_user_21/themes/beamerthemeTACC16-169.sty @@ -0,0 +1,38 @@ +%% TACC theme for beamer + +\newif\ifTACCheadernav +\DeclareOption{headernav}{\global\TACCheadernavtrue} + +\newif\ifTACCheadertree +\DeclareOption{headertree}{\global\TACCheadertreetrue} +\ProcessOptions + +\mode + +\makeatletter + \def\beamer@calltheme#1#2#3{% + \def\beamer@themelist{#2} + \@for\beamer@themename:=\beamer@themelist\do + {\usepackage[{#1}]{\beamer@themelocation/#3\beamer@themename}}} + + \def\usefolder#1{ + \def\beamer@themelocation{#1} + } + \def\beamer@themelocation{} + +\usefolder{themes} +\usefonttheme{TACC16} +\useinnertheme{TACC16} +\useoutertheme{TACC16-169} +\usecolortheme{TACC16} + +\mode + + +\newcommand{\event}[1]{% + \makeatletter% + \def\TACC@eventname{#1}% + \makeatother} + +\newcommand{\sectionframe}[1]{\section{#1}\frame{\Large\textbf{#1}}} +\newcommand{\subsectionframe}[1]{\subsection{#1}\frame{\large\textbf{#1}}} diff --git a/my_docs/21/eb_user_21/themes/beamerthemeTACC16.sty b/my_docs/21/eb_user_21/themes/beamerthemeTACC16.sty new file mode 100644 index 000000000..750bdd388 --- /dev/null +++ b/my_docs/21/eb_user_21/themes/beamerthemeTACC16.sty @@ -0,0 +1,26 @@ +%% TACC theme for beamer + +\newif\ifTACCheadernav +\DeclareOption{headernav}{\global\TACCheadernavtrue} + +\newif\ifTACCheadertree +\DeclareOption{headertree}{\global\TACCheadertreetrue} +\ProcessOptions + +\mode + +\usefonttheme{TACC16} +\useinnertheme{TACC16} +\useoutertheme{TACC16} +\usecolortheme{TACC16} + +\mode + + +\newcommand{\event}[1]{% + \makeatletter% + \def\TACC@eventname{#1}% + \makeatother} + +\newcommand{\sectionframe}[1]{\section{#1}\frame{\Large\textbf{#1}}} +\newcommand{\subsectionframe}[1]{\subsection{#1}\frame{\large\textbf{#1}}} diff --git a/my_docs/21/eb_user_21/themes/example.pdf b/my_docs/21/eb_user_21/themes/example.pdf new file mode 100644 index 000000000..add373eee Binary files /dev/null and b/my_docs/21/eb_user_21/themes/example.pdf differ diff --git a/my_docs/21/eb_user_21/themes/license.tex b/my_docs/21/eb_user_21/themes/license.tex new file mode 100644 index 000000000..74ff86759 --- /dev/null +++ b/my_docs/21/eb_user_21/themes/license.tex @@ -0,0 +1,14 @@ + +\begin{frame}{License} +\footnotesize +\textcopyright The University of Texas at Austin, \the\year\\ +\vspace{0.5 cm} +This work is licensed under the Creative Commons Attribution Non-Commercial 3.0 Unported License. To view a copy of this license, +visit http://creativecommons.org/licenses/by-nc/3.0/\\ +\vspace{0.5 cm} +When attributing this work, please use the following text: +"Designing and Administering Large-scale Systems", Texas Advanced Computing Center, \the\year. Available under a Creative Commons Attribution Non-Commercial 3.0 Unported License. +\newline +\newline +\includegraphics[width=1cm]{./figures/cc.png} +\end{frame} \ No newline at end of file diff --git a/my_docs/21/lmod_zoom_mtg_2021_09_07/beamercolorthemeTACC.sty b/my_docs/21/lmod_zoom_mtg_2021_09_07/beamercolorthemeTACC.sty deleted file mode 120000 index 8d27e673a..000000000 --- a/my_docs/21/lmod_zoom_mtg_2021_09_07/beamercolorthemeTACC.sty +++ /dev/null @@ -1 +0,0 @@ -../../beamer/beamercolorthemeTACC.sty \ No newline at end of file diff --git a/my_docs/21/lmod_zoom_mtg_2021_09_07/beamercolorthemeTACC.sty b/my_docs/21/lmod_zoom_mtg_2021_09_07/beamercolorthemeTACC.sty new file mode 100755 index 000000000..78beb6a4a --- /dev/null +++ b/my_docs/21/lmod_zoom_mtg_2021_09_07/beamercolorthemeTACC.sty @@ -0,0 +1,323 @@ +% Copyright 2003 by Till Tantau . +% +% This program can be redistributed and/or modified under the terms +% of the GNU Public License, version 2. + +\mode + +% I downloaded a gimp color palette from +% http://maururu.net/2007/latex-beamer-color-palette/ +% Which provides rgb values (I think) for several of the +% default beamer themes. You can open this in gimp by +% opening the Palettes dialog, right-clicking anywhere and choosing +% 'Import Palette'. A color in there called 'default added blue' +% appeared to be approximately what I wanted. It had the triple +% of values 141 145 208. If you double-click on this in the +% palette editor it gives you a bunch of information. You can't +% use these values directly to set a color...it just comes out white. +% I think definecolor is expecting something normalized by 255. Yes! + + +% bluish colors +\definecolor{defaddedblue}{rgb}{0.5529,.5686,.8157} % 141,145,208 +\definecolor{defblockheader}{rgb}{.1921,.2235,.6824} % 49,57,174 +\definecolor{flyaddedblue}{rgb}{.5961,.6118,.8431} % 152,156,215 + +% bluish-greys +\definecolor{beetleaddedblue1}{rgb}{.3333,.4039,.6196} % 85 103 158, dark +\definecolor{beetleaddedblue2}{rgb}{.4510,.5098,.7020} % 115 130 179, medium +\definecolor{beetleaddedblue3}{rgb}{.7059,.7255,.7961} % 180 185 203, light (greyest) + +% very light blue-greys +\definecolor{deflightouter1}{rgb}{.7608,.7647,.9020} % 194 195 230, dark +\definecolor{deflightouter2}{rgb}{.8 ,.8039,.9176} % 204 205 234, medium +\definecolor{deflightouter3}{rgb}{.8392,.8431,.9373} % 214 215 239, light + +% reddish colors +\definecolor{flyalertblockheader}{rgb}{.7373,.1294,.1333} % 188 33 34 +\definecolor{flyaddedred}{rgb}{.8667,.5647,.5647}% 221 144 144 +\definecolor{beaverouterframe}{rgb}{.5529,.0980,.0980}% 141 25 25 + +% greens (green is used for 'examples' in beamer) +\definecolor{defexblock}{rgb}{.9098,.9333,.9020} % 232 238 230, light +\definecolor{defaddedgreen}{rgb}{.5412,.6510,.4706} % 138 166 120, medium +\definecolor{defexblockheader}{rgb}{.1686,.3647,.0392} % 43 93 10, dark + +\definecolor{lightexblock}{rgb}{.9137,.9451,.9020} % 233 241 230, light +\definecolor{lightexblockheader}{rgb}{.8235,.8980,.8} % 210 229 204, medium +\definecolor{lightexblockheadertext}{rgb}{.2431,.5098,.0745} % 62 130 19, dark + + +%%% +% Set the normal text color +%%% +\setbeamercolor{normal text}{fg=black,bg=white} + +%%% +% Set the alerted text color +%%% +% \setbeamercolor{alerted text}{fg=red} +\setbeamercolor{alerted text}{fg=red!50!black} % half black/half red for green bg +% \setbeamercolor{alerted text}{fg=beaverouterframe} +% \setbeamercolor{alerted text}{fg=defblockheader} % doesn't stand out enough + + +% Set the 'example' text +\setbeamercolor{example text}{fg=green!50!black} + +\setbeamercolor{structure}{fg=black} + +\setbeamercolor{background canvas}{parent=normal text} +\setbeamercolor{background}{parent=background canvas} + +\setbeamercolor{palette primary}{use=structure,fg=structure.fg} +\setbeamercolor{palette secondary}{use=structure,fg=structure.fg!75!black} +\setbeamercolor{palette tertiary}{use=structure,fg=structure.fg!50!black} +\setbeamercolor{palette quaternary}{fg=black} + +\setbeamercolor{palette sidebar primary}{use=normal text,fg=normal text.fg} +\setbeamercolor{palette sidebar secondary}{use=structure,fg=structure.fg} +\setbeamercolor{palette sidebar tertiary}{use=normal text,fg=normal text.fg} +\setbeamercolor{palette sidebar quaternary}{use=structure,fg=structure.fg} + +\setbeamercolor{math text}{} +\setbeamercolor{math text inlined}{parent=math text} +\setbeamercolor{math text displayed}{parent=math text} + +\setbeamercolor{normal text in math text}{} + +\setbeamercolor{local structure}{parent=structure} + +\setbeamercolor{titlelike}{parent=structure} + +\setbeamercolor{title}{parent=titlelike} +\setbeamercolor{title in head/foot}{parent=palette quaternary} +\setbeamercolor{title in sidebar}{parent=palette sidebar quaternary} + +\setbeamercolor{subtitle}{parent=title} + +\setbeamercolor{author}{} +\setbeamercolor{author in head/foot}{parent=palette primary} +\setbeamercolor{author in sidebar}{use=palette sidebar tertiary,fg=palette sidebar tertiary.fg} + +\setbeamercolor{institute}{} +\setbeamercolor{institute in head/foot}{parent=palette tertiary} +\setbeamercolor{institute in sidebar}{use=palette sidebar tertiary,fg=palette sidebar tertiary.fg} + +\setbeamercolor{date}{} +\setbeamercolor{date in head/foot}{parent=palette secondary} +\setbeamercolor{date in sidebar}{use=palette sidebar tertiary,fg=palette sidebar tertiary.fg} + +\setbeamercolor{titlegraphic}{} + +\setbeamercolor{part name}{} +\setbeamercolor{part title}{parent=titlelike} + +\setbeamercolor{section in toc}{parent=structure} +\setbeamercolor{section in toc shaded}{parent=section in toc} +\setbeamercolor{section in head/foot}{parent=palette tertiary} +\setbeamercolor{section in sidebar}{parent=palette sidebar secondary} +\setbeamercolor{section in sidebar shaded}{use=section in sidebar,fg=section in sidebar.fg!40!bg} +\setbeamercolor{section number projected}{parent=item projected} + +\setbeamercolor{subsection in toc}{} +\setbeamercolor{subsection in toc shaded}{parent=subsection in toc} +\setbeamercolor{subsection in head/foot}{parent=palette secondary} +\setbeamercolor{subsection in sidebar}{parent=palette sidebar primary} +\setbeamercolor{subsection in sidebar shaded}{use=subsection in sidebar,fg=subsection in sidebar.fg!40!bg} +\setbeamercolor{subsection number projected}{parent={subitem projected}} + +\setbeamercolor{subsubsection in toc}{parent=subsection in toc} +\setbeamercolor{subsubsection in toc shaded}{parent=subsubsection in toc} +\setbeamercolor{subsubsection in head/foot}{parent=subsection in head/foot} +\setbeamercolor{subsubsection in sidebar}{parent=subsection in sidebar} +\setbeamercolor{subsubsection in sidebar shaded}{parent=subsection in sidebar shaded} +\setbeamercolor{subsubsection number projected}{parent=subsubitem projected} + +\setbeamercolor{headline}{} +\setbeamercolor{footline}{} + +\setbeamercolor{sidebar}{} +\setbeamercolor{sidebar left}{parent=sidebar} +\setbeamercolor{sidebar right}{parent=sidebar} + +\setbeamercolor{logo}{parent=palette secondary} + +\setbeamercolor{frametitle}{parent=titlelike} +\setbeamercolor{framesubtitle}{parent=frametitle} + +\setbeamercolor{frametitle right}{parent=frametitle} + +\setbeamercolor{caption}{} +\setbeamercolor{caption name}{parent=structure} + +\setbeamercolor{button}{use=local structure,bg=local structure.fg!50!bg,fg=white} +\setbeamercolor{button border}{use=button,fg=button.bg} +\setbeamercolor{navigation symbols}{use=structure,fg=structure.fg!40!bg} +\setbeamercolor{navigation symbols dimmed}{use=structure,fg=structure.fg!20!bg} +\setbeamercolor{mini frame}{parent=section in head/foot} + +% Color expressions are defined in the xcolor package +% +% Ex: Mixture of 40% green, 60% yellow: green!40!yellow +% +% The complement of any color can be obtained by prepending +% a minus sign: -green!40!yellow +% +% One can also combine up to three colors (in differing proportions) +% using the rgb command. For example, the following command combines +% 3 parts of the first color, with 2 parts of the second, and one part +% "red" +% +%\color{rgb:-green!40!yellow,3;green!40!yellow,2;red,1} +% Unfortunately, I don't think this works as an argument to setbeamercolor... +% "Orange" bg=green!30!yellow!30!red +% close to burnt orange: red!75!green +% lightgray is a color, but gray!25!white looks better +% +% A nice pair of greens +% (dark, a little too dark to be under black text...) -red!75!green!50!blue!25 +% (light) -red!75!green!50!blue!25!gray +% +% Some colors are only available via options to the xcolor package, eg. +% x11names,DarkOliveGreen4 +% svgnames, Chartreuse +% dvipsnames, ForestGreen +% +% but beamer does not seem to have any of these. +% +% The base color names which are always available are: +% black +% blue +% brown +% cyan +% darkgray +% gray +% green +% lightgray +% lime +% magenta +% olive +% orange +% pink +% purple +% red +% teal +% violet +% white +% yellow + +% From the beamer user guide, pg. 167 +% Inner color themes only specify the colors of elements used in inner +% themes. Most noticably, they specify the colors used for blocks. +% ... + +% Example color definition +% beamercolorthemedefault.sty:\definecolor{beamer@blendedblue}{rgb}{0.2,0.2,0.7} +% beamercolorthemedefault.sty:\setbeamercolor{structure}{fg=beamer@blendedblue} + +% The greens +% \setbeamercolor{block body}{bg=-red!75!green!50!blue!25!gray} +% \setbeamercolor{block title}{parent=structure,bg=-red!75!green!50!blue!25,fg=-red!75!green!50!blue!25!gray} + +%%% +% Set the block body and title background/foreground colors +%%% +% \setbeamercolor{block body}{bg=flyaddedblue} +% \setbeamercolor{block title}{bg=defblockheader,fg=flyaddedblue} + +% Purplish blues, too dark overall +% \setbeamercolor{block body}{bg=beetleaddedblue3} +% \setbeamercolor{block title}{bg=beetleaddedblue2,fg=beetleaddedblue3} + +% Very light blue greys +% 1. Not enough contrast +% \setbeamercolor{block body}{bg=deflightouter3} +% \setbeamercolor{block title}{bg=deflightouter2,fg=deflightouter3} + +% 2. Not enough contrast +% \setbeamercolor{block body}{bg=deflightouter3} +% \setbeamercolor{block title}{bg=deflightouter1,fg=deflightouter3} + +% 3. Combination of deflightouter and fly. The block bg is +% lighter than the all-beetle color scheme I previously thought was best. +% Currently I like this one the best +\setbeamercolor{block body}{bg=deflightouter3} +\setbeamercolor{block title}{bg=beetleaddedblue2,fg=deflightouter3} + +% 4. Greens. Looks like a highlighter. I don't really trust greens +% on projectors... It's almost too bright/hurts your eyes. +% \setbeamercolor{block body}{bg=defexblock} +% \setbeamercolor{block title}{bg=defaddedgreen,fg=defexblock} + +% This looks pretty good ... it's similar to the greens we had before +% but should be lighter. The blocks are just a little too "mint" colored +% though... +% \setbeamercolor{block body}{bg=defexblock} +% \setbeamercolor{block title}{bg=defexblockheader,fg=defexblock} + +% Pea Soup! +%\setbeamercolor{block body}{bg=defaddedgreen} +%\setbeamercolor{block title}{bg=defexblockheader,fg=defaddedgreen} + + +% Changing these didn't seem to do anything...I had to change the +% 'alerted text' color instead +\setbeamercolor{block body alerted}{} +\setbeamercolor{block body example}{} +\setbeamercolor{block title alerted}{parent=alerted text} +\setbeamercolor{block title example}{parent=example text} + +\setbeamercolor{item}{parent=local structure} +\setbeamercolor{subitem}{parent=item} +\setbeamercolor{subsubitem}{parent=subitem} + +\setbeamercolor{item projected}{parent=item,use=item,fg=white,bg=item.fg} +\setbeamercolor{subitem projected}{parent=item projected} +\setbeamercolor{subsubitem projected}{parent=subitem projected} + +\setbeamercolor{enumerate item}{parent=item} +\setbeamercolor{enumerate subitem}{parent=subitem} +\setbeamercolor{enumerate subsubitem}{parent=subsubitem} + +\setbeamercolor{itemize item}{parent=item} +\setbeamercolor{itemize subitem}{parent=subitem} +\setbeamercolor{itemize subsubitem}{parent=subsubitem} + +\setbeamercolor{itemize/enumerate body}{} +\setbeamercolor{itemize/enumerate subbody}{} +\setbeamercolor{itemize/enumerate subsubbody}{} + +\setbeamercolor{description item}{parent=item} + +\setbeamercolor{bibliography item}{parent=item} + +\setbeamercolor{bibliography entry author}{use=structure,fg=structure.fg} +\setbeamercolor{bibliography entry title}{use=normal text,fg=normal text.fg} +\setbeamercolor{bibliography entry location}{use=structure,fg=structure.fg!65!bg} +\setbeamercolor{bibliography entry note}{use=structure,fg=structure.fg!65!bg} + +\setbeamercolor{separation line}{} + +\setbeamercolor{upper separation line head}{parent=separation line} +\setbeamercolor{middle separation line head}{parent=separation line} +\setbeamercolor{lower separation line head}{parent=separation line} + +\setbeamercolor{upper separation line foot}{parent=separation line} +\setbeamercolor{middle separation line foot}{parent=separation line} +\setbeamercolor{lower separation line foot}{parent=separation line} + +\setbeamercolor{abstract}{} +\setbeamercolor{abstract title}{parent=structure} + +\setbeamercolor{verse}{} + +\setbeamercolor{quotation}{} +\setbeamercolor{quote}{parent=quotation} + +\setbeamercolor{page number in head/foot}{fg=fg!50!bg} + +\setbeamercolor{qed symbol}{parent=structure} + +\mode + diff --git a/my_docs/21/lmod_zoom_mtg_2021_09_07/beamercolorthemeTACC16.sty b/my_docs/21/lmod_zoom_mtg_2021_09_07/beamercolorthemeTACC16.sty deleted file mode 120000 index 58415801b..000000000 --- a/my_docs/21/lmod_zoom_mtg_2021_09_07/beamercolorthemeTACC16.sty +++ /dev/null @@ -1 +0,0 @@ -../../beamer/beamercolorthemeTACC16.sty \ No newline at end of file diff --git a/my_docs/21/lmod_zoom_mtg_2021_09_07/beamercolorthemeTACC16.sty b/my_docs/21/lmod_zoom_mtg_2021_09_07/beamercolorthemeTACC16.sty new file mode 100755 index 000000000..779dde91f --- /dev/null +++ b/my_docs/21/lmod_zoom_mtg_2021_09_07/beamercolorthemeTACC16.sty @@ -0,0 +1,192 @@ +% Copyright 2003 by Till Tantau . +% +% This program can be redistributed and/or modified under the terms +% of the GNU Public License, version 2. + +\mode + +\usepackage{textcase,regexpatch} + +\setbeamertemplate{blocks}[rounded][shadow=true] + + +\definecolor{TACCred}{RGB}{180,13,29} +\definecolor{TACCorange}{RGB}{210,104,43} +\definecolor{TACCblue}{RGB}{108, 134, 191} +\definecolor{TACCgreen}{RGB}{23,106,70} + +% I downloaded a gimp color palette from +% http://maururu.net/2007/latex-beamer-color-palette/ +% Which provides rgb values (I think) for several of the +% default beamer themes. You can open this in gimp by +% opening the Palettes dialog, right-clicking anywhere and choosing +% 'Import Palette'. A color in there called 'default added blue' +% appeared to be approximately what I wanted. It had the triple +% of values 141 145 208. If you double-click on this in the +% palette editor it gives you a bunch of information. You can't +% use these values directly to set a color...it just comes out white. +% I think definecolor is expecting something normalized by 255. Yes! + + +%%% +% Set the normal text color +%%% +\setbeamercolor{normal text}{fg=black} %,bg=white} +\setbeamercolor{example text}{fg=TACCgreen} +\setbeamercolor{alerted text}{fg=TACCorange} + + +\setbeamercolor{structure}{fg=black} +%\setbeamercolor{structure}{fg=black} + +\setbeamercolor{background canvas}{parent=normal text} +\setbeamercolor{background}{parent=background canvas} + +\setbeamercolor{palette primary}{use=structure,fg=structure.fg} +\setbeamercolor{palette secondary}{use=structure,fg=structure.fg!75!black} +\setbeamercolor{palette tertiary}{use=structure,fg=structure.fg!50!black} +\setbeamercolor{palette quaternary}{fg=black} + +\setbeamercolor{palette sidebar primary}{use=normal text,fg=normal text.fg} +\setbeamercolor{palette sidebar secondary}{use=structure,fg=structure.fg} +\setbeamercolor{palette sidebar tertiary}{use=normal text,fg=normal text.fg} +\setbeamercolor{palette sidebar quaternary}{use=structure,fg=structure.fg} + +\setbeamercolor{math text}{} +\setbeamercolor{math text inlined}{parent=math text} +\setbeamercolor{math text displayed}{parent=math text} + +\setbeamercolor{normal text in math text}{} + +\setbeamercolor{local structure}{parent=structure} + +\setbeamercolor{titlelike}{parent=structure} + +\setbeamercolor{title}{parent=titlelike} +\setbeamercolor{title in head/foot}{parent=palette quaternary} +\setbeamercolor{title in sidebar}{parent=palette sidebar quaternary} + +\setbeamercolor{subtitle}{parent=title} + +\setbeamercolor{author}{} +\setbeamercolor{author in head/foot}{parent=palette primary} +\setbeamercolor{author in sidebar}{use=palette sidebar tertiary,fg=palette sidebar tertiary.fg} + +\setbeamercolor{institute}{} +\setbeamercolor{institute in head/foot}{parent=palette tertiary} +\setbeamercolor{institute in sidebar}{use=palette sidebar tertiary,fg=palette sidebar tertiary.fg} + +\setbeamercolor{date}{} +\setbeamercolor{date in head/foot}{parent=palette secondary} +\setbeamercolor{date in sidebar}{use=palette sidebar tertiary,fg=palette sidebar tertiary.fg} + +\setbeamercolor{titlegraphic}{} + +\setbeamercolor{part name}{} +\setbeamercolor{part title}{parent=titlelike} + +\setbeamercolor{section in toc}{parent=structure} +\setbeamercolor{section in toc shaded}{parent=section in toc} +\setbeamercolor{section in head/foot}{parent=palette tertiary} +\setbeamercolor{section in sidebar}{parent=palette sidebar secondary} +\setbeamercolor{section in sidebar shaded}{use=section in sidebar,fg=section in sidebar.fg!40!bg} +\setbeamercolor{section number projected}{parent=item projected} + +\setbeamercolor{subsection in toc}{} +\setbeamercolor{subsection in toc shaded}{parent=subsection in toc} +\setbeamercolor{subsection in head/foot}{parent=palette secondary} +\setbeamercolor{subsection in sidebar}{parent=palette sidebar primary} +\setbeamercolor{subsection in sidebar shaded}{use=subsection in sidebar,fg=subsection in sidebar.fg!40!bg} +\setbeamercolor{subsection number projected}{parent={subitem projected}} + +\setbeamercolor{subsubsection in toc}{parent=subsection in toc} +\setbeamercolor{subsubsection in toc shaded}{parent=subsubsection in toc} +\setbeamercolor{subsubsection in head/foot}{parent=subsection in head/foot} +\setbeamercolor{subsubsection in sidebar}{parent=subsection in sidebar} +\setbeamercolor{subsubsection in sidebar shaded}{parent=subsection in sidebar shaded} +\setbeamercolor{subsubsection number projected}{parent=subsubitem projected} + +\setbeamercolor{headline}{} +\setbeamercolor{footline}{} + +\setbeamercolor{sidebar}{} +\setbeamercolor{sidebar left}{parent=sidebar} +\setbeamercolor{sidebar right}{parent=sidebar} + +\setbeamercolor{logo}{parent=palette secondary} + +\setbeamercolor{frametitle}{parent=titlelike} +\setbeamercolor{framesubtitle}{parent=frametitle} + +\setbeamercolor{frametitle right}{parent=frametitle} + +\setbeamercolor{caption}{} +\setbeamercolor{caption name}{parent=structure} + +\setbeamercolor{button}{use=local structure,bg=local structure.fg!50!bg,fg=white} +\setbeamercolor{button border}{use=button,fg=button.bg} +\setbeamercolor{navigation symbols}{use=structure,fg=structure.fg!40!bg} +\setbeamercolor{navigation symbols dimmed}{use=structure,fg=structure.fg!20!bg} +\setbeamercolor{mini frame}{parent=section in head/foot} + +\setbeamercolor{block body}{fg=black} +\setbeamercolor{block body alerted}{fg=black} +\setbeamercolor{block body example}{fg=black} + +\setbeamercolor{block title}{bg=TACCblue,fg=white} +\setbeamercolor{block title alerted}{bg=TACCred,fg=white} +\setbeamercolor{block title example}{bg=TACCgreen,fg=white} + +\setbeamercolor{item}{parent=local structure} +\setbeamercolor{subitem}{parent=item} +\setbeamercolor{subsubitem}{parent=subitem} + +\setbeamercolor{item projected}{parent=item,use=item,fg=black,bg=item.fg} +\setbeamercolor{subitem projected}{parent=item projected} +\setbeamercolor{subsubitem projected}{parent=subitem projected} + +\setbeamercolor{enumerate item}{parent=item} +\setbeamercolor{enumerate subitem}{parent=subitem} +\setbeamercolor{enumerate subsubitem}{parent=subsubitem} + +\setbeamercolor{itemize item}{parent=item} +\setbeamercolor{itemize subitem}{parent=subitem} +\setbeamercolor{itemize subsubitem}{parent=subsubitem} + +\setbeamercolor{itemize/enumerate body}{} +\setbeamercolor{itemize/enumerate subbody}{} +\setbeamercolor{itemize/enumerate subsubbody}{} + +\setbeamercolor{description item}{parent=item} + +\setbeamercolor{bibliography item}{parent=item} + +\setbeamercolor{bibliography entry author}{use=structure,fg=structure.fg} +\setbeamercolor{bibliography entry title}{use=normal text,fg=normal text.fg} +\setbeamercolor{bibliography entry location}{use=structure,fg=structure.fg!65!bg} +\setbeamercolor{bibliography entry note}{use=structure,fg=structure.fg!65!bg} + +\setbeamercolor{separation line}{} + +\setbeamercolor{upper separation line head}{parent=separation line} +\setbeamercolor{middle separation line head}{parent=separation line} +\setbeamercolor{lower separation line head}{parent=separation line} + +\setbeamercolor{upper separation line foot}{parent=separation line} +\setbeamercolor{middle separation line foot}{parent=separation line} +\setbeamercolor{lower separation line foot}{parent=separation line} + +\setbeamercolor{abstract}{} +\setbeamercolor{abstract title}{parent=structure} + +\setbeamercolor{verse}{} + +\setbeamercolor{quotation}{} +\setbeamercolor{quote}{parent=quotation} + +\setbeamercolor{page number in head/foot}{fg=fg!50!bg} + +\setbeamercolor{qed symbol}{parent=structure} + +\mode + diff --git a/my_docs/21/lmod_zoom_mtg_2021_09_07/beamerfontthemeTACC.sty b/my_docs/21/lmod_zoom_mtg_2021_09_07/beamerfontthemeTACC.sty deleted file mode 120000 index 78e971fb8..000000000 --- a/my_docs/21/lmod_zoom_mtg_2021_09_07/beamerfontthemeTACC.sty +++ /dev/null @@ -1 +0,0 @@ -../../beamer/beamerfontthemeTACC.sty \ No newline at end of file diff --git a/my_docs/21/lmod_zoom_mtg_2021_09_07/beamerfontthemeTACC.sty b/my_docs/21/lmod_zoom_mtg_2021_09_07/beamerfontthemeTACC.sty new file mode 100755 index 000000000..ef9ce1e5e --- /dev/null +++ b/my_docs/21/lmod_zoom_mtg_2021_09_07/beamerfontthemeTACC.sty @@ -0,0 +1,12 @@ +% Copyright 2003 by Till Tantau +% +% This program can be redistributed and/or modified under the terms +% of the GNU Public License, version 2. + +\mode + +\setbeamerfont{frametitle}{parent=structure,size=\LARGE,series=\bfseries} +\setbeamerfont{framesubtitle}{parent=frametitle,size=\small} + +\mode + \ No newline at end of file diff --git a/my_docs/21/lmod_zoom_mtg_2021_09_07/beamerfontthemeTACC16.sty b/my_docs/21/lmod_zoom_mtg_2021_09_07/beamerfontthemeTACC16.sty deleted file mode 120000 index a1f2fa5f9..000000000 --- a/my_docs/21/lmod_zoom_mtg_2021_09_07/beamerfontthemeTACC16.sty +++ /dev/null @@ -1 +0,0 @@ -../../beamer/beamerfontthemeTACC16.sty \ No newline at end of file diff --git a/my_docs/21/lmod_zoom_mtg_2021_09_07/beamerfontthemeTACC16.sty b/my_docs/21/lmod_zoom_mtg_2021_09_07/beamerfontthemeTACC16.sty new file mode 100755 index 000000000..b65271835 --- /dev/null +++ b/my_docs/21/lmod_zoom_mtg_2021_09_07/beamerfontthemeTACC16.sty @@ -0,0 +1,21 @@ +% Copyright 2003 by Till Tantau +% +% This program can be redistributed and/or modified under the terms +% of the GNU Public License, version 2. + +\mode +\setbeamerfont{title}{parent=structure,size=\LARGE,series=\bfseries} +\setbeamerfont{author}{parent=structure,size=\large, series=\normalfont} +\setbeamerfont{frametitle}{parent=structure,size=\LARGE,series=\bfseries} +\setbeamerfont{framesubtitle}{parent=frametitle,size=\small} + +%\usefonttheme{professionalfonts} % using non standard fonts for beamer +%\usefonttheme{serif} % default family is serif +%\usepackage{fontspec} +%\setmainfont{Century Gothic} + +\usepackage{fontspec} +\usepackage{libertine} + +\mode + diff --git a/my_docs/21/lmod_zoom_mtg_2021_09_07/beamerinnerthemeTACC.sty b/my_docs/21/lmod_zoom_mtg_2021_09_07/beamerinnerthemeTACC.sty deleted file mode 120000 index 8d5ae3921..000000000 --- a/my_docs/21/lmod_zoom_mtg_2021_09_07/beamerinnerthemeTACC.sty +++ /dev/null @@ -1 +0,0 @@ -../../beamer/beamerinnerthemeTACC.sty \ No newline at end of file diff --git a/my_docs/21/lmod_zoom_mtg_2021_09_07/beamerinnerthemeTACC.sty b/my_docs/21/lmod_zoom_mtg_2021_09_07/beamerinnerthemeTACC.sty new file mode 100755 index 000000000..29e2bce81 --- /dev/null +++ b/my_docs/21/lmod_zoom_mtg_2021_09_07/beamerinnerthemeTACC.sty @@ -0,0 +1,11 @@ +\mode + +\setbeamertemplate{itemize item}[circle] +\setbeamertemplate{itemize subitem}{{}--{}} +\setbeamertemplate{itemize subsubitem}[circle] +\setbeamertemplate{section in toc}{$\bullet$\hskip.5em\inserttocsection} +%\setbeamertemplate{subsection in toc}{} +\setbeamertemplate{subsubsection in toc}{} + +\mode + diff --git a/my_docs/21/lmod_zoom_mtg_2021_09_07/beamerinnerthemeTACC16.sty b/my_docs/21/lmod_zoom_mtg_2021_09_07/beamerinnerthemeTACC16.sty deleted file mode 120000 index 5955acc99..000000000 --- a/my_docs/21/lmod_zoom_mtg_2021_09_07/beamerinnerthemeTACC16.sty +++ /dev/null @@ -1 +0,0 @@ -../../beamer/beamerinnerthemeTACC16.sty \ No newline at end of file diff --git a/my_docs/21/lmod_zoom_mtg_2021_09_07/beamerinnerthemeTACC16.sty b/my_docs/21/lmod_zoom_mtg_2021_09_07/beamerinnerthemeTACC16.sty new file mode 100755 index 000000000..f7f454e1d --- /dev/null +++ b/my_docs/21/lmod_zoom_mtg_2021_09_07/beamerinnerthemeTACC16.sty @@ -0,0 +1,11 @@ +\mode + +\setbeamertemplate{itemize item}[triangle] +\setbeamertemplate{itemize subitem}[triangle] +\setbeamertemplate{itemize subsubitem}[triangle] +\setbeamertemplate{section in toc}{$\bullet$\hskip.5em\inserttocsection} +%\setbeamertemplate{subsection in toc}{} +\setbeamertemplate{subsubsection in toc}{} + +\mode + diff --git a/my_docs/21/lmod_zoom_mtg_2021_09_07/beamerouterthemeTACC.sty b/my_docs/21/lmod_zoom_mtg_2021_09_07/beamerouterthemeTACC.sty deleted file mode 120000 index da0a45d33..000000000 --- a/my_docs/21/lmod_zoom_mtg_2021_09_07/beamerouterthemeTACC.sty +++ /dev/null @@ -1 +0,0 @@ -../../beamer/beamerouterthemeTACC.sty \ No newline at end of file diff --git a/my_docs/21/lmod_zoom_mtg_2021_09_07/beamerouterthemeTACC.sty b/my_docs/21/lmod_zoom_mtg_2021_09_07/beamerouterthemeTACC.sty new file mode 100755 index 000000000..038580303 --- /dev/null +++ b/my_docs/21/lmod_zoom_mtg_2021_09_07/beamerouterthemeTACC.sty @@ -0,0 +1,196 @@ +% Copyright 2003 by Till Tantau +% +% This program can be redistributed and/or modified under the terms +% of the GNU Public License, version 2. + +\mode + +\setbeamertemplate{frametitle}[default][center] +\addtobeamertemplate{frametitle}{\vskip 4ex minus 4ex}{} + +% Here we define what appears at the bottom of each slide: the "footline". +\setbeamertemplate{footline}{% + \leavevmode% + + % Horizontal line dividing the rest of the slide from the footer? + % hrule goes all the way across... + % \hrule height.3pt% + % With \rule, you can specify the thickness + % \rule[raise-height]{width}{thickness} + \hspace{.025\textwidth}\rule{.95\textwidth}{.5pt} + + \hbox{% + % On the left half of the footer, insert the TACC logo + \begin{minipage}{.5\textwidth}% + \hskip .033\textwidth%Give horizontal space else this will set on the left edge of the slide! + % TACC logo with custom viewport! + \includegraphics[viewport=1 -1 135 35, clip=true, width=.4\textwidth]{figures/TACC_logo} + \end{minipage} + % + \begin{minipage}{.5\textwidth}% + \vskip .023\textheight% + \raggedleft% + \setlength{\rightskip}{.033\textwidth} + % + % If we are not on the first page, insert a page number + % For some reason, insertframenumber is buggy when you have fragile + % slides with verbatim environments in them... it tends to skip numbers + % for some reason! On the other hand, the pagenumber is incremented + % for *every* slide, including transition slides... + \ifnum \thepage>1 + % \insertshorttitle + \insertframenumber + % \insertframenumber/\inserttotalframenumber + % \insertpagenumber + \else % Do a phantom of whatever you do on other pages, so spacing matches + %$\phantom{\insertshorttitle}$ + $\phantom{\insertframenumber}$ + %$\phantom{\insertframenumber/\inserttotalframenumber}$ + %$\phantom{\insertpagenumber}$ + \fi + \hfill\includegraphics[width=.5\textwidth]{figures/UT_logo}% + \end{minipage}% + }% + \vskip .023\textheight% +} + + + + +\ifTACCheadernav + +\usesectionheadtemplate +{\hfill\insertsectionhead} +{\hfill\color{fg!50!bg}\insertsectionhead} + +% Head +\ifbeamer@compress + +% Here we define how the top of the frame looks, the "headline". +\setbeamertemplate{headline} +{% + \ifnum \thepage>1 + \leavevmode% + \begin{beamercolorbox}[wd=.5\paperwidth,ht=2.5ex,dp=1.125ex]{% + section in head/foot}% + \insertsectionnavigationhorizontal{.5\paperwidth}{\hskip0pt plus1filll}{}% + \end{beamercolorbox}% + \begin{beamercolorbox}[wd=.5\paperwidth,ht=2.5ex,dp=1.125ex]{% + subsection in head/foot}% + \insertsubsectionnavigationhorizontal{% + .5\paperwidth}{}{\hskip0pt plus1filll}% + \end{beamercolorbox}% + \fi %\thepage>1 +} + +\else% Not compressed + +\setbeamertemplate{headline} +{% + \ifnum \thepage>1 + \leavevmode% + \@tempdimb=2.4375ex% + \ifnum\beamer@subsectionmax<\beamer@sectionmax% + \multiply\@tempdimb by\beamer@sectionmax% + \else% + \multiply\@tempdimb by\beamer@subsectionmax% + \fi% + \ifdim\@tempdimb>0pt% + \advance\@tempdimb by 1.125ex% + \begin{beamercolorbox}[wd=.5\paperwidth,ht=\@tempdimb]{% + section in head/foot}% + \vbox to\@tempdimb{\vfil\insertsectionnavigation{.5\paperwidth}\vfil}% + \end{beamercolorbox}% + \begin{beamercolorbox}[wd=.5\paperwidth,ht=\@tempdimb]{% + subsection in head/foot}% + \vbox to\@tempdimb{\vfil\insertsubsectionnavigation{.5\paperwidth}\vfil}% + \end{beamercolorbox}% + \fi% + \fi % \thepage>1 +} + +\fi % end if compressed +\fi % TACCheadernav + + +\ifTACCheadertree + +\setbeamertemplate{headline} +{ + \begin{beamercolorbox}[wd=\paperwidth,colsep=1.5pt + ]{upper separation line head} + \end{beamercolorbox} + % + % Place short title + % + \begin{beamercolorbox}[wd=\paperwidth,ht=2.5ex,dp=1.125ex,% + leftskip=.3cm,rightskip=.3cm plus1fil]{title in head/foot} + \usebeamerfont{title in head/foot}\insertshorttitle + \end{beamercolorbox} + + % + % Place section + % + \begin{beamercolorbox}[wd=\paperwidth,ht=2.5ex,dp=1.125ex,% + leftskip=.3cm,rightskip=.3cm plus1fil]{section in head/foot} + \usebeamerfont{section in head/foot}% + %\ifbeamer@tree@showhooks + \setbox\beamer@tempbox=\hbox{\insertsectionhead}% + \ifdim\wd\beamer@tempbox>1pt% + \hskip2pt\raise1.9pt\hbox{\vrule width0.4pt height1.875ex\vrule width 5pt height0.4pt}% + \hskip1pt% + \fi% \ifdim + %\else% + %\hskip6pt% + %\fi% \ifbeamer + \insertsectionhead + \end{beamercolorbox} + +% +% Place subsection +% +\begin{beamercolorbox}[wd=\paperwidth,ht=2.5ex,dp=1.125ex,% + leftskip=.3cm,rightskip=.3cm plus1fil]{subsection in head/foot} + \usebeamerfont{subsection in head/foot}% + %\ifbeamer@tree@showhooks + \setbox\beamer@tempbox=\hbox{\insertsubsectionhead}% + \ifdim\wd\beamer@tempbox>1pt% + \hskip9.4pt\raise1.9pt\hbox{\vrule width0.4pt height1.875ex\vrule width 5pt height0.4pt}% + \hskip1pt% + \fi% \ifdim + %\else% + %\hskip12pt% + %\fi% \ifbeamer + \insertsubsectionhead +\end{beamercolorbox} + +% +% Place final separation box +% + \begin{beamercolorbox}[wd=\paperwidth,colsep=1.5pt + ]{lower separation line head} + \end{beamercolorbox} + + % + % Another matching rule which helps to frame the content + % + \hspace{.025\textwidth}\rule{.95\textwidth}{.5pt} +} +\fi % TACCheadertree + + +% The following command suppresses all navigation symbols. This is +% necessary in the TACC theme, since it overlaps where we want the +% logo to be. +\setbeamertemplate{navigation symbols}{} + +% Align the navigation symbols vertically (still overlaps our logo!) +%\setbeamertemplate{navigation symbols}[vertical]{} + +% Only places the slide-forward and slide-back symbol, but yes, +% this still overlaps our logo! +%\setbeamertemplate{navigation symbols}[only frame symbol]{} + + +\mode + diff --git a/my_docs/21/lmod_zoom_mtg_2021_09_07/beamerouterthemeTACC16.sty b/my_docs/21/lmod_zoom_mtg_2021_09_07/beamerouterthemeTACC16.sty deleted file mode 120000 index 54bd09537..000000000 --- a/my_docs/21/lmod_zoom_mtg_2021_09_07/beamerouterthemeTACC16.sty +++ /dev/null @@ -1 +0,0 @@ -../../beamer/beamerouterthemeTACC16.sty \ No newline at end of file diff --git a/my_docs/21/lmod_zoom_mtg_2021_09_07/beamerouterthemeTACC16.sty b/my_docs/21/lmod_zoom_mtg_2021_09_07/beamerouterthemeTACC16.sty new file mode 100755 index 000000000..d5e6388c7 --- /dev/null +++ b/my_docs/21/lmod_zoom_mtg_2021_09_07/beamerouterthemeTACC16.sty @@ -0,0 +1,312 @@ +% Antonio Gomez (agomez@tacc.utexas.edu) +% 4-20-17. Added option to put the footer on the right side + + + +\mode + +\usepackage{xcolor} +\usepackage{graphicx} +\usepackage{etoolbox} + + + +% This theme accepts the "rightfooter" option +% When used, it will put the TACC logo at the bottom of the slide on the right side +% By default, it goes to the left + +\xifaspectratio{ + {169} { + \pgfdeclareimage[width=\paperwidth]{titlebackground}{./figures/master169.jpg} + \if@rightfooterOption + \pgfdeclareimage[width=\paperwidth]{background}{./figures/secondary_right169.jpg} +\else + \pgfdeclareimage[width=\paperwidth]{background}{./figures/secondary169.jpg} +\fi +} +}[ +\pgfdeclareimage[width=\paperwidth]{titlebackground}{./figures/master.jpg} + \if@rightfooterOption + \pgfdeclareimage[width=\paperwidth]{background}{./figures/secondary_right.jpg} +\else + \pgfdeclareimage[width=\paperwidth]{background}{./figures/secondary.jpg} +\fi +] + +\setbeamertemplate{background canvas}{% +\xifaspectratio{ + {169} { + \ifnum\c@framenumber=1 % + \begin{picture}(0,0) + \put(-3,-256){% + \pgfuseimage{titlebackground} + } + \end{picture} + \else% + \begin{picture}(0,0) + \put(-3,-260){% + \pgfuseimage{background} + } + \end{picture} + \fi + } + {43} { + \ifnum\c@framenumber=1 % + \begin{picture}(0,0) + \put(-4,-274){% + \pgfuseimage{titlebackground} + } + \end{picture} + \else% + \begin{picture}(0,0) + \put(-4,-274){% + \pgfuseimage{background} + } + \end{picture} + \fi + } +} +} + + + +%\setbeamertemplate{background canvas}{% +% % On title page +% \ifnum\c@framenumber=1 % +% \begin{picture}(0,0) +% \put(0,-253){% +% \pgfuseimage{titlebackground} +% } +% \end{picture} +% +% \else% +% \xifaspectratio{ +% {169} { +% % Other frames background +% \begin{picture}(0,0) +% \put(-4,-260){% +% \pgfuseimage{background} +% } +% \end{picture} +% } +% }[ +% % Other frames background +% \begin{picture}(0,0) +% \put(-4,-274){% +% \pgfuseimage{background} +% } +% \end{picture} +% ] +% \fi% +%} + + +\setbeamertemplate{title page}{ +\vspace{40pt} +\begin{center} +\usebeamerfont{title} {\huge \inserttitle}\par +\vspace{4ex} +\usebeamerfont{author} { + \insertauthor +}\par +\vspace{2ex} +\usebeamerfont{institute}{ + \insertinstitute +} \par +\vspace{2ex} +\usebeamerfont{date}{ + \insertdate +} +\end{center} +} + + +\setbeamertemplate{frametitle}[default][center] +\setbeamertemplate{frametitle}{ + \makeatletter + \regexpatchcmd{\insertframetitle} + {(\c{usebeamertemplate}.*)\c{fi}} + {\c{NoCaseChange}\cB\{\1\cE\}\c{fi}} + {}{}% + \makeatother + \vskip1ex + \insertframetitle +} + +% Here we define what appears at the bottom of each slide: the "footline". +\setbeamertemplate{footline}{% + \leavevmode% + + % Horizontal line dividing the rest of the slide from the footer? + % hrule goes all the way across... + % \hrule height.3pt% + % With \rule, you can specify the thickness + % \rule[raise-height]{width}{thickness} + % \hspace{.025\textwidth}\rule{.95\textwidth}{.5pt} + + \hbox{% + \ifnum \thepage>1 + \if@rightfooterOption + \begin{minipage}{.2\textwidth}% + \hskip .05\textwidth%Give horizontal space else this will set on the left edge of the slide! + \end{minipage} + \else + \begin{minipage}{.4\textwidth}% + \hskip .05\textwidth%Give horizontal space else this will set on the left edge of the slide! + \end{minipage} + \fi + + + \begin{minipage}{\textwidth}% + % \vskip .023\textheight% + \raggedleft% + \setlength{\rightskip}{\textwidth} + \if@rightfooterOption + \hbox{% + \begin{beamercolorbox}[wd=0.7\textwidth,ht=2.25ex,dp=1ex,left]{author in head/foot}% + \insertshorttitle{} \hskip .01\textwidth | \hskip .01\textwidth \insertdate{} \hskip .01\textwidth | \hskip .01\textwidth \insertframenumber{} + \end{beamercolorbox}% + } + \else + \hbox{% + \begin{beamercolorbox}[wd=0.5\textwidth,ht=2.25ex,dp=1ex,left]{author in head/foot}% + \insertshorttitle{} \hskip .01\textwidth | \hskip .01\textwidth \insertdate{} \hskip .01\textwidth | \hskip .01\textwidth \insertframenumber{} + \end{beamercolorbox}% + } + \fi + + \end{minipage}% + \begin{minipage}{.05\textwidth}% + \end{minipage}% + \fi %\thepage>1 + }% + \vskip .023\textheight% + +} + + + + +\ifTACCheadernav + +\usesectionheadtemplate +{\hfill\insertsectionhead} +{\hfill\color{fg!50!bg}\insertsectionhead} + +% Head +\ifbeamer@compress + +% Here we define how the top of the frame looks, the "headline". +\setbeamertemplate{headline} +{% + \ifnum \thepage>1 + \leavevmode% + \begin{beamercolorbox}[wd=.5\paperwidth,ht=2.5ex,dp=1.125ex]{% + section in head/foot}% + \insertsectionnavigationhorizontal{.5\paperwidth}{\hskip0pt plus1filll}{}% + \end{beamercolorbox}% + \begin{beamercolorbox}[wd=.5\paperwidth,ht=2.5ex,dp=1.125ex]{% + subsection in head/foot}% + \insertsubsectionnavigationhorizontal{% + .5\paperwidth}{}{\hskip0pt plus1filll}% + \end{beamercolorbox}% + \fi %\thepage>1 +} + +\else% Not compressed + +\setbeamertemplate{headline} +{% + \ifnum \thepage>1 + \leavevmode% + \@tempdimb=2.4375ex% + \ifnum\beamer@subsectionmax<\beamer@sectionmax% + \multiply\@tempdimb by\beamer@sectionmax% + \else% + \multiply\@tempdimb by\beamer@subsectionmax% + \fi% + \ifdim\@tempdimb>0pt% + \advance\@tempdimb by 1.125ex% + \begin{beamercolorbox}[wd=.5\paperwidth,ht=\@tempdimb]{% + section in head/foot}% + \vbox to\@tempdimb{\vfil\insertsectionnavigation{.5\paperwidth}\vfil}% + \end{beamercolorbox}% + \begin{beamercolorbox}[wd=.5\paperwidth,ht=\@tempdimb]{% + subsection in head/foot}% + \vbox to\@tempdimb{\vfil\insertsubsectionnavigation{.5\paperwidth}\vfil}% + \end{beamercolorbox}% + \fi% + \fi % \thepage>1 +} + +\fi % end if compressed +\fi % TACCheadernav + + +\ifTACCheadertree + +\setbeamertemplate{headline} +{ + \begin{beamercolorbox}[wd=\paperwidth,colsep=1.5pt]{upper separation line head} + \end{beamercolorbox} + % + % Place short title + % + \begin{beamercolorbox}[wd=\paperwidth,ht=2.5ex,dp=1.125ex,% + leftskip=.3cm,rightskip=.3cm plus1fil]{title in head/foot} + \usebeamerfont{title in head/foot}\insertshorttitle + \end{beamercolorbox} + + % + % Place section + % + \begin{beamercolorbox}[wd=\paperwidth,ht=2.5ex,dp=1.125ex,% + leftskip=.3cm,rightskip=.3cm plus1fil]{section in head/foot} + \usebeamerfont{section in head/foot}% + %\ifbeamer@tree@showhooks + \setbox\beamer@tempbox=\hbox{\insertsectionhead}% + \ifdim\wd\beamer@tempbox>1pt% + \hskip2pt\raise1.9pt\hbox{\vrule width0.4pt height1.875ex\vrule width 5pt height0.4pt}% + \hskip1pt% + \fi + \insertsectionhead + \end{beamercolorbox} + +% +% Place subsection +% +\begin{beamercolorbox}[wd=\paperwidth,ht=2.5ex,dp=1.125ex,% + leftskip=.3cm,rightskip=.3cm plus1fil]{subsection in head/foot} + \usebeamerfont{subsection in head/foot}% + %\ifbeamer@tree@showhooks + \setbox\beamer@tempbox=\hbox{\insertsubsectionhead}% + \ifdim\wd\beamer@tempbox>1pt% + \hskip9.4pt\raise1.9pt\hbox{\vrule width0.4pt height1.875ex\vrule width 5pt height0.4pt}% + \hskip1pt% + \fi + \insertsubsectionhead +\end{beamercolorbox} + +% +% Place final separation box +% + \begin{beamercolorbox}[wd=\paperwidth,colsep=1.5pt + ]{lower separation line head} + \end{beamercolorbox} + + % + % Another matching rule which helps to frame the content + % + \hspace{.025\textwidth}\rule{.95\textwidth}{.5pt} +} +\fi % TACCheadertree + + +% The following command suppresses all navigation symbols. This is +% necessary in the TACC theme, since it overlaps where we want the +% logo to be. +\setbeamertemplate{navigation symbols}{} + + +\mode + diff --git a/my_docs/21/lmod_zoom_mtg_2021_09_07/beamerthemeTACC.sty b/my_docs/21/lmod_zoom_mtg_2021_09_07/beamerthemeTACC.sty deleted file mode 120000 index 5c339abd4..000000000 --- a/my_docs/21/lmod_zoom_mtg_2021_09_07/beamerthemeTACC.sty +++ /dev/null @@ -1 +0,0 @@ -../../beamer/beamerthemeTACC.sty \ No newline at end of file diff --git a/my_docs/21/lmod_zoom_mtg_2021_09_07/beamerthemeTACC.sty b/my_docs/21/lmod_zoom_mtg_2021_09_07/beamerthemeTACC.sty new file mode 100755 index 000000000..c6a1b1269 --- /dev/null +++ b/my_docs/21/lmod_zoom_mtg_2021_09_07/beamerthemeTACC.sty @@ -0,0 +1,26 @@ +%% TACC theme for beamer + +\newif\ifTACCheadernav +\DeclareOption{headernav}{\global\TACCheadernavtrue} + +\newif\ifTACCheadertree +\DeclareOption{headertree}{\global\TACCheadertreetrue} +\ProcessOptions + +\mode + +\usefonttheme{TACC} +\usecolortheme{TACC} +\useinnertheme{TACC} +\useoutertheme{TACC} + +\mode + + +\newcommand{\event}[1]{% + \makeatletter% + \def\TACC@eventname{#1}% + \makeatother} + +\newcommand{\sectionframe}[1]{\section{#1}\frame{\Large\textbf{#1}}} +\newcommand{\subsectionframe}[1]{\subsection{#1}\frame{\large\textbf{#1}}} diff --git a/my_docs/21/lmod_zoom_mtg_2021_09_07/beamerthemeTACC16.sty b/my_docs/21/lmod_zoom_mtg_2021_09_07/beamerthemeTACC16.sty deleted file mode 120000 index 7a9d4d296..000000000 --- a/my_docs/21/lmod_zoom_mtg_2021_09_07/beamerthemeTACC16.sty +++ /dev/null @@ -1 +0,0 @@ -../../beamer/beamerthemeTACC16.sty \ No newline at end of file diff --git a/my_docs/21/lmod_zoom_mtg_2021_09_07/beamerthemeTACC16.sty b/my_docs/21/lmod_zoom_mtg_2021_09_07/beamerthemeTACC16.sty new file mode 100755 index 000000000..b522d0207 --- /dev/null +++ b/my_docs/21/lmod_zoom_mtg_2021_09_07/beamerthemeTACC16.sty @@ -0,0 +1,61 @@ +%% TACC theme for beamer + + +\newif\if@rightfooterOption +\@rightfooterOptionfalse +\DeclareOption{rightfooter}{\@rightfooterOptiontrue} +\ProcessOptions + + +\newif\ifTACCheadernav +\DeclareOption{headernav}{\global\TACCheadernavtrue} + +\newif\ifTACCheadertree +\DeclareOption{headertree}{\global\TACCheadertreetrue} +\ProcessOptions + +\usepackage{xparse} +\ExplSyntaxOn +\NewDocumentCommand{\ifaspectratio}{mmm} + { + % Recover the option from those passed to the class + \keys_set:nf { zunbeltz/beameroptions } { \use:c { opt@beamer.cls } } + \str_if_eq:nVTF { #1 } \l_zunbeltz_aspectratio_tl { #2 } { #3 } + } +\NewDocumentCommand{\xifaspectratio}{mO{}} + { + % Recover the option from those passed to the class + \keys_set:nf { zunbeltz/beameroptions } { \use:c { opt@beamer.cls } } + \str_case:VnF \l_zunbeltz_aspectratio_tl { #1 } { #2 } + } +% We need to define only one key, the other are treated as `unknown' +\keys_define:nn { zunbeltz/beameroptions } + { + aspectratio .tl_set:N = \l_zunbeltz_aspectratio_tl, + aspectratio .initial:n = 43, + unknown .code:n = {}, + } + +% Generate the variants we need +\cs_generate_variant:Nn \keys_set:nn { nf } +\cs_generate_variant:Nn \str_if_eq:nnTF { nV } +\cs_generate_variant:Nn \str_case:nnF { V } +\ExplSyntaxOff + +\mode + +\usefonttheme{TACC16} +\useinnertheme{TACC16} +\useoutertheme{TACC16} +\usecolortheme{TACC16} + +\mode + + +\newcommand{\event}[1]{% + \makeatletter% + \def\TACC@eventname{#1}% + \makeatother} + +\newcommand{\sectionframe}[1]{\section{#1}\frame{\Large\textbf{#1}}} +\newcommand{\subsectionframe}[1]{\subsection{#1}\frame{\large\textbf{#1}}} diff --git a/my_docs/21/lmod_zoom_mtg_2021_09_07/figures b/my_docs/21/lmod_zoom_mtg_2021_09_07/figures deleted file mode 120000 index ddafd8974..000000000 --- a/my_docs/21/lmod_zoom_mtg_2021_09_07/figures +++ /dev/null @@ -1 +0,0 @@ -../../beamer/figures \ No newline at end of file diff --git a/my_docs/21/lmod_zoom_mtg_2021_09_07/figures/TACC_logo.pdf b/my_docs/21/lmod_zoom_mtg_2021_09_07/figures/TACC_logo.pdf new file mode 100755 index 000000000..c018a20cb Binary files /dev/null and b/my_docs/21/lmod_zoom_mtg_2021_09_07/figures/TACC_logo.pdf differ diff --git a/my_docs/21/lmod_zoom_mtg_2021_09_07/figures/UT_logo.pdf b/my_docs/21/lmod_zoom_mtg_2021_09_07/figures/UT_logo.pdf new file mode 100755 index 000000000..d5b42e752 Binary files /dev/null and b/my_docs/21/lmod_zoom_mtg_2021_09_07/figures/UT_logo.pdf differ diff --git a/my_docs/21/lmod_zoom_mtg_2021_09_07/figures/cc.png b/my_docs/21/lmod_zoom_mtg_2021_09_07/figures/cc.png new file mode 100644 index 000000000..8a532ff8f Binary files /dev/null and b/my_docs/21/lmod_zoom_mtg_2021_09_07/figures/cc.png differ diff --git a/my_docs/21/lmod_zoom_mtg_2021_09_07/figures/isa.png b/my_docs/21/lmod_zoom_mtg_2021_09_07/figures/isa.png new file mode 100644 index 000000000..f95d985e7 Binary files /dev/null and b/my_docs/21/lmod_zoom_mtg_2021_09_07/figures/isa.png differ diff --git a/my_docs/21/lmod_zoom_mtg_2021_09_07/figures/master.jpg b/my_docs/21/lmod_zoom_mtg_2021_09_07/figures/master.jpg new file mode 100644 index 000000000..f5c56c04a Binary files /dev/null and b/my_docs/21/lmod_zoom_mtg_2021_09_07/figures/master.jpg differ diff --git a/my_docs/21/lmod_zoom_mtg_2021_09_07/figures/master169.jpg b/my_docs/21/lmod_zoom_mtg_2021_09_07/figures/master169.jpg new file mode 100644 index 000000000..b215776eb Binary files /dev/null and b/my_docs/21/lmod_zoom_mtg_2021_09_07/figures/master169.jpg differ diff --git a/my_docs/21/lmod_zoom_mtg_2021_09_07/figures/master169.png b/my_docs/21/lmod_zoom_mtg_2021_09_07/figures/master169.png new file mode 100644 index 000000000..bc5c0ed12 Binary files /dev/null and b/my_docs/21/lmod_zoom_mtg_2021_09_07/figures/master169.png differ diff --git a/my_docs/21/lmod_zoom_mtg_2021_09_07/figures/secondary.jpg b/my_docs/21/lmod_zoom_mtg_2021_09_07/figures/secondary.jpg new file mode 100644 index 000000000..d905a95c9 Binary files /dev/null and b/my_docs/21/lmod_zoom_mtg_2021_09_07/figures/secondary.jpg differ diff --git a/my_docs/21/lmod_zoom_mtg_2021_09_07/figures/secondary169.jpg b/my_docs/21/lmod_zoom_mtg_2021_09_07/figures/secondary169.jpg new file mode 100644 index 000000000..4eb017957 Binary files /dev/null and b/my_docs/21/lmod_zoom_mtg_2021_09_07/figures/secondary169.jpg differ diff --git a/my_docs/21/lmod_zoom_mtg_2021_09_07/figures/secondary169.png b/my_docs/21/lmod_zoom_mtg_2021_09_07/figures/secondary169.png new file mode 100644 index 000000000..cb9060a56 Binary files /dev/null and b/my_docs/21/lmod_zoom_mtg_2021_09_07/figures/secondary169.png differ diff --git a/my_docs/21/lmod_zoom_mtg_2021_09_07/figures/secondary_right.jpg b/my_docs/21/lmod_zoom_mtg_2021_09_07/figures/secondary_right.jpg new file mode 100644 index 000000000..f25f93a58 Binary files /dev/null and b/my_docs/21/lmod_zoom_mtg_2021_09_07/figures/secondary_right.jpg differ diff --git a/my_docs/21/lmod_zoom_mtg_2021_09_07/figures/secondary_right169.jpg b/my_docs/21/lmod_zoom_mtg_2021_09_07/figures/secondary_right169.jpg new file mode 100644 index 000000000..567a1078f Binary files /dev/null and b/my_docs/21/lmod_zoom_mtg_2021_09_07/figures/secondary_right169.jpg differ diff --git a/my_docs/21/lmod_zoom_mtg_2021_09_07/themes b/my_docs/21/lmod_zoom_mtg_2021_09_07/themes deleted file mode 120000 index a98530730..000000000 --- a/my_docs/21/lmod_zoom_mtg_2021_09_07/themes +++ /dev/null @@ -1 +0,0 @@ -../../beamer/themes \ No newline at end of file diff --git a/my_docs/21/lmod_zoom_mtg_2021_09_07/themes/beamercolorthemeTACC16.sty b/my_docs/21/lmod_zoom_mtg_2021_09_07/themes/beamercolorthemeTACC16.sty new file mode 100644 index 000000000..248ae8cb6 --- /dev/null +++ b/my_docs/21/lmod_zoom_mtg_2021_09_07/themes/beamercolorthemeTACC16.sty @@ -0,0 +1,193 @@ +% Copyright 2003 by Till Tantau . +% +% This program can be redistributed and/or modified under the terms +% of the GNU Public License, version 2. + +\mode + +\usepackage{textcase,regexpatch} + +\setbeamertemplate{blocks}[rounded][shadow=true] + + +\definecolor{TACCred}{RGB}{180,13,29} +\definecolor{TACCorange}{RGB}{210,104,43} +\definecolor{TACCblue}{RGB}{21,77,122} +%\definecolor{TACCgreen}{RGB}{30,134,104} +\definecolor{TACCgreen}{RGB}{49,168,51} + +% I downloaded a gimp color palette from +% http://maururu.net/2007/latex-beamer-color-palette/ +% Which provides rgb values (I think) for several of the +% default beamer themes. You can open this in gimp by +% opening the Palettes dialog, right-clicking anywhere and choosing +% 'Import Palette'. A color in there called 'default added blue' +% appeared to be approximately what I wanted. It had the triple +% of values 141 145 208. If you double-click on this in the +% palette editor it gives you a bunch of information. You can't +% use these values directly to set a color...it just comes out white. +% I think definecolor is expecting something normalized by 255. Yes! + + +%%% +% Set the normal text color +%%% +\setbeamercolor{normal text}{fg=black} %,bg=white} +\setbeamercolor{example text}{fg=TACCgreen} +\setbeamercolor{alerted text}{fg=TACCorange} + + +\setbeamercolor{structure}{fg=black} +%\setbeamercolor{structure}{fg=black} + +\setbeamercolor{background canvas}{parent=normal text} +\setbeamercolor{background}{parent=background canvas} + +\setbeamercolor{palette primary}{use=structure,fg=structure.fg} +\setbeamercolor{palette secondary}{use=structure,fg=structure.fg!75!black} +\setbeamercolor{palette tertiary}{use=structure,fg=structure.fg!50!black} +\setbeamercolor{palette quaternary}{fg=black} + +\setbeamercolor{palette sidebar primary}{use=normal text,fg=normal text.fg} +\setbeamercolor{palette sidebar secondary}{use=structure,fg=structure.fg} +\setbeamercolor{palette sidebar tertiary}{use=normal text,fg=normal text.fg} +\setbeamercolor{palette sidebar quaternary}{use=structure,fg=structure.fg} + +\setbeamercolor{math text}{} +\setbeamercolor{math text inlined}{parent=math text} +\setbeamercolor{math text displayed}{parent=math text} + +\setbeamercolor{normal text in math text}{} + +\setbeamercolor{local structure}{parent=structure} + +\setbeamercolor{titlelike}{parent=structure} + +\setbeamercolor{title}{parent=titlelike} +\setbeamercolor{title in head/foot}{parent=palette quaternary} +\setbeamercolor{title in sidebar}{parent=palette sidebar quaternary} + +\setbeamercolor{subtitle}{parent=title} + +\setbeamercolor{author}{} +\setbeamercolor{author in head/foot}{parent=palette primary} +\setbeamercolor{author in sidebar}{use=palette sidebar tertiary,fg=palette sidebar tertiary.fg} + +\setbeamercolor{institute}{} +\setbeamercolor{institute in head/foot}{parent=palette tertiary} +\setbeamercolor{institute in sidebar}{use=palette sidebar tertiary,fg=palette sidebar tertiary.fg} + +\setbeamercolor{date}{} +\setbeamercolor{date in head/foot}{parent=palette secondary} +\setbeamercolor{date in sidebar}{use=palette sidebar tertiary,fg=palette sidebar tertiary.fg} + +\setbeamercolor{titlegraphic}{} + +\setbeamercolor{part name}{} +\setbeamercolor{part title}{parent=titlelike} + +\setbeamercolor{section in toc}{parent=structure} +\setbeamercolor{section in toc shaded}{parent=section in toc} +\setbeamercolor{section in head/foot}{parent=palette tertiary} +\setbeamercolor{section in sidebar}{parent=palette sidebar secondary} +\setbeamercolor{section in sidebar shaded}{use=section in sidebar,fg=section in sidebar.fg!40!bg} +\setbeamercolor{section number projected}{parent=item projected} + +\setbeamercolor{subsection in toc}{} +\setbeamercolor{subsection in toc shaded}{parent=subsection in toc} +\setbeamercolor{subsection in head/foot}{parent=palette secondary} +\setbeamercolor{subsection in sidebar}{parent=palette sidebar primary} +\setbeamercolor{subsection in sidebar shaded}{use=subsection in sidebar,fg=subsection in sidebar.fg!40!bg} +\setbeamercolor{subsection number projected}{parent={subitem projected}} + +\setbeamercolor{subsubsection in toc}{parent=subsection in toc} +\setbeamercolor{subsubsection in toc shaded}{parent=subsubsection in toc} +\setbeamercolor{subsubsection in head/foot}{parent=subsection in head/foot} +\setbeamercolor{subsubsection in sidebar}{parent=subsection in sidebar} +\setbeamercolor{subsubsection in sidebar shaded}{parent=subsection in sidebar shaded} +\setbeamercolor{subsubsection number projected}{parent=subsubitem projected} + +\setbeamercolor{headline}{} +\setbeamercolor{footline}{} + +\setbeamercolor{sidebar}{} +\setbeamercolor{sidebar left}{parent=sidebar} +\setbeamercolor{sidebar right}{parent=sidebar} + +\setbeamercolor{logo}{parent=palette secondary} + +\setbeamercolor{frametitle}{parent=titlelike} +\setbeamercolor{framesubtitle}{parent=frametitle} + +\setbeamercolor{frametitle right}{parent=frametitle} + +\setbeamercolor{caption}{} +\setbeamercolor{caption name}{parent=structure} + +\setbeamercolor{button}{use=local structure,bg=local structure.fg!50!bg,fg=white} +\setbeamercolor{button border}{use=button,fg=button.bg} +\setbeamercolor{navigation symbols}{use=structure,fg=structure.fg!40!bg} +\setbeamercolor{navigation symbols dimmed}{use=structure,fg=structure.fg!20!bg} +\setbeamercolor{mini frame}{parent=section in head/foot} + +\setbeamercolor{block body}{fg=black} +\setbeamercolor{block body alerted}{fg=black} +\setbeamercolor{block body example}{fg=black} + +\setbeamercolor{block title}{bg=TACCblue,fg=white} +\setbeamercolor{block title alerted}{bg=TACCred,fg=white} +\setbeamercolor{block title example}{bg=TACCgreen,fg=white} + +\setbeamercolor{item}{parent=local structure} +\setbeamercolor{subitem}{parent=item} +\setbeamercolor{subsubitem}{parent=subitem} + +\setbeamercolor{item projected}{parent=item,use=item,fg=black,bg=item.fg} +\setbeamercolor{subitem projected}{parent=item projected} +\setbeamercolor{subsubitem projected}{parent=subitem projected} + +\setbeamercolor{enumerate item}{parent=item} +\setbeamercolor{enumerate subitem}{parent=subitem} +\setbeamercolor{enumerate subsubitem}{parent=subsubitem} + +\setbeamercolor{itemize item}{parent=item} +\setbeamercolor{itemize subitem}{parent=subitem} +\setbeamercolor{itemize subsubitem}{parent=subsubitem} + +\setbeamercolor{itemize/enumerate body}{} +\setbeamercolor{itemize/enumerate subbody}{} +\setbeamercolor{itemize/enumerate subsubbody}{} + +\setbeamercolor{description item}{parent=item} + +\setbeamercolor{bibliography item}{parent=item} + +\setbeamercolor{bibliography entry author}{use=structure,fg=structure.fg} +\setbeamercolor{bibliography entry title}{use=normal text,fg=normal text.fg} +\setbeamercolor{bibliography entry location}{use=structure,fg=structure.fg!65!bg} +\setbeamercolor{bibliography entry note}{use=structure,fg=structure.fg!65!bg} + +\setbeamercolor{separation line}{} + +\setbeamercolor{upper separation line head}{parent=separation line} +\setbeamercolor{middle separation line head}{parent=separation line} +\setbeamercolor{lower separation line head}{parent=separation line} + +\setbeamercolor{upper separation line foot}{parent=separation line} +\setbeamercolor{middle separation line foot}{parent=separation line} +\setbeamercolor{lower separation line foot}{parent=separation line} + +\setbeamercolor{abstract}{} +\setbeamercolor{abstract title}{parent=structure} + +\setbeamercolor{verse}{} + +\setbeamercolor{quotation}{} +\setbeamercolor{quote}{parent=quotation} + +\setbeamercolor{page number in head/foot}{fg=fg!50!bg} + +\setbeamercolor{qed symbol}{parent=structure} + +\mode + diff --git a/my_docs/21/lmod_zoom_mtg_2021_09_07/themes/beamerfontthemeTACC16.sty b/my_docs/21/lmod_zoom_mtg_2021_09_07/themes/beamerfontthemeTACC16.sty new file mode 100644 index 000000000..d0fc325cc --- /dev/null +++ b/my_docs/21/lmod_zoom_mtg_2021_09_07/themes/beamerfontthemeTACC16.sty @@ -0,0 +1,21 @@ +% Copyright 2003 by Till Tantau +% +% This program can be redistributed and/or modified under the terms +% of the GNU Public License, version 2. + +\mode +\setbeamerfont{title}{parent=structure,size=\LARGE,series=\bfseries} +\setbeamerfont{author}{parent=structure,size=\large, series=\normalfont} +\setbeamerfont{frametitle}{parent=structure,size=\LARGE,series=\bfseries} +\setbeamerfont{framesubtitle}{parent=frametitle,size=\small} + +%\usefonttheme{professionalfonts} % using non standard fonts for beamer +%\usefonttheme{serif} % default family is serif +%\usepackage{fontspec} +%\setmainfont{Century Gothic} + +%\usepackage{fontspec} +\usepackage{libertine} + +\mode + diff --git a/my_docs/21/lmod_zoom_mtg_2021_09_07/themes/beamerinnerthemeTACC16.sty b/my_docs/21/lmod_zoom_mtg_2021_09_07/themes/beamerinnerthemeTACC16.sty new file mode 100644 index 000000000..f7f454e1d --- /dev/null +++ b/my_docs/21/lmod_zoom_mtg_2021_09_07/themes/beamerinnerthemeTACC16.sty @@ -0,0 +1,11 @@ +\mode + +\setbeamertemplate{itemize item}[triangle] +\setbeamertemplate{itemize subitem}[triangle] +\setbeamertemplate{itemize subsubitem}[triangle] +\setbeamertemplate{section in toc}{$\bullet$\hskip.5em\inserttocsection} +%\setbeamertemplate{subsection in toc}{} +\setbeamertemplate{subsubsection in toc}{} + +\mode + diff --git a/my_docs/21/lmod_zoom_mtg_2021_09_07/themes/beamerouterthemeTACC16-169.sty b/my_docs/21/lmod_zoom_mtg_2021_09_07/themes/beamerouterthemeTACC16-169.sty new file mode 100644 index 000000000..c62f9ed04 --- /dev/null +++ b/my_docs/21/lmod_zoom_mtg_2021_09_07/themes/beamerouterthemeTACC16-169.sty @@ -0,0 +1,247 @@ +% Copyright 2003 by Till Tantau +% +% This program can be redistributed and/or modified under the terms +% of the GNU Public License, version 2. + +\mode + +\usepackage{xcolor} +\usepackage{graphicx} +\usepackage{etoolbox} + +\pgfdeclareimage[width=\paperwidth]{titlebackground}{./figures/master169.png} +\pgfdeclareimage[width=\paperwidth]{background}{./figures/secondary169.png} + +\setbeamertemplate{background canvas}{% + \ifnum\c@framenumber=1% + \begin{picture}(0,0) + \put(-0.15,-250){% + \pgfuseimage{titlebackground} + } + %\put(0,-130.7){% + + %\begin{minipage}[b][45mm][t]{\textwidth}%{226mm} + %\begin{center} + % \usebeamerfont{title}{\MakeTextUppercase{\inserttitle}\par} + %\vspace{2ex} + %\usebeamerfont{author}{\insertauthor} + % \end{center} + %\end{minipage} + %} + \end{picture} + % On title page + \else% + % Other frames background + \begin{picture}(0,0) + \put(-0.15,-255.55){% + \pgfuseimage{background} + } + \end{picture} + \fi% +} + + +\setbeamertemplate{title page}{ +\vspace{40pt} +\begin{center} +\usebeamerfont{title} {\huge \inserttitle}\par +\vspace{4ex} +\usebeamerfont{author} { + \insertauthor +}\par +\vspace{2ex} +\usebeamerfont{institute}{ + \insertinstitute +} \par +\vspace{2ex} +\usebeamerfont{date}{ + \insertdate +} +\end{center} +} + + +\setbeamertemplate{frametitle}[default][center] +\setbeamertemplate{frametitle}{ + \makeatletter + \regexpatchcmd{\insertframetitle} + {(\c{usebeamertemplate}.*)\c{fi}} + {\c{NoCaseChange}\cB\{\1\cE\}\c{fi}} + {}{}% + \makeatother + \vskip1ex + \insertframetitle +} + +% Here we define what appears at the bottom of each slide: the "footline". +\setbeamertemplate{footline}{% + \leavevmode% + + % Horizontal line dividing the rest of the slide from the footer? + % hrule goes all the way across... + % \hrule height.3pt% + % With \rule, you can specify the thickness + % \rule[raise-height]{width}{thickness} + % \hspace{.025\textwidth}\rule{.95\textwidth}{.5pt} + + \hbox{% + \ifnum \thepage>1 + % On the left half of the footer, insert the TACC of + \begin{minipage}{.2\textwidth}% + \hskip .05\textwidth%Give horizontal space else this will set on the left edge of the slide! + % \includegraphics[width=.8\textwidth]{TACC_logo.png} + \end{minipage} + + + \begin{minipage}{\textwidth}% + % \vskip .023\textheight% + \raggedleft% + \setlength{\rightskip}{\textwidth} + \hbox{% + \begin{beamercolorbox}[wd=0.7\textwidth,ht=2.25ex,dp=1ex,left]{author in head/foot}% + \insertshorttitle{} \hskip .01\textwidth | \hskip .01\textwidth \insertdate{} \hskip .01\textwidth | \hskip .01\textwidth \insertframenumber{} + \end{beamercolorbox}% + } + + % + % If we are not on the first page, insert a page number + % For some reason, insertframenumber is buggy when you have fragile + % slides with verbatim environments in them... it tends to skip numbers + % for some reason! On the other hand, the pagenumber is incremented + % for *every* slide, including transition slides... + % \hfill\includegraphics[width=\textwidth]{tacc_ut.png} + \end{minipage}% + \begin{minipage}{.05\textwidth}% + \end{minipage}% + \fi %\thepage>1 + }% + \vskip .023\textheight% + +} + + + + +\ifTACCheadernav + +\usesectionheadtemplate +{\hfill\insertsectionhead} +{\hfill\color{fg!50!bg}\insertsectionhead} + +% Head +\ifbeamer@compress + +% Here we define how the top of the frame looks, the "headline". +\setbeamertemplate{headline} +{% + \ifnum \thepage>1 + \leavevmode% + \begin{beamercolorbox}[wd=.5\paperwidth,ht=2.5ex,dp=1.125ex]{% + section in head/foot}% + \insertsectionnavigationhorizontal{.5\paperwidth}{\hskip0pt plus1filll}{}% + \end{beamercolorbox}% + \begin{beamercolorbox}[wd=.5\paperwidth,ht=2.5ex,dp=1.125ex]{% + subsection in head/foot}% + \insertsubsectionnavigationhorizontal{% + .5\paperwidth}{}{\hskip0pt plus1filll}% + \end{beamercolorbox}% + \fi %\thepage>1 +} + +\else% Not compressed + +\setbeamertemplate{headline} +{% + \ifnum \thepage>1 + \leavevmode% + \@tempdimb=2.4375ex% + \ifnum\beamer@subsectionmax<\beamer@sectionmax% + \multiply\@tempdimb by\beamer@sectionmax% + \else% + \multiply\@tempdimb by\beamer@subsectionmax% + \fi% + \ifdim\@tempdimb>0pt% + \advance\@tempdimb by 1.125ex% + \begin{beamercolorbox}[wd=.5\paperwidth,ht=\@tempdimb]{% + section in head/foot}% + \vbox to\@tempdimb{\vfil\insertsectionnavigation{.5\paperwidth}\vfil}% + \end{beamercolorbox}% + \begin{beamercolorbox}[wd=.5\paperwidth,ht=\@tempdimb]{% + subsection in head/foot}% + \vbox to\@tempdimb{\vfil\insertsubsectionnavigation{.5\paperwidth}\vfil}% + \end{beamercolorbox}% + \fi% + \fi % \thepage>1 +} + +\fi % end if compressed +\fi % TACCheadernav + + +\ifTACCheadertree + +\setbeamertemplate{headline} +{ + \begin{beamercolorbox}[wd=\paperwidth,colsep=1.5pt]{upper separation line head} + \end{beamercolorbox} + % + % Place short title + % + \begin{beamercolorbox}[wd=\paperwidth,ht=2.5ex,dp=1.125ex,% + leftskip=.3cm,rightskip=.3cm plus1fil]{title in head/foot} + \usebeamerfont{title in head/foot}\insertshorttitle + \end{beamercolorbox} + + % + % Place section + % + \begin{beamercolorbox}[wd=\paperwidth,ht=2.5ex,dp=1.125ex,% + leftskip=.3cm,rightskip=.3cm plus1fil]{section in head/foot} + \usebeamerfont{section in head/foot}% + %\ifbeamer@tree@showhooks + \setbox\beamer@tempbox=\hbox{\insertsectionhead}% + \ifdim\wd\beamer@tempbox>1pt% + \hskip2pt\raise1.9pt\hbox{\vrule width0.4pt height1.875ex\vrule width 5pt height0.4pt}% + \hskip1pt% + \fi + \insertsectionhead + \end{beamercolorbox} + +% +% Place subsection +% +\begin{beamercolorbox}[wd=\paperwidth,ht=2.5ex,dp=1.125ex,% + leftskip=.3cm,rightskip=.3cm plus1fil]{subsection in head/foot} + \usebeamerfont{subsection in head/foot}% + %\ifbeamer@tree@showhooks + \setbox\beamer@tempbox=\hbox{\insertsubsectionhead}% + \ifdim\wd\beamer@tempbox>1pt% + \hskip9.4pt\raise1.9pt\hbox{\vrule width0.4pt height1.875ex\vrule width 5pt height0.4pt}% + \hskip1pt% + \fi + \insertsubsectionhead +\end{beamercolorbox} + +% +% Place final separation box +% + \begin{beamercolorbox}[wd=\paperwidth,colsep=1.5pt + ]{lower separation line head} + \end{beamercolorbox} + + % + % Another matching rule which helps to frame the content + % + \hspace{.025\textwidth}\rule{.95\textwidth}{.5pt} +} +\fi % TACCheadertree + + +% The following command suppresses all navigation symbols. This is +% necessary in the TACC theme, since it overlaps where we want the +% logo to be. +\setbeamertemplate{navigation symbols}{} + + +\mode + diff --git a/my_docs/21/lmod_zoom_mtg_2021_09_07/themes/beamerouterthemeTACC16.sty b/my_docs/21/lmod_zoom_mtg_2021_09_07/themes/beamerouterthemeTACC16.sty new file mode 100644 index 000000000..c5b178018 --- /dev/null +++ b/my_docs/21/lmod_zoom_mtg_2021_09_07/themes/beamerouterthemeTACC16.sty @@ -0,0 +1,247 @@ +% Copyright 2003 by Till Tantau +% +% This program can be redistributed and/or modified under the terms +% of the GNU Public License, version 2. + +\mode + +\usepackage{xcolor} +\usepackage{graphicx} +\usepackage{etoolbox} + +\pgfdeclareimage[width=\paperwidth]{titlebackground}{master.jpg} +\pgfdeclareimage[width=\paperwidth]{background}{secondary.jpg} + +\setbeamertemplate{background canvas}{% + \ifnum\c@framenumber=1% + \begin{picture}(0,0) + \put(0,-273){% + \pgfuseimage{titlebackground} + } + %\put(0,-130.7){% + + %\begin{minipage}[b][45mm][t]{\textwidth}%{226mm} + %\begin{center} + % \usebeamerfont{title}{\MakeTextUppercase{\inserttitle}\par} + %\vspace{2ex} + %\usebeamerfont{author}{\insertauthor} + % \end{center} + %\end{minipage} + %} + \end{picture} + % On title page + \else% + % Other frames background + \begin{picture}(0,0) + \put(0,-273){% + \pgfuseimage{background} + } + \end{picture} + \fi% +} + + +\setbeamertemplate{title page}{ +\vspace{40pt} +\begin{center} +\usebeamerfont{title} {\huge \inserttitle}\par +\vspace{4ex} +\usebeamerfont{author} { + \insertauthor +}\par +\vspace{2ex} +\usebeamerfont{institute}{ + \insertinstitute +} \par +\vspace{2ex} +\usebeamerfont{date}{ + \insertdate +} +\end{center} +} + + +\setbeamertemplate{frametitle}[default][center] +\setbeamertemplate{frametitle}{ + \makeatletter + \regexpatchcmd{\insertframetitle} + {(\c{usebeamertemplate}.*)\c{fi}} + {\c{NoCaseChange}\cB\{\1\cE\}\c{fi}} + {}{}% + \makeatother + \vskip1ex + \insertframetitle +} + +% Here we define what appears at the bottom of each slide: the "footline". +\setbeamertemplate{footline}{% + \leavevmode% + + % Horizontal line dividing the rest of the slide from the footer? + % hrule goes all the way across... + % \hrule height.3pt% + % With \rule, you can specify the thickness + % \rule[raise-height]{width}{thickness} + % \hspace{.025\textwidth}\rule{.95\textwidth}{.5pt} + + \hbox{% + \ifnum \thepage>1 + % On the left half of the footer, insert the TACC of + \begin{minipage}{.2\textwidth}% + \hskip .05\textwidth%Give horizontal space else this will set on the left edge of the slide! + % \includegraphics[width=.8\textwidth]{figures/TACC_logo.png} + \end{minipage} + + + \begin{minipage}{\textwidth}% + % \vskip .023\textheight% + \raggedleft% + \setlength{\rightskip}{\textwidth} + \hbox{% + \begin{beamercolorbox}[wd=0.7\textwidth,ht=2.25ex,dp=1ex,left]{author in head/foot}% + \insertshorttitle{} \hskip .01\textwidth | \hskip .01\textwidth \insertdate{} \hskip .01\textwidth | \hskip .01\textwidth \insertframenumber{} + \end{beamercolorbox}% + } + + % + % If we are not on the first page, insert a page number + % For some reason, insertframenumber is buggy when you have fragile + % slides with verbatim environments in them... it tends to skip numbers + % for some reason! On the other hand, the pagenumber is incremented + % for *every* slide, including transition slides... + % \hfill\includegraphics[width=\textwidth]{figures/tacc_ut.png} + \end{minipage}% + \begin{minipage}{.05\textwidth}% + \end{minipage}% + \fi %\thepage>1 + }% + \vskip .023\textheight% + +} + + + + +\ifTACCheadernav + +\usesectionheadtemplate +{\hfill\insertsectionhead} +{\hfill\color{fg!50!bg}\insertsectionhead} + +% Head +\ifbeamer@compress + +% Here we define how the top of the frame looks, the "headline". +\setbeamertemplate{headline} +{% + \ifnum \thepage>1 + \leavevmode% + \begin{beamercolorbox}[wd=.5\paperwidth,ht=2.5ex,dp=1.125ex]{% + section in head/foot}% + \insertsectionnavigationhorizontal{.5\paperwidth}{\hskip0pt plus1filll}{}% + \end{beamercolorbox}% + \begin{beamercolorbox}[wd=.5\paperwidth,ht=2.5ex,dp=1.125ex]{% + subsection in head/foot}% + \insertsubsectionnavigationhorizontal{% + .5\paperwidth}{}{\hskip0pt plus1filll}% + \end{beamercolorbox}% + \fi %\thepage>1 +} + +\else% Not compressed + +\setbeamertemplate{headline} +{% + \ifnum \thepage>1 + \leavevmode% + \@tempdimb=2.4375ex% + \ifnum\beamer@subsectionmax<\beamer@sectionmax% + \multiply\@tempdimb by\beamer@sectionmax% + \else% + \multiply\@tempdimb by\beamer@subsectionmax% + \fi% + \ifdim\@tempdimb>0pt% + \advance\@tempdimb by 1.125ex% + \begin{beamercolorbox}[wd=.5\paperwidth,ht=\@tempdimb]{% + section in head/foot}% + \vbox to\@tempdimb{\vfil\insertsectionnavigation{.5\paperwidth}\vfil}% + \end{beamercolorbox}% + \begin{beamercolorbox}[wd=.5\paperwidth,ht=\@tempdimb]{% + subsection in head/foot}% + \vbox to\@tempdimb{\vfil\insertsubsectionnavigation{.5\paperwidth}\vfil}% + \end{beamercolorbox}% + \fi% + \fi % \thepage>1 +} + +\fi % end if compressed +\fi % TACCheadernav + + +\ifTACCheadertree + +\setbeamertemplate{headline} +{ + \begin{beamercolorbox}[wd=\paperwidth,colsep=1.5pt]{upper separation line head} + \end{beamercolorbox} + % + % Place short title + % + \begin{beamercolorbox}[wd=\paperwidth,ht=2.5ex,dp=1.125ex,% + leftskip=.3cm,rightskip=.3cm plus1fil]{title in head/foot} + \usebeamerfont{title in head/foot}\insertshorttitle + \end{beamercolorbox} + + % + % Place section + % + \begin{beamercolorbox}[wd=\paperwidth,ht=2.5ex,dp=1.125ex,% + leftskip=.3cm,rightskip=.3cm plus1fil]{section in head/foot} + \usebeamerfont{section in head/foot}% + %\ifbeamer@tree@showhooks + \setbox\beamer@tempbox=\hbox{\insertsectionhead}% + \ifdim\wd\beamer@tempbox>1pt% + \hskip2pt\raise1.9pt\hbox{\vrule width0.4pt height1.875ex\vrule width 5pt height0.4pt}% + \hskip1pt% + \fi + \insertsectionhead + \end{beamercolorbox} + +% +% Place subsection +% +\begin{beamercolorbox}[wd=\paperwidth,ht=2.5ex,dp=1.125ex,% + leftskip=.3cm,rightskip=.3cm plus1fil]{subsection in head/foot} + \usebeamerfont{subsection in head/foot}% + %\ifbeamer@tree@showhooks + \setbox\beamer@tempbox=\hbox{\insertsubsectionhead}% + \ifdim\wd\beamer@tempbox>1pt% + \hskip9.4pt\raise1.9pt\hbox{\vrule width0.4pt height1.875ex\vrule width 5pt height0.4pt}% + \hskip1pt% + \fi + \insertsubsectionhead +\end{beamercolorbox} + +% +% Place final separation box +% + \begin{beamercolorbox}[wd=\paperwidth,colsep=1.5pt + ]{lower separation line head} + \end{beamercolorbox} + + % + % Another matching rule which helps to frame the content + % + \hspace{.025\textwidth}\rule{.95\textwidth}{.5pt} +} +\fi % TACCheadertree + + +% The following command suppresses all navigation symbols. This is +% necessary in the TACC theme, since it overlaps where we want the +% logo to be. +\setbeamertemplate{navigation symbols}{} + + +\mode + diff --git a/my_docs/21/lmod_zoom_mtg_2021_09_07/themes/beamerthemeTACC16-169.sty b/my_docs/21/lmod_zoom_mtg_2021_09_07/themes/beamerthemeTACC16-169.sty new file mode 100644 index 000000000..22caf9a05 --- /dev/null +++ b/my_docs/21/lmod_zoom_mtg_2021_09_07/themes/beamerthemeTACC16-169.sty @@ -0,0 +1,38 @@ +%% TACC theme for beamer + +\newif\ifTACCheadernav +\DeclareOption{headernav}{\global\TACCheadernavtrue} + +\newif\ifTACCheadertree +\DeclareOption{headertree}{\global\TACCheadertreetrue} +\ProcessOptions + +\mode + +\makeatletter + \def\beamer@calltheme#1#2#3{% + \def\beamer@themelist{#2} + \@for\beamer@themename:=\beamer@themelist\do + {\usepackage[{#1}]{\beamer@themelocation/#3\beamer@themename}}} + + \def\usefolder#1{ + \def\beamer@themelocation{#1} + } + \def\beamer@themelocation{} + +\usefolder{themes} +\usefonttheme{TACC16} +\useinnertheme{TACC16} +\useoutertheme{TACC16-169} +\usecolortheme{TACC16} + +\mode + + +\newcommand{\event}[1]{% + \makeatletter% + \def\TACC@eventname{#1}% + \makeatother} + +\newcommand{\sectionframe}[1]{\section{#1}\frame{\Large\textbf{#1}}} +\newcommand{\subsectionframe}[1]{\subsection{#1}\frame{\large\textbf{#1}}} diff --git a/my_docs/21/lmod_zoom_mtg_2021_09_07/themes/beamerthemeTACC16.sty b/my_docs/21/lmod_zoom_mtg_2021_09_07/themes/beamerthemeTACC16.sty new file mode 100644 index 000000000..750bdd388 --- /dev/null +++ b/my_docs/21/lmod_zoom_mtg_2021_09_07/themes/beamerthemeTACC16.sty @@ -0,0 +1,26 @@ +%% TACC theme for beamer + +\newif\ifTACCheadernav +\DeclareOption{headernav}{\global\TACCheadernavtrue} + +\newif\ifTACCheadertree +\DeclareOption{headertree}{\global\TACCheadertreetrue} +\ProcessOptions + +\mode + +\usefonttheme{TACC16} +\useinnertheme{TACC16} +\useoutertheme{TACC16} +\usecolortheme{TACC16} + +\mode + + +\newcommand{\event}[1]{% + \makeatletter% + \def\TACC@eventname{#1}% + \makeatother} + +\newcommand{\sectionframe}[1]{\section{#1}\frame{\Large\textbf{#1}}} +\newcommand{\subsectionframe}[1]{\subsection{#1}\frame{\large\textbf{#1}}} diff --git a/my_docs/21/lmod_zoom_mtg_2021_09_07/themes/example.pdf b/my_docs/21/lmod_zoom_mtg_2021_09_07/themes/example.pdf new file mode 100644 index 000000000..add373eee Binary files /dev/null and b/my_docs/21/lmod_zoom_mtg_2021_09_07/themes/example.pdf differ diff --git a/my_docs/21/lmod_zoom_mtg_2021_09_07/themes/license.tex b/my_docs/21/lmod_zoom_mtg_2021_09_07/themes/license.tex new file mode 100644 index 000000000..74ff86759 --- /dev/null +++ b/my_docs/21/lmod_zoom_mtg_2021_09_07/themes/license.tex @@ -0,0 +1,14 @@ + +\begin{frame}{License} +\footnotesize +\textcopyright The University of Texas at Austin, \the\year\\ +\vspace{0.5 cm} +This work is licensed under the Creative Commons Attribution Non-Commercial 3.0 Unported License. To view a copy of this license, +visit http://creativecommons.org/licenses/by-nc/3.0/\\ +\vspace{0.5 cm} +When attributing this work, please use the following text: +"Designing and Administering Large-scale Systems", Texas Advanced Computing Center, \the\year. Available under a Creative Commons Attribution Non-Commercial 3.0 Unported License. +\newline +\newline +\includegraphics[width=1cm]{./figures/cc.png} +\end{frame} \ No newline at end of file diff --git a/my_docs/21/lmod_zoom_mtg_2021_10_05/beamercolorthemeTACC.sty b/my_docs/21/lmod_zoom_mtg_2021_10_05/beamercolorthemeTACC.sty deleted file mode 120000 index 8d27e673a..000000000 --- a/my_docs/21/lmod_zoom_mtg_2021_10_05/beamercolorthemeTACC.sty +++ /dev/null @@ -1 +0,0 @@ -../../beamer/beamercolorthemeTACC.sty \ No newline at end of file diff --git a/my_docs/21/lmod_zoom_mtg_2021_10_05/beamercolorthemeTACC.sty b/my_docs/21/lmod_zoom_mtg_2021_10_05/beamercolorthemeTACC.sty new file mode 100755 index 000000000..78beb6a4a --- /dev/null +++ b/my_docs/21/lmod_zoom_mtg_2021_10_05/beamercolorthemeTACC.sty @@ -0,0 +1,323 @@ +% Copyright 2003 by Till Tantau . +% +% This program can be redistributed and/or modified under the terms +% of the GNU Public License, version 2. + +\mode + +% I downloaded a gimp color palette from +% http://maururu.net/2007/latex-beamer-color-palette/ +% Which provides rgb values (I think) for several of the +% default beamer themes. You can open this in gimp by +% opening the Palettes dialog, right-clicking anywhere and choosing +% 'Import Palette'. A color in there called 'default added blue' +% appeared to be approximately what I wanted. It had the triple +% of values 141 145 208. If you double-click on this in the +% palette editor it gives you a bunch of information. You can't +% use these values directly to set a color...it just comes out white. +% I think definecolor is expecting something normalized by 255. Yes! + + +% bluish colors +\definecolor{defaddedblue}{rgb}{0.5529,.5686,.8157} % 141,145,208 +\definecolor{defblockheader}{rgb}{.1921,.2235,.6824} % 49,57,174 +\definecolor{flyaddedblue}{rgb}{.5961,.6118,.8431} % 152,156,215 + +% bluish-greys +\definecolor{beetleaddedblue1}{rgb}{.3333,.4039,.6196} % 85 103 158, dark +\definecolor{beetleaddedblue2}{rgb}{.4510,.5098,.7020} % 115 130 179, medium +\definecolor{beetleaddedblue3}{rgb}{.7059,.7255,.7961} % 180 185 203, light (greyest) + +% very light blue-greys +\definecolor{deflightouter1}{rgb}{.7608,.7647,.9020} % 194 195 230, dark +\definecolor{deflightouter2}{rgb}{.8 ,.8039,.9176} % 204 205 234, medium +\definecolor{deflightouter3}{rgb}{.8392,.8431,.9373} % 214 215 239, light + +% reddish colors +\definecolor{flyalertblockheader}{rgb}{.7373,.1294,.1333} % 188 33 34 +\definecolor{flyaddedred}{rgb}{.8667,.5647,.5647}% 221 144 144 +\definecolor{beaverouterframe}{rgb}{.5529,.0980,.0980}% 141 25 25 + +% greens (green is used for 'examples' in beamer) +\definecolor{defexblock}{rgb}{.9098,.9333,.9020} % 232 238 230, light +\definecolor{defaddedgreen}{rgb}{.5412,.6510,.4706} % 138 166 120, medium +\definecolor{defexblockheader}{rgb}{.1686,.3647,.0392} % 43 93 10, dark + +\definecolor{lightexblock}{rgb}{.9137,.9451,.9020} % 233 241 230, light +\definecolor{lightexblockheader}{rgb}{.8235,.8980,.8} % 210 229 204, medium +\definecolor{lightexblockheadertext}{rgb}{.2431,.5098,.0745} % 62 130 19, dark + + +%%% +% Set the normal text color +%%% +\setbeamercolor{normal text}{fg=black,bg=white} + +%%% +% Set the alerted text color +%%% +% \setbeamercolor{alerted text}{fg=red} +\setbeamercolor{alerted text}{fg=red!50!black} % half black/half red for green bg +% \setbeamercolor{alerted text}{fg=beaverouterframe} +% \setbeamercolor{alerted text}{fg=defblockheader} % doesn't stand out enough + + +% Set the 'example' text +\setbeamercolor{example text}{fg=green!50!black} + +\setbeamercolor{structure}{fg=black} + +\setbeamercolor{background canvas}{parent=normal text} +\setbeamercolor{background}{parent=background canvas} + +\setbeamercolor{palette primary}{use=structure,fg=structure.fg} +\setbeamercolor{palette secondary}{use=structure,fg=structure.fg!75!black} +\setbeamercolor{palette tertiary}{use=structure,fg=structure.fg!50!black} +\setbeamercolor{palette quaternary}{fg=black} + +\setbeamercolor{palette sidebar primary}{use=normal text,fg=normal text.fg} +\setbeamercolor{palette sidebar secondary}{use=structure,fg=structure.fg} +\setbeamercolor{palette sidebar tertiary}{use=normal text,fg=normal text.fg} +\setbeamercolor{palette sidebar quaternary}{use=structure,fg=structure.fg} + +\setbeamercolor{math text}{} +\setbeamercolor{math text inlined}{parent=math text} +\setbeamercolor{math text displayed}{parent=math text} + +\setbeamercolor{normal text in math text}{} + +\setbeamercolor{local structure}{parent=structure} + +\setbeamercolor{titlelike}{parent=structure} + +\setbeamercolor{title}{parent=titlelike} +\setbeamercolor{title in head/foot}{parent=palette quaternary} +\setbeamercolor{title in sidebar}{parent=palette sidebar quaternary} + +\setbeamercolor{subtitle}{parent=title} + +\setbeamercolor{author}{} +\setbeamercolor{author in head/foot}{parent=palette primary} +\setbeamercolor{author in sidebar}{use=palette sidebar tertiary,fg=palette sidebar tertiary.fg} + +\setbeamercolor{institute}{} +\setbeamercolor{institute in head/foot}{parent=palette tertiary} +\setbeamercolor{institute in sidebar}{use=palette sidebar tertiary,fg=palette sidebar tertiary.fg} + +\setbeamercolor{date}{} +\setbeamercolor{date in head/foot}{parent=palette secondary} +\setbeamercolor{date in sidebar}{use=palette sidebar tertiary,fg=palette sidebar tertiary.fg} + +\setbeamercolor{titlegraphic}{} + +\setbeamercolor{part name}{} +\setbeamercolor{part title}{parent=titlelike} + +\setbeamercolor{section in toc}{parent=structure} +\setbeamercolor{section in toc shaded}{parent=section in toc} +\setbeamercolor{section in head/foot}{parent=palette tertiary} +\setbeamercolor{section in sidebar}{parent=palette sidebar secondary} +\setbeamercolor{section in sidebar shaded}{use=section in sidebar,fg=section in sidebar.fg!40!bg} +\setbeamercolor{section number projected}{parent=item projected} + +\setbeamercolor{subsection in toc}{} +\setbeamercolor{subsection in toc shaded}{parent=subsection in toc} +\setbeamercolor{subsection in head/foot}{parent=palette secondary} +\setbeamercolor{subsection in sidebar}{parent=palette sidebar primary} +\setbeamercolor{subsection in sidebar shaded}{use=subsection in sidebar,fg=subsection in sidebar.fg!40!bg} +\setbeamercolor{subsection number projected}{parent={subitem projected}} + +\setbeamercolor{subsubsection in toc}{parent=subsection in toc} +\setbeamercolor{subsubsection in toc shaded}{parent=subsubsection in toc} +\setbeamercolor{subsubsection in head/foot}{parent=subsection in head/foot} +\setbeamercolor{subsubsection in sidebar}{parent=subsection in sidebar} +\setbeamercolor{subsubsection in sidebar shaded}{parent=subsection in sidebar shaded} +\setbeamercolor{subsubsection number projected}{parent=subsubitem projected} + +\setbeamercolor{headline}{} +\setbeamercolor{footline}{} + +\setbeamercolor{sidebar}{} +\setbeamercolor{sidebar left}{parent=sidebar} +\setbeamercolor{sidebar right}{parent=sidebar} + +\setbeamercolor{logo}{parent=palette secondary} + +\setbeamercolor{frametitle}{parent=titlelike} +\setbeamercolor{framesubtitle}{parent=frametitle} + +\setbeamercolor{frametitle right}{parent=frametitle} + +\setbeamercolor{caption}{} +\setbeamercolor{caption name}{parent=structure} + +\setbeamercolor{button}{use=local structure,bg=local structure.fg!50!bg,fg=white} +\setbeamercolor{button border}{use=button,fg=button.bg} +\setbeamercolor{navigation symbols}{use=structure,fg=structure.fg!40!bg} +\setbeamercolor{navigation symbols dimmed}{use=structure,fg=structure.fg!20!bg} +\setbeamercolor{mini frame}{parent=section in head/foot} + +% Color expressions are defined in the xcolor package +% +% Ex: Mixture of 40% green, 60% yellow: green!40!yellow +% +% The complement of any color can be obtained by prepending +% a minus sign: -green!40!yellow +% +% One can also combine up to three colors (in differing proportions) +% using the rgb command. For example, the following command combines +% 3 parts of the first color, with 2 parts of the second, and one part +% "red" +% +%\color{rgb:-green!40!yellow,3;green!40!yellow,2;red,1} +% Unfortunately, I don't think this works as an argument to setbeamercolor... +% "Orange" bg=green!30!yellow!30!red +% close to burnt orange: red!75!green +% lightgray is a color, but gray!25!white looks better +% +% A nice pair of greens +% (dark, a little too dark to be under black text...) -red!75!green!50!blue!25 +% (light) -red!75!green!50!blue!25!gray +% +% Some colors are only available via options to the xcolor package, eg. +% x11names,DarkOliveGreen4 +% svgnames, Chartreuse +% dvipsnames, ForestGreen +% +% but beamer does not seem to have any of these. +% +% The base color names which are always available are: +% black +% blue +% brown +% cyan +% darkgray +% gray +% green +% lightgray +% lime +% magenta +% olive +% orange +% pink +% purple +% red +% teal +% violet +% white +% yellow + +% From the beamer user guide, pg. 167 +% Inner color themes only specify the colors of elements used in inner +% themes. Most noticably, they specify the colors used for blocks. +% ... + +% Example color definition +% beamercolorthemedefault.sty:\definecolor{beamer@blendedblue}{rgb}{0.2,0.2,0.7} +% beamercolorthemedefault.sty:\setbeamercolor{structure}{fg=beamer@blendedblue} + +% The greens +% \setbeamercolor{block body}{bg=-red!75!green!50!blue!25!gray} +% \setbeamercolor{block title}{parent=structure,bg=-red!75!green!50!blue!25,fg=-red!75!green!50!blue!25!gray} + +%%% +% Set the block body and title background/foreground colors +%%% +% \setbeamercolor{block body}{bg=flyaddedblue} +% \setbeamercolor{block title}{bg=defblockheader,fg=flyaddedblue} + +% Purplish blues, too dark overall +% \setbeamercolor{block body}{bg=beetleaddedblue3} +% \setbeamercolor{block title}{bg=beetleaddedblue2,fg=beetleaddedblue3} + +% Very light blue greys +% 1. Not enough contrast +% \setbeamercolor{block body}{bg=deflightouter3} +% \setbeamercolor{block title}{bg=deflightouter2,fg=deflightouter3} + +% 2. Not enough contrast +% \setbeamercolor{block body}{bg=deflightouter3} +% \setbeamercolor{block title}{bg=deflightouter1,fg=deflightouter3} + +% 3. Combination of deflightouter and fly. The block bg is +% lighter than the all-beetle color scheme I previously thought was best. +% Currently I like this one the best +\setbeamercolor{block body}{bg=deflightouter3} +\setbeamercolor{block title}{bg=beetleaddedblue2,fg=deflightouter3} + +% 4. Greens. Looks like a highlighter. I don't really trust greens +% on projectors... It's almost too bright/hurts your eyes. +% \setbeamercolor{block body}{bg=defexblock} +% \setbeamercolor{block title}{bg=defaddedgreen,fg=defexblock} + +% This looks pretty good ... it's similar to the greens we had before +% but should be lighter. The blocks are just a little too "mint" colored +% though... +% \setbeamercolor{block body}{bg=defexblock} +% \setbeamercolor{block title}{bg=defexblockheader,fg=defexblock} + +% Pea Soup! +%\setbeamercolor{block body}{bg=defaddedgreen} +%\setbeamercolor{block title}{bg=defexblockheader,fg=defaddedgreen} + + +% Changing these didn't seem to do anything...I had to change the +% 'alerted text' color instead +\setbeamercolor{block body alerted}{} +\setbeamercolor{block body example}{} +\setbeamercolor{block title alerted}{parent=alerted text} +\setbeamercolor{block title example}{parent=example text} + +\setbeamercolor{item}{parent=local structure} +\setbeamercolor{subitem}{parent=item} +\setbeamercolor{subsubitem}{parent=subitem} + +\setbeamercolor{item projected}{parent=item,use=item,fg=white,bg=item.fg} +\setbeamercolor{subitem projected}{parent=item projected} +\setbeamercolor{subsubitem projected}{parent=subitem projected} + +\setbeamercolor{enumerate item}{parent=item} +\setbeamercolor{enumerate subitem}{parent=subitem} +\setbeamercolor{enumerate subsubitem}{parent=subsubitem} + +\setbeamercolor{itemize item}{parent=item} +\setbeamercolor{itemize subitem}{parent=subitem} +\setbeamercolor{itemize subsubitem}{parent=subsubitem} + +\setbeamercolor{itemize/enumerate body}{} +\setbeamercolor{itemize/enumerate subbody}{} +\setbeamercolor{itemize/enumerate subsubbody}{} + +\setbeamercolor{description item}{parent=item} + +\setbeamercolor{bibliography item}{parent=item} + +\setbeamercolor{bibliography entry author}{use=structure,fg=structure.fg} +\setbeamercolor{bibliography entry title}{use=normal text,fg=normal text.fg} +\setbeamercolor{bibliography entry location}{use=structure,fg=structure.fg!65!bg} +\setbeamercolor{bibliography entry note}{use=structure,fg=structure.fg!65!bg} + +\setbeamercolor{separation line}{} + +\setbeamercolor{upper separation line head}{parent=separation line} +\setbeamercolor{middle separation line head}{parent=separation line} +\setbeamercolor{lower separation line head}{parent=separation line} + +\setbeamercolor{upper separation line foot}{parent=separation line} +\setbeamercolor{middle separation line foot}{parent=separation line} +\setbeamercolor{lower separation line foot}{parent=separation line} + +\setbeamercolor{abstract}{} +\setbeamercolor{abstract title}{parent=structure} + +\setbeamercolor{verse}{} + +\setbeamercolor{quotation}{} +\setbeamercolor{quote}{parent=quotation} + +\setbeamercolor{page number in head/foot}{fg=fg!50!bg} + +\setbeamercolor{qed symbol}{parent=structure} + +\mode + diff --git a/my_docs/21/lmod_zoom_mtg_2021_10_05/beamercolorthemeTACC16.sty b/my_docs/21/lmod_zoom_mtg_2021_10_05/beamercolorthemeTACC16.sty deleted file mode 120000 index 58415801b..000000000 --- a/my_docs/21/lmod_zoom_mtg_2021_10_05/beamercolorthemeTACC16.sty +++ /dev/null @@ -1 +0,0 @@ -../../beamer/beamercolorthemeTACC16.sty \ No newline at end of file diff --git a/my_docs/21/lmod_zoom_mtg_2021_10_05/beamercolorthemeTACC16.sty b/my_docs/21/lmod_zoom_mtg_2021_10_05/beamercolorthemeTACC16.sty new file mode 100755 index 000000000..779dde91f --- /dev/null +++ b/my_docs/21/lmod_zoom_mtg_2021_10_05/beamercolorthemeTACC16.sty @@ -0,0 +1,192 @@ +% Copyright 2003 by Till Tantau . +% +% This program can be redistributed and/or modified under the terms +% of the GNU Public License, version 2. + +\mode + +\usepackage{textcase,regexpatch} + +\setbeamertemplate{blocks}[rounded][shadow=true] + + +\definecolor{TACCred}{RGB}{180,13,29} +\definecolor{TACCorange}{RGB}{210,104,43} +\definecolor{TACCblue}{RGB}{108, 134, 191} +\definecolor{TACCgreen}{RGB}{23,106,70} + +% I downloaded a gimp color palette from +% http://maururu.net/2007/latex-beamer-color-palette/ +% Which provides rgb values (I think) for several of the +% default beamer themes. You can open this in gimp by +% opening the Palettes dialog, right-clicking anywhere and choosing +% 'Import Palette'. A color in there called 'default added blue' +% appeared to be approximately what I wanted. It had the triple +% of values 141 145 208. If you double-click on this in the +% palette editor it gives you a bunch of information. You can't +% use these values directly to set a color...it just comes out white. +% I think definecolor is expecting something normalized by 255. Yes! + + +%%% +% Set the normal text color +%%% +\setbeamercolor{normal text}{fg=black} %,bg=white} +\setbeamercolor{example text}{fg=TACCgreen} +\setbeamercolor{alerted text}{fg=TACCorange} + + +\setbeamercolor{structure}{fg=black} +%\setbeamercolor{structure}{fg=black} + +\setbeamercolor{background canvas}{parent=normal text} +\setbeamercolor{background}{parent=background canvas} + +\setbeamercolor{palette primary}{use=structure,fg=structure.fg} +\setbeamercolor{palette secondary}{use=structure,fg=structure.fg!75!black} +\setbeamercolor{palette tertiary}{use=structure,fg=structure.fg!50!black} +\setbeamercolor{palette quaternary}{fg=black} + +\setbeamercolor{palette sidebar primary}{use=normal text,fg=normal text.fg} +\setbeamercolor{palette sidebar secondary}{use=structure,fg=structure.fg} +\setbeamercolor{palette sidebar tertiary}{use=normal text,fg=normal text.fg} +\setbeamercolor{palette sidebar quaternary}{use=structure,fg=structure.fg} + +\setbeamercolor{math text}{} +\setbeamercolor{math text inlined}{parent=math text} +\setbeamercolor{math text displayed}{parent=math text} + +\setbeamercolor{normal text in math text}{} + +\setbeamercolor{local structure}{parent=structure} + +\setbeamercolor{titlelike}{parent=structure} + +\setbeamercolor{title}{parent=titlelike} +\setbeamercolor{title in head/foot}{parent=palette quaternary} +\setbeamercolor{title in sidebar}{parent=palette sidebar quaternary} + +\setbeamercolor{subtitle}{parent=title} + +\setbeamercolor{author}{} +\setbeamercolor{author in head/foot}{parent=palette primary} +\setbeamercolor{author in sidebar}{use=palette sidebar tertiary,fg=palette sidebar tertiary.fg} + +\setbeamercolor{institute}{} +\setbeamercolor{institute in head/foot}{parent=palette tertiary} +\setbeamercolor{institute in sidebar}{use=palette sidebar tertiary,fg=palette sidebar tertiary.fg} + +\setbeamercolor{date}{} +\setbeamercolor{date in head/foot}{parent=palette secondary} +\setbeamercolor{date in sidebar}{use=palette sidebar tertiary,fg=palette sidebar tertiary.fg} + +\setbeamercolor{titlegraphic}{} + +\setbeamercolor{part name}{} +\setbeamercolor{part title}{parent=titlelike} + +\setbeamercolor{section in toc}{parent=structure} +\setbeamercolor{section in toc shaded}{parent=section in toc} +\setbeamercolor{section in head/foot}{parent=palette tertiary} +\setbeamercolor{section in sidebar}{parent=palette sidebar secondary} +\setbeamercolor{section in sidebar shaded}{use=section in sidebar,fg=section in sidebar.fg!40!bg} +\setbeamercolor{section number projected}{parent=item projected} + +\setbeamercolor{subsection in toc}{} +\setbeamercolor{subsection in toc shaded}{parent=subsection in toc} +\setbeamercolor{subsection in head/foot}{parent=palette secondary} +\setbeamercolor{subsection in sidebar}{parent=palette sidebar primary} +\setbeamercolor{subsection in sidebar shaded}{use=subsection in sidebar,fg=subsection in sidebar.fg!40!bg} +\setbeamercolor{subsection number projected}{parent={subitem projected}} + +\setbeamercolor{subsubsection in toc}{parent=subsection in toc} +\setbeamercolor{subsubsection in toc shaded}{parent=subsubsection in toc} +\setbeamercolor{subsubsection in head/foot}{parent=subsection in head/foot} +\setbeamercolor{subsubsection in sidebar}{parent=subsection in sidebar} +\setbeamercolor{subsubsection in sidebar shaded}{parent=subsection in sidebar shaded} +\setbeamercolor{subsubsection number projected}{parent=subsubitem projected} + +\setbeamercolor{headline}{} +\setbeamercolor{footline}{} + +\setbeamercolor{sidebar}{} +\setbeamercolor{sidebar left}{parent=sidebar} +\setbeamercolor{sidebar right}{parent=sidebar} + +\setbeamercolor{logo}{parent=palette secondary} + +\setbeamercolor{frametitle}{parent=titlelike} +\setbeamercolor{framesubtitle}{parent=frametitle} + +\setbeamercolor{frametitle right}{parent=frametitle} + +\setbeamercolor{caption}{} +\setbeamercolor{caption name}{parent=structure} + +\setbeamercolor{button}{use=local structure,bg=local structure.fg!50!bg,fg=white} +\setbeamercolor{button border}{use=button,fg=button.bg} +\setbeamercolor{navigation symbols}{use=structure,fg=structure.fg!40!bg} +\setbeamercolor{navigation symbols dimmed}{use=structure,fg=structure.fg!20!bg} +\setbeamercolor{mini frame}{parent=section in head/foot} + +\setbeamercolor{block body}{fg=black} +\setbeamercolor{block body alerted}{fg=black} +\setbeamercolor{block body example}{fg=black} + +\setbeamercolor{block title}{bg=TACCblue,fg=white} +\setbeamercolor{block title alerted}{bg=TACCred,fg=white} +\setbeamercolor{block title example}{bg=TACCgreen,fg=white} + +\setbeamercolor{item}{parent=local structure} +\setbeamercolor{subitem}{parent=item} +\setbeamercolor{subsubitem}{parent=subitem} + +\setbeamercolor{item projected}{parent=item,use=item,fg=black,bg=item.fg} +\setbeamercolor{subitem projected}{parent=item projected} +\setbeamercolor{subsubitem projected}{parent=subitem projected} + +\setbeamercolor{enumerate item}{parent=item} +\setbeamercolor{enumerate subitem}{parent=subitem} +\setbeamercolor{enumerate subsubitem}{parent=subsubitem} + +\setbeamercolor{itemize item}{parent=item} +\setbeamercolor{itemize subitem}{parent=subitem} +\setbeamercolor{itemize subsubitem}{parent=subsubitem} + +\setbeamercolor{itemize/enumerate body}{} +\setbeamercolor{itemize/enumerate subbody}{} +\setbeamercolor{itemize/enumerate subsubbody}{} + +\setbeamercolor{description item}{parent=item} + +\setbeamercolor{bibliography item}{parent=item} + +\setbeamercolor{bibliography entry author}{use=structure,fg=structure.fg} +\setbeamercolor{bibliography entry title}{use=normal text,fg=normal text.fg} +\setbeamercolor{bibliography entry location}{use=structure,fg=structure.fg!65!bg} +\setbeamercolor{bibliography entry note}{use=structure,fg=structure.fg!65!bg} + +\setbeamercolor{separation line}{} + +\setbeamercolor{upper separation line head}{parent=separation line} +\setbeamercolor{middle separation line head}{parent=separation line} +\setbeamercolor{lower separation line head}{parent=separation line} + +\setbeamercolor{upper separation line foot}{parent=separation line} +\setbeamercolor{middle separation line foot}{parent=separation line} +\setbeamercolor{lower separation line foot}{parent=separation line} + +\setbeamercolor{abstract}{} +\setbeamercolor{abstract title}{parent=structure} + +\setbeamercolor{verse}{} + +\setbeamercolor{quotation}{} +\setbeamercolor{quote}{parent=quotation} + +\setbeamercolor{page number in head/foot}{fg=fg!50!bg} + +\setbeamercolor{qed symbol}{parent=structure} + +\mode + diff --git a/my_docs/21/lmod_zoom_mtg_2021_10_05/beamerfontthemeTACC.sty b/my_docs/21/lmod_zoom_mtg_2021_10_05/beamerfontthemeTACC.sty deleted file mode 120000 index 78e971fb8..000000000 --- a/my_docs/21/lmod_zoom_mtg_2021_10_05/beamerfontthemeTACC.sty +++ /dev/null @@ -1 +0,0 @@ -../../beamer/beamerfontthemeTACC.sty \ No newline at end of file diff --git a/my_docs/21/lmod_zoom_mtg_2021_10_05/beamerfontthemeTACC.sty b/my_docs/21/lmod_zoom_mtg_2021_10_05/beamerfontthemeTACC.sty new file mode 100755 index 000000000..ef9ce1e5e --- /dev/null +++ b/my_docs/21/lmod_zoom_mtg_2021_10_05/beamerfontthemeTACC.sty @@ -0,0 +1,12 @@ +% Copyright 2003 by Till Tantau +% +% This program can be redistributed and/or modified under the terms +% of the GNU Public License, version 2. + +\mode + +\setbeamerfont{frametitle}{parent=structure,size=\LARGE,series=\bfseries} +\setbeamerfont{framesubtitle}{parent=frametitle,size=\small} + +\mode + \ No newline at end of file diff --git a/my_docs/21/lmod_zoom_mtg_2021_10_05/beamerfontthemeTACC16.sty b/my_docs/21/lmod_zoom_mtg_2021_10_05/beamerfontthemeTACC16.sty deleted file mode 120000 index a1f2fa5f9..000000000 --- a/my_docs/21/lmod_zoom_mtg_2021_10_05/beamerfontthemeTACC16.sty +++ /dev/null @@ -1 +0,0 @@ -../../beamer/beamerfontthemeTACC16.sty \ No newline at end of file diff --git a/my_docs/21/lmod_zoom_mtg_2021_10_05/beamerfontthemeTACC16.sty b/my_docs/21/lmod_zoom_mtg_2021_10_05/beamerfontthemeTACC16.sty new file mode 100755 index 000000000..b65271835 --- /dev/null +++ b/my_docs/21/lmod_zoom_mtg_2021_10_05/beamerfontthemeTACC16.sty @@ -0,0 +1,21 @@ +% Copyright 2003 by Till Tantau +% +% This program can be redistributed and/or modified under the terms +% of the GNU Public License, version 2. + +\mode +\setbeamerfont{title}{parent=structure,size=\LARGE,series=\bfseries} +\setbeamerfont{author}{parent=structure,size=\large, series=\normalfont} +\setbeamerfont{frametitle}{parent=structure,size=\LARGE,series=\bfseries} +\setbeamerfont{framesubtitle}{parent=frametitle,size=\small} + +%\usefonttheme{professionalfonts} % using non standard fonts for beamer +%\usefonttheme{serif} % default family is serif +%\usepackage{fontspec} +%\setmainfont{Century Gothic} + +\usepackage{fontspec} +\usepackage{libertine} + +\mode + diff --git a/my_docs/21/lmod_zoom_mtg_2021_10_05/beamerinnerthemeTACC.sty b/my_docs/21/lmod_zoom_mtg_2021_10_05/beamerinnerthemeTACC.sty deleted file mode 120000 index 8d5ae3921..000000000 --- a/my_docs/21/lmod_zoom_mtg_2021_10_05/beamerinnerthemeTACC.sty +++ /dev/null @@ -1 +0,0 @@ -../../beamer/beamerinnerthemeTACC.sty \ No newline at end of file diff --git a/my_docs/21/lmod_zoom_mtg_2021_10_05/beamerinnerthemeTACC.sty b/my_docs/21/lmod_zoom_mtg_2021_10_05/beamerinnerthemeTACC.sty new file mode 100755 index 000000000..29e2bce81 --- /dev/null +++ b/my_docs/21/lmod_zoom_mtg_2021_10_05/beamerinnerthemeTACC.sty @@ -0,0 +1,11 @@ +\mode + +\setbeamertemplate{itemize item}[circle] +\setbeamertemplate{itemize subitem}{{}--{}} +\setbeamertemplate{itemize subsubitem}[circle] +\setbeamertemplate{section in toc}{$\bullet$\hskip.5em\inserttocsection} +%\setbeamertemplate{subsection in toc}{} +\setbeamertemplate{subsubsection in toc}{} + +\mode + diff --git a/my_docs/21/lmod_zoom_mtg_2021_10_05/beamerinnerthemeTACC16.sty b/my_docs/21/lmod_zoom_mtg_2021_10_05/beamerinnerthemeTACC16.sty deleted file mode 120000 index 5955acc99..000000000 --- a/my_docs/21/lmod_zoom_mtg_2021_10_05/beamerinnerthemeTACC16.sty +++ /dev/null @@ -1 +0,0 @@ -../../beamer/beamerinnerthemeTACC16.sty \ No newline at end of file diff --git a/my_docs/21/lmod_zoom_mtg_2021_10_05/beamerinnerthemeTACC16.sty b/my_docs/21/lmod_zoom_mtg_2021_10_05/beamerinnerthemeTACC16.sty new file mode 100755 index 000000000..f7f454e1d --- /dev/null +++ b/my_docs/21/lmod_zoom_mtg_2021_10_05/beamerinnerthemeTACC16.sty @@ -0,0 +1,11 @@ +\mode + +\setbeamertemplate{itemize item}[triangle] +\setbeamertemplate{itemize subitem}[triangle] +\setbeamertemplate{itemize subsubitem}[triangle] +\setbeamertemplate{section in toc}{$\bullet$\hskip.5em\inserttocsection} +%\setbeamertemplate{subsection in toc}{} +\setbeamertemplate{subsubsection in toc}{} + +\mode + diff --git a/my_docs/21/lmod_zoom_mtg_2021_10_05/beamerouterthemeTACC.sty b/my_docs/21/lmod_zoom_mtg_2021_10_05/beamerouterthemeTACC.sty deleted file mode 120000 index da0a45d33..000000000 --- a/my_docs/21/lmod_zoom_mtg_2021_10_05/beamerouterthemeTACC.sty +++ /dev/null @@ -1 +0,0 @@ -../../beamer/beamerouterthemeTACC.sty \ No newline at end of file diff --git a/my_docs/21/lmod_zoom_mtg_2021_10_05/beamerouterthemeTACC.sty b/my_docs/21/lmod_zoom_mtg_2021_10_05/beamerouterthemeTACC.sty new file mode 100755 index 000000000..038580303 --- /dev/null +++ b/my_docs/21/lmod_zoom_mtg_2021_10_05/beamerouterthemeTACC.sty @@ -0,0 +1,196 @@ +% Copyright 2003 by Till Tantau +% +% This program can be redistributed and/or modified under the terms +% of the GNU Public License, version 2. + +\mode + +\setbeamertemplate{frametitle}[default][center] +\addtobeamertemplate{frametitle}{\vskip 4ex minus 4ex}{} + +% Here we define what appears at the bottom of each slide: the "footline". +\setbeamertemplate{footline}{% + \leavevmode% + + % Horizontal line dividing the rest of the slide from the footer? + % hrule goes all the way across... + % \hrule height.3pt% + % With \rule, you can specify the thickness + % \rule[raise-height]{width}{thickness} + \hspace{.025\textwidth}\rule{.95\textwidth}{.5pt} + + \hbox{% + % On the left half of the footer, insert the TACC logo + \begin{minipage}{.5\textwidth}% + \hskip .033\textwidth%Give horizontal space else this will set on the left edge of the slide! + % TACC logo with custom viewport! + \includegraphics[viewport=1 -1 135 35, clip=true, width=.4\textwidth]{figures/TACC_logo} + \end{minipage} + % + \begin{minipage}{.5\textwidth}% + \vskip .023\textheight% + \raggedleft% + \setlength{\rightskip}{.033\textwidth} + % + % If we are not on the first page, insert a page number + % For some reason, insertframenumber is buggy when you have fragile + % slides with verbatim environments in them... it tends to skip numbers + % for some reason! On the other hand, the pagenumber is incremented + % for *every* slide, including transition slides... + \ifnum \thepage>1 + % \insertshorttitle + \insertframenumber + % \insertframenumber/\inserttotalframenumber + % \insertpagenumber + \else % Do a phantom of whatever you do on other pages, so spacing matches + %$\phantom{\insertshorttitle}$ + $\phantom{\insertframenumber}$ + %$\phantom{\insertframenumber/\inserttotalframenumber}$ + %$\phantom{\insertpagenumber}$ + \fi + \hfill\includegraphics[width=.5\textwidth]{figures/UT_logo}% + \end{minipage}% + }% + \vskip .023\textheight% +} + + + + +\ifTACCheadernav + +\usesectionheadtemplate +{\hfill\insertsectionhead} +{\hfill\color{fg!50!bg}\insertsectionhead} + +% Head +\ifbeamer@compress + +% Here we define how the top of the frame looks, the "headline". +\setbeamertemplate{headline} +{% + \ifnum \thepage>1 + \leavevmode% + \begin{beamercolorbox}[wd=.5\paperwidth,ht=2.5ex,dp=1.125ex]{% + section in head/foot}% + \insertsectionnavigationhorizontal{.5\paperwidth}{\hskip0pt plus1filll}{}% + \end{beamercolorbox}% + \begin{beamercolorbox}[wd=.5\paperwidth,ht=2.5ex,dp=1.125ex]{% + subsection in head/foot}% + \insertsubsectionnavigationhorizontal{% + .5\paperwidth}{}{\hskip0pt plus1filll}% + \end{beamercolorbox}% + \fi %\thepage>1 +} + +\else% Not compressed + +\setbeamertemplate{headline} +{% + \ifnum \thepage>1 + \leavevmode% + \@tempdimb=2.4375ex% + \ifnum\beamer@subsectionmax<\beamer@sectionmax% + \multiply\@tempdimb by\beamer@sectionmax% + \else% + \multiply\@tempdimb by\beamer@subsectionmax% + \fi% + \ifdim\@tempdimb>0pt% + \advance\@tempdimb by 1.125ex% + \begin{beamercolorbox}[wd=.5\paperwidth,ht=\@tempdimb]{% + section in head/foot}% + \vbox to\@tempdimb{\vfil\insertsectionnavigation{.5\paperwidth}\vfil}% + \end{beamercolorbox}% + \begin{beamercolorbox}[wd=.5\paperwidth,ht=\@tempdimb]{% + subsection in head/foot}% + \vbox to\@tempdimb{\vfil\insertsubsectionnavigation{.5\paperwidth}\vfil}% + \end{beamercolorbox}% + \fi% + \fi % \thepage>1 +} + +\fi % end if compressed +\fi % TACCheadernav + + +\ifTACCheadertree + +\setbeamertemplate{headline} +{ + \begin{beamercolorbox}[wd=\paperwidth,colsep=1.5pt + ]{upper separation line head} + \end{beamercolorbox} + % + % Place short title + % + \begin{beamercolorbox}[wd=\paperwidth,ht=2.5ex,dp=1.125ex,% + leftskip=.3cm,rightskip=.3cm plus1fil]{title in head/foot} + \usebeamerfont{title in head/foot}\insertshorttitle + \end{beamercolorbox} + + % + % Place section + % + \begin{beamercolorbox}[wd=\paperwidth,ht=2.5ex,dp=1.125ex,% + leftskip=.3cm,rightskip=.3cm plus1fil]{section in head/foot} + \usebeamerfont{section in head/foot}% + %\ifbeamer@tree@showhooks + \setbox\beamer@tempbox=\hbox{\insertsectionhead}% + \ifdim\wd\beamer@tempbox>1pt% + \hskip2pt\raise1.9pt\hbox{\vrule width0.4pt height1.875ex\vrule width 5pt height0.4pt}% + \hskip1pt% + \fi% \ifdim + %\else% + %\hskip6pt% + %\fi% \ifbeamer + \insertsectionhead + \end{beamercolorbox} + +% +% Place subsection +% +\begin{beamercolorbox}[wd=\paperwidth,ht=2.5ex,dp=1.125ex,% + leftskip=.3cm,rightskip=.3cm plus1fil]{subsection in head/foot} + \usebeamerfont{subsection in head/foot}% + %\ifbeamer@tree@showhooks + \setbox\beamer@tempbox=\hbox{\insertsubsectionhead}% + \ifdim\wd\beamer@tempbox>1pt% + \hskip9.4pt\raise1.9pt\hbox{\vrule width0.4pt height1.875ex\vrule width 5pt height0.4pt}% + \hskip1pt% + \fi% \ifdim + %\else% + %\hskip12pt% + %\fi% \ifbeamer + \insertsubsectionhead +\end{beamercolorbox} + +% +% Place final separation box +% + \begin{beamercolorbox}[wd=\paperwidth,colsep=1.5pt + ]{lower separation line head} + \end{beamercolorbox} + + % + % Another matching rule which helps to frame the content + % + \hspace{.025\textwidth}\rule{.95\textwidth}{.5pt} +} +\fi % TACCheadertree + + +% The following command suppresses all navigation symbols. This is +% necessary in the TACC theme, since it overlaps where we want the +% logo to be. +\setbeamertemplate{navigation symbols}{} + +% Align the navigation symbols vertically (still overlaps our logo!) +%\setbeamertemplate{navigation symbols}[vertical]{} + +% Only places the slide-forward and slide-back symbol, but yes, +% this still overlaps our logo! +%\setbeamertemplate{navigation symbols}[only frame symbol]{} + + +\mode + diff --git a/my_docs/21/lmod_zoom_mtg_2021_10_05/beamerouterthemeTACC16.sty b/my_docs/21/lmod_zoom_mtg_2021_10_05/beamerouterthemeTACC16.sty deleted file mode 120000 index 54bd09537..000000000 --- a/my_docs/21/lmod_zoom_mtg_2021_10_05/beamerouterthemeTACC16.sty +++ /dev/null @@ -1 +0,0 @@ -../../beamer/beamerouterthemeTACC16.sty \ No newline at end of file diff --git a/my_docs/21/lmod_zoom_mtg_2021_10_05/beamerouterthemeTACC16.sty b/my_docs/21/lmod_zoom_mtg_2021_10_05/beamerouterthemeTACC16.sty new file mode 100755 index 000000000..d5e6388c7 --- /dev/null +++ b/my_docs/21/lmod_zoom_mtg_2021_10_05/beamerouterthemeTACC16.sty @@ -0,0 +1,312 @@ +% Antonio Gomez (agomez@tacc.utexas.edu) +% 4-20-17. Added option to put the footer on the right side + + + +\mode + +\usepackage{xcolor} +\usepackage{graphicx} +\usepackage{etoolbox} + + + +% This theme accepts the "rightfooter" option +% When used, it will put the TACC logo at the bottom of the slide on the right side +% By default, it goes to the left + +\xifaspectratio{ + {169} { + \pgfdeclareimage[width=\paperwidth]{titlebackground}{./figures/master169.jpg} + \if@rightfooterOption + \pgfdeclareimage[width=\paperwidth]{background}{./figures/secondary_right169.jpg} +\else + \pgfdeclareimage[width=\paperwidth]{background}{./figures/secondary169.jpg} +\fi +} +}[ +\pgfdeclareimage[width=\paperwidth]{titlebackground}{./figures/master.jpg} + \if@rightfooterOption + \pgfdeclareimage[width=\paperwidth]{background}{./figures/secondary_right.jpg} +\else + \pgfdeclareimage[width=\paperwidth]{background}{./figures/secondary.jpg} +\fi +] + +\setbeamertemplate{background canvas}{% +\xifaspectratio{ + {169} { + \ifnum\c@framenumber=1 % + \begin{picture}(0,0) + \put(-3,-256){% + \pgfuseimage{titlebackground} + } + \end{picture} + \else% + \begin{picture}(0,0) + \put(-3,-260){% + \pgfuseimage{background} + } + \end{picture} + \fi + } + {43} { + \ifnum\c@framenumber=1 % + \begin{picture}(0,0) + \put(-4,-274){% + \pgfuseimage{titlebackground} + } + \end{picture} + \else% + \begin{picture}(0,0) + \put(-4,-274){% + \pgfuseimage{background} + } + \end{picture} + \fi + } +} +} + + + +%\setbeamertemplate{background canvas}{% +% % On title page +% \ifnum\c@framenumber=1 % +% \begin{picture}(0,0) +% \put(0,-253){% +% \pgfuseimage{titlebackground} +% } +% \end{picture} +% +% \else% +% \xifaspectratio{ +% {169} { +% % Other frames background +% \begin{picture}(0,0) +% \put(-4,-260){% +% \pgfuseimage{background} +% } +% \end{picture} +% } +% }[ +% % Other frames background +% \begin{picture}(0,0) +% \put(-4,-274){% +% \pgfuseimage{background} +% } +% \end{picture} +% ] +% \fi% +%} + + +\setbeamertemplate{title page}{ +\vspace{40pt} +\begin{center} +\usebeamerfont{title} {\huge \inserttitle}\par +\vspace{4ex} +\usebeamerfont{author} { + \insertauthor +}\par +\vspace{2ex} +\usebeamerfont{institute}{ + \insertinstitute +} \par +\vspace{2ex} +\usebeamerfont{date}{ + \insertdate +} +\end{center} +} + + +\setbeamertemplate{frametitle}[default][center] +\setbeamertemplate{frametitle}{ + \makeatletter + \regexpatchcmd{\insertframetitle} + {(\c{usebeamertemplate}.*)\c{fi}} + {\c{NoCaseChange}\cB\{\1\cE\}\c{fi}} + {}{}% + \makeatother + \vskip1ex + \insertframetitle +} + +% Here we define what appears at the bottom of each slide: the "footline". +\setbeamertemplate{footline}{% + \leavevmode% + + % Horizontal line dividing the rest of the slide from the footer? + % hrule goes all the way across... + % \hrule height.3pt% + % With \rule, you can specify the thickness + % \rule[raise-height]{width}{thickness} + % \hspace{.025\textwidth}\rule{.95\textwidth}{.5pt} + + \hbox{% + \ifnum \thepage>1 + \if@rightfooterOption + \begin{minipage}{.2\textwidth}% + \hskip .05\textwidth%Give horizontal space else this will set on the left edge of the slide! + \end{minipage} + \else + \begin{minipage}{.4\textwidth}% + \hskip .05\textwidth%Give horizontal space else this will set on the left edge of the slide! + \end{minipage} + \fi + + + \begin{minipage}{\textwidth}% + % \vskip .023\textheight% + \raggedleft% + \setlength{\rightskip}{\textwidth} + \if@rightfooterOption + \hbox{% + \begin{beamercolorbox}[wd=0.7\textwidth,ht=2.25ex,dp=1ex,left]{author in head/foot}% + \insertshorttitle{} \hskip .01\textwidth | \hskip .01\textwidth \insertdate{} \hskip .01\textwidth | \hskip .01\textwidth \insertframenumber{} + \end{beamercolorbox}% + } + \else + \hbox{% + \begin{beamercolorbox}[wd=0.5\textwidth,ht=2.25ex,dp=1ex,left]{author in head/foot}% + \insertshorttitle{} \hskip .01\textwidth | \hskip .01\textwidth \insertdate{} \hskip .01\textwidth | \hskip .01\textwidth \insertframenumber{} + \end{beamercolorbox}% + } + \fi + + \end{minipage}% + \begin{minipage}{.05\textwidth}% + \end{minipage}% + \fi %\thepage>1 + }% + \vskip .023\textheight% + +} + + + + +\ifTACCheadernav + +\usesectionheadtemplate +{\hfill\insertsectionhead} +{\hfill\color{fg!50!bg}\insertsectionhead} + +% Head +\ifbeamer@compress + +% Here we define how the top of the frame looks, the "headline". +\setbeamertemplate{headline} +{% + \ifnum \thepage>1 + \leavevmode% + \begin{beamercolorbox}[wd=.5\paperwidth,ht=2.5ex,dp=1.125ex]{% + section in head/foot}% + \insertsectionnavigationhorizontal{.5\paperwidth}{\hskip0pt plus1filll}{}% + \end{beamercolorbox}% + \begin{beamercolorbox}[wd=.5\paperwidth,ht=2.5ex,dp=1.125ex]{% + subsection in head/foot}% + \insertsubsectionnavigationhorizontal{% + .5\paperwidth}{}{\hskip0pt plus1filll}% + \end{beamercolorbox}% + \fi %\thepage>1 +} + +\else% Not compressed + +\setbeamertemplate{headline} +{% + \ifnum \thepage>1 + \leavevmode% + \@tempdimb=2.4375ex% + \ifnum\beamer@subsectionmax<\beamer@sectionmax% + \multiply\@tempdimb by\beamer@sectionmax% + \else% + \multiply\@tempdimb by\beamer@subsectionmax% + \fi% + \ifdim\@tempdimb>0pt% + \advance\@tempdimb by 1.125ex% + \begin{beamercolorbox}[wd=.5\paperwidth,ht=\@tempdimb]{% + section in head/foot}% + \vbox to\@tempdimb{\vfil\insertsectionnavigation{.5\paperwidth}\vfil}% + \end{beamercolorbox}% + \begin{beamercolorbox}[wd=.5\paperwidth,ht=\@tempdimb]{% + subsection in head/foot}% + \vbox to\@tempdimb{\vfil\insertsubsectionnavigation{.5\paperwidth}\vfil}% + \end{beamercolorbox}% + \fi% + \fi % \thepage>1 +} + +\fi % end if compressed +\fi % TACCheadernav + + +\ifTACCheadertree + +\setbeamertemplate{headline} +{ + \begin{beamercolorbox}[wd=\paperwidth,colsep=1.5pt]{upper separation line head} + \end{beamercolorbox} + % + % Place short title + % + \begin{beamercolorbox}[wd=\paperwidth,ht=2.5ex,dp=1.125ex,% + leftskip=.3cm,rightskip=.3cm plus1fil]{title in head/foot} + \usebeamerfont{title in head/foot}\insertshorttitle + \end{beamercolorbox} + + % + % Place section + % + \begin{beamercolorbox}[wd=\paperwidth,ht=2.5ex,dp=1.125ex,% + leftskip=.3cm,rightskip=.3cm plus1fil]{section in head/foot} + \usebeamerfont{section in head/foot}% + %\ifbeamer@tree@showhooks + \setbox\beamer@tempbox=\hbox{\insertsectionhead}% + \ifdim\wd\beamer@tempbox>1pt% + \hskip2pt\raise1.9pt\hbox{\vrule width0.4pt height1.875ex\vrule width 5pt height0.4pt}% + \hskip1pt% + \fi + \insertsectionhead + \end{beamercolorbox} + +% +% Place subsection +% +\begin{beamercolorbox}[wd=\paperwidth,ht=2.5ex,dp=1.125ex,% + leftskip=.3cm,rightskip=.3cm plus1fil]{subsection in head/foot} + \usebeamerfont{subsection in head/foot}% + %\ifbeamer@tree@showhooks + \setbox\beamer@tempbox=\hbox{\insertsubsectionhead}% + \ifdim\wd\beamer@tempbox>1pt% + \hskip9.4pt\raise1.9pt\hbox{\vrule width0.4pt height1.875ex\vrule width 5pt height0.4pt}% + \hskip1pt% + \fi + \insertsubsectionhead +\end{beamercolorbox} + +% +% Place final separation box +% + \begin{beamercolorbox}[wd=\paperwidth,colsep=1.5pt + ]{lower separation line head} + \end{beamercolorbox} + + % + % Another matching rule which helps to frame the content + % + \hspace{.025\textwidth}\rule{.95\textwidth}{.5pt} +} +\fi % TACCheadertree + + +% The following command suppresses all navigation symbols. This is +% necessary in the TACC theme, since it overlaps where we want the +% logo to be. +\setbeamertemplate{navigation symbols}{} + + +\mode + diff --git a/my_docs/21/lmod_zoom_mtg_2021_10_05/beamerthemeTACC.sty b/my_docs/21/lmod_zoom_mtg_2021_10_05/beamerthemeTACC.sty deleted file mode 120000 index 5c339abd4..000000000 --- a/my_docs/21/lmod_zoom_mtg_2021_10_05/beamerthemeTACC.sty +++ /dev/null @@ -1 +0,0 @@ -../../beamer/beamerthemeTACC.sty \ No newline at end of file diff --git a/my_docs/21/lmod_zoom_mtg_2021_10_05/beamerthemeTACC.sty b/my_docs/21/lmod_zoom_mtg_2021_10_05/beamerthemeTACC.sty new file mode 100755 index 000000000..c6a1b1269 --- /dev/null +++ b/my_docs/21/lmod_zoom_mtg_2021_10_05/beamerthemeTACC.sty @@ -0,0 +1,26 @@ +%% TACC theme for beamer + +\newif\ifTACCheadernav +\DeclareOption{headernav}{\global\TACCheadernavtrue} + +\newif\ifTACCheadertree +\DeclareOption{headertree}{\global\TACCheadertreetrue} +\ProcessOptions + +\mode + +\usefonttheme{TACC} +\usecolortheme{TACC} +\useinnertheme{TACC} +\useoutertheme{TACC} + +\mode + + +\newcommand{\event}[1]{% + \makeatletter% + \def\TACC@eventname{#1}% + \makeatother} + +\newcommand{\sectionframe}[1]{\section{#1}\frame{\Large\textbf{#1}}} +\newcommand{\subsectionframe}[1]{\subsection{#1}\frame{\large\textbf{#1}}} diff --git a/my_docs/21/lmod_zoom_mtg_2021_10_05/beamerthemeTACC16.sty b/my_docs/21/lmod_zoom_mtg_2021_10_05/beamerthemeTACC16.sty deleted file mode 120000 index 7a9d4d296..000000000 --- a/my_docs/21/lmod_zoom_mtg_2021_10_05/beamerthemeTACC16.sty +++ /dev/null @@ -1 +0,0 @@ -../../beamer/beamerthemeTACC16.sty \ No newline at end of file diff --git a/my_docs/21/lmod_zoom_mtg_2021_10_05/beamerthemeTACC16.sty b/my_docs/21/lmod_zoom_mtg_2021_10_05/beamerthemeTACC16.sty new file mode 100755 index 000000000..b522d0207 --- /dev/null +++ b/my_docs/21/lmod_zoom_mtg_2021_10_05/beamerthemeTACC16.sty @@ -0,0 +1,61 @@ +%% TACC theme for beamer + + +\newif\if@rightfooterOption +\@rightfooterOptionfalse +\DeclareOption{rightfooter}{\@rightfooterOptiontrue} +\ProcessOptions + + +\newif\ifTACCheadernav +\DeclareOption{headernav}{\global\TACCheadernavtrue} + +\newif\ifTACCheadertree +\DeclareOption{headertree}{\global\TACCheadertreetrue} +\ProcessOptions + +\usepackage{xparse} +\ExplSyntaxOn +\NewDocumentCommand{\ifaspectratio}{mmm} + { + % Recover the option from those passed to the class + \keys_set:nf { zunbeltz/beameroptions } { \use:c { opt@beamer.cls } } + \str_if_eq:nVTF { #1 } \l_zunbeltz_aspectratio_tl { #2 } { #3 } + } +\NewDocumentCommand{\xifaspectratio}{mO{}} + { + % Recover the option from those passed to the class + \keys_set:nf { zunbeltz/beameroptions } { \use:c { opt@beamer.cls } } + \str_case:VnF \l_zunbeltz_aspectratio_tl { #1 } { #2 } + } +% We need to define only one key, the other are treated as `unknown' +\keys_define:nn { zunbeltz/beameroptions } + { + aspectratio .tl_set:N = \l_zunbeltz_aspectratio_tl, + aspectratio .initial:n = 43, + unknown .code:n = {}, + } + +% Generate the variants we need +\cs_generate_variant:Nn \keys_set:nn { nf } +\cs_generate_variant:Nn \str_if_eq:nnTF { nV } +\cs_generate_variant:Nn \str_case:nnF { V } +\ExplSyntaxOff + +\mode + +\usefonttheme{TACC16} +\useinnertheme{TACC16} +\useoutertheme{TACC16} +\usecolortheme{TACC16} + +\mode + + +\newcommand{\event}[1]{% + \makeatletter% + \def\TACC@eventname{#1}% + \makeatother} + +\newcommand{\sectionframe}[1]{\section{#1}\frame{\Large\textbf{#1}}} +\newcommand{\subsectionframe}[1]{\subsection{#1}\frame{\large\textbf{#1}}} diff --git a/my_docs/21/lmod_zoom_mtg_2021_10_05/figures b/my_docs/21/lmod_zoom_mtg_2021_10_05/figures deleted file mode 120000 index ddafd8974..000000000 --- a/my_docs/21/lmod_zoom_mtg_2021_10_05/figures +++ /dev/null @@ -1 +0,0 @@ -../../beamer/figures \ No newline at end of file diff --git a/my_docs/21/lmod_zoom_mtg_2021_10_05/figures/TACC_logo.pdf b/my_docs/21/lmod_zoom_mtg_2021_10_05/figures/TACC_logo.pdf new file mode 100755 index 000000000..c018a20cb Binary files /dev/null and b/my_docs/21/lmod_zoom_mtg_2021_10_05/figures/TACC_logo.pdf differ diff --git a/my_docs/21/lmod_zoom_mtg_2021_10_05/figures/UT_logo.pdf b/my_docs/21/lmod_zoom_mtg_2021_10_05/figures/UT_logo.pdf new file mode 100755 index 000000000..d5b42e752 Binary files /dev/null and b/my_docs/21/lmod_zoom_mtg_2021_10_05/figures/UT_logo.pdf differ diff --git a/my_docs/21/lmod_zoom_mtg_2021_10_05/figures/cc.png b/my_docs/21/lmod_zoom_mtg_2021_10_05/figures/cc.png new file mode 100644 index 000000000..8a532ff8f Binary files /dev/null and b/my_docs/21/lmod_zoom_mtg_2021_10_05/figures/cc.png differ diff --git a/my_docs/21/lmod_zoom_mtg_2021_10_05/figures/isa.png b/my_docs/21/lmod_zoom_mtg_2021_10_05/figures/isa.png new file mode 100644 index 000000000..f95d985e7 Binary files /dev/null and b/my_docs/21/lmod_zoom_mtg_2021_10_05/figures/isa.png differ diff --git a/my_docs/21/lmod_zoom_mtg_2021_10_05/figures/master.jpg b/my_docs/21/lmod_zoom_mtg_2021_10_05/figures/master.jpg new file mode 100644 index 000000000..f5c56c04a Binary files /dev/null and b/my_docs/21/lmod_zoom_mtg_2021_10_05/figures/master.jpg differ diff --git a/my_docs/21/lmod_zoom_mtg_2021_10_05/figures/master169.jpg b/my_docs/21/lmod_zoom_mtg_2021_10_05/figures/master169.jpg new file mode 100644 index 000000000..b215776eb Binary files /dev/null and b/my_docs/21/lmod_zoom_mtg_2021_10_05/figures/master169.jpg differ diff --git a/my_docs/21/lmod_zoom_mtg_2021_10_05/figures/master169.png b/my_docs/21/lmod_zoom_mtg_2021_10_05/figures/master169.png new file mode 100644 index 000000000..bc5c0ed12 Binary files /dev/null and b/my_docs/21/lmod_zoom_mtg_2021_10_05/figures/master169.png differ diff --git a/my_docs/21/lmod_zoom_mtg_2021_10_05/figures/secondary.jpg b/my_docs/21/lmod_zoom_mtg_2021_10_05/figures/secondary.jpg new file mode 100644 index 000000000..d905a95c9 Binary files /dev/null and b/my_docs/21/lmod_zoom_mtg_2021_10_05/figures/secondary.jpg differ diff --git a/my_docs/21/lmod_zoom_mtg_2021_10_05/figures/secondary169.jpg b/my_docs/21/lmod_zoom_mtg_2021_10_05/figures/secondary169.jpg new file mode 100644 index 000000000..4eb017957 Binary files /dev/null and b/my_docs/21/lmod_zoom_mtg_2021_10_05/figures/secondary169.jpg differ diff --git a/my_docs/21/lmod_zoom_mtg_2021_10_05/figures/secondary169.png b/my_docs/21/lmod_zoom_mtg_2021_10_05/figures/secondary169.png new file mode 100644 index 000000000..cb9060a56 Binary files /dev/null and b/my_docs/21/lmod_zoom_mtg_2021_10_05/figures/secondary169.png differ diff --git a/my_docs/21/lmod_zoom_mtg_2021_10_05/figures/secondary_right.jpg b/my_docs/21/lmod_zoom_mtg_2021_10_05/figures/secondary_right.jpg new file mode 100644 index 000000000..f25f93a58 Binary files /dev/null and b/my_docs/21/lmod_zoom_mtg_2021_10_05/figures/secondary_right.jpg differ diff --git a/my_docs/21/lmod_zoom_mtg_2021_10_05/figures/secondary_right169.jpg b/my_docs/21/lmod_zoom_mtg_2021_10_05/figures/secondary_right169.jpg new file mode 100644 index 000000000..567a1078f Binary files /dev/null and b/my_docs/21/lmod_zoom_mtg_2021_10_05/figures/secondary_right169.jpg differ diff --git a/my_docs/21/lmod_zoom_mtg_2021_10_05/themes b/my_docs/21/lmod_zoom_mtg_2021_10_05/themes deleted file mode 120000 index a98530730..000000000 --- a/my_docs/21/lmod_zoom_mtg_2021_10_05/themes +++ /dev/null @@ -1 +0,0 @@ -../../beamer/themes \ No newline at end of file diff --git a/my_docs/21/lmod_zoom_mtg_2021_10_05/themes/beamercolorthemeTACC16.sty b/my_docs/21/lmod_zoom_mtg_2021_10_05/themes/beamercolorthemeTACC16.sty new file mode 100644 index 000000000..248ae8cb6 --- /dev/null +++ b/my_docs/21/lmod_zoom_mtg_2021_10_05/themes/beamercolorthemeTACC16.sty @@ -0,0 +1,193 @@ +% Copyright 2003 by Till Tantau . +% +% This program can be redistributed and/or modified under the terms +% of the GNU Public License, version 2. + +\mode + +\usepackage{textcase,regexpatch} + +\setbeamertemplate{blocks}[rounded][shadow=true] + + +\definecolor{TACCred}{RGB}{180,13,29} +\definecolor{TACCorange}{RGB}{210,104,43} +\definecolor{TACCblue}{RGB}{21,77,122} +%\definecolor{TACCgreen}{RGB}{30,134,104} +\definecolor{TACCgreen}{RGB}{49,168,51} + +% I downloaded a gimp color palette from +% http://maururu.net/2007/latex-beamer-color-palette/ +% Which provides rgb values (I think) for several of the +% default beamer themes. You can open this in gimp by +% opening the Palettes dialog, right-clicking anywhere and choosing +% 'Import Palette'. A color in there called 'default added blue' +% appeared to be approximately what I wanted. It had the triple +% of values 141 145 208. If you double-click on this in the +% palette editor it gives you a bunch of information. You can't +% use these values directly to set a color...it just comes out white. +% I think definecolor is expecting something normalized by 255. Yes! + + +%%% +% Set the normal text color +%%% +\setbeamercolor{normal text}{fg=black} %,bg=white} +\setbeamercolor{example text}{fg=TACCgreen} +\setbeamercolor{alerted text}{fg=TACCorange} + + +\setbeamercolor{structure}{fg=black} +%\setbeamercolor{structure}{fg=black} + +\setbeamercolor{background canvas}{parent=normal text} +\setbeamercolor{background}{parent=background canvas} + +\setbeamercolor{palette primary}{use=structure,fg=structure.fg} +\setbeamercolor{palette secondary}{use=structure,fg=structure.fg!75!black} +\setbeamercolor{palette tertiary}{use=structure,fg=structure.fg!50!black} +\setbeamercolor{palette quaternary}{fg=black} + +\setbeamercolor{palette sidebar primary}{use=normal text,fg=normal text.fg} +\setbeamercolor{palette sidebar secondary}{use=structure,fg=structure.fg} +\setbeamercolor{palette sidebar tertiary}{use=normal text,fg=normal text.fg} +\setbeamercolor{palette sidebar quaternary}{use=structure,fg=structure.fg} + +\setbeamercolor{math text}{} +\setbeamercolor{math text inlined}{parent=math text} +\setbeamercolor{math text displayed}{parent=math text} + +\setbeamercolor{normal text in math text}{} + +\setbeamercolor{local structure}{parent=structure} + +\setbeamercolor{titlelike}{parent=structure} + +\setbeamercolor{title}{parent=titlelike} +\setbeamercolor{title in head/foot}{parent=palette quaternary} +\setbeamercolor{title in sidebar}{parent=palette sidebar quaternary} + +\setbeamercolor{subtitle}{parent=title} + +\setbeamercolor{author}{} +\setbeamercolor{author in head/foot}{parent=palette primary} +\setbeamercolor{author in sidebar}{use=palette sidebar tertiary,fg=palette sidebar tertiary.fg} + +\setbeamercolor{institute}{} +\setbeamercolor{institute in head/foot}{parent=palette tertiary} +\setbeamercolor{institute in sidebar}{use=palette sidebar tertiary,fg=palette sidebar tertiary.fg} + +\setbeamercolor{date}{} +\setbeamercolor{date in head/foot}{parent=palette secondary} +\setbeamercolor{date in sidebar}{use=palette sidebar tertiary,fg=palette sidebar tertiary.fg} + +\setbeamercolor{titlegraphic}{} + +\setbeamercolor{part name}{} +\setbeamercolor{part title}{parent=titlelike} + +\setbeamercolor{section in toc}{parent=structure} +\setbeamercolor{section in toc shaded}{parent=section in toc} +\setbeamercolor{section in head/foot}{parent=palette tertiary} +\setbeamercolor{section in sidebar}{parent=palette sidebar secondary} +\setbeamercolor{section in sidebar shaded}{use=section in sidebar,fg=section in sidebar.fg!40!bg} +\setbeamercolor{section number projected}{parent=item projected} + +\setbeamercolor{subsection in toc}{} +\setbeamercolor{subsection in toc shaded}{parent=subsection in toc} +\setbeamercolor{subsection in head/foot}{parent=palette secondary} +\setbeamercolor{subsection in sidebar}{parent=palette sidebar primary} +\setbeamercolor{subsection in sidebar shaded}{use=subsection in sidebar,fg=subsection in sidebar.fg!40!bg} +\setbeamercolor{subsection number projected}{parent={subitem projected}} + +\setbeamercolor{subsubsection in toc}{parent=subsection in toc} +\setbeamercolor{subsubsection in toc shaded}{parent=subsubsection in toc} +\setbeamercolor{subsubsection in head/foot}{parent=subsection in head/foot} +\setbeamercolor{subsubsection in sidebar}{parent=subsection in sidebar} +\setbeamercolor{subsubsection in sidebar shaded}{parent=subsection in sidebar shaded} +\setbeamercolor{subsubsection number projected}{parent=subsubitem projected} + +\setbeamercolor{headline}{} +\setbeamercolor{footline}{} + +\setbeamercolor{sidebar}{} +\setbeamercolor{sidebar left}{parent=sidebar} +\setbeamercolor{sidebar right}{parent=sidebar} + +\setbeamercolor{logo}{parent=palette secondary} + +\setbeamercolor{frametitle}{parent=titlelike} +\setbeamercolor{framesubtitle}{parent=frametitle} + +\setbeamercolor{frametitle right}{parent=frametitle} + +\setbeamercolor{caption}{} +\setbeamercolor{caption name}{parent=structure} + +\setbeamercolor{button}{use=local structure,bg=local structure.fg!50!bg,fg=white} +\setbeamercolor{button border}{use=button,fg=button.bg} +\setbeamercolor{navigation symbols}{use=structure,fg=structure.fg!40!bg} +\setbeamercolor{navigation symbols dimmed}{use=structure,fg=structure.fg!20!bg} +\setbeamercolor{mini frame}{parent=section in head/foot} + +\setbeamercolor{block body}{fg=black} +\setbeamercolor{block body alerted}{fg=black} +\setbeamercolor{block body example}{fg=black} + +\setbeamercolor{block title}{bg=TACCblue,fg=white} +\setbeamercolor{block title alerted}{bg=TACCred,fg=white} +\setbeamercolor{block title example}{bg=TACCgreen,fg=white} + +\setbeamercolor{item}{parent=local structure} +\setbeamercolor{subitem}{parent=item} +\setbeamercolor{subsubitem}{parent=subitem} + +\setbeamercolor{item projected}{parent=item,use=item,fg=black,bg=item.fg} +\setbeamercolor{subitem projected}{parent=item projected} +\setbeamercolor{subsubitem projected}{parent=subitem projected} + +\setbeamercolor{enumerate item}{parent=item} +\setbeamercolor{enumerate subitem}{parent=subitem} +\setbeamercolor{enumerate subsubitem}{parent=subsubitem} + +\setbeamercolor{itemize item}{parent=item} +\setbeamercolor{itemize subitem}{parent=subitem} +\setbeamercolor{itemize subsubitem}{parent=subsubitem} + +\setbeamercolor{itemize/enumerate body}{} +\setbeamercolor{itemize/enumerate subbody}{} +\setbeamercolor{itemize/enumerate subsubbody}{} + +\setbeamercolor{description item}{parent=item} + +\setbeamercolor{bibliography item}{parent=item} + +\setbeamercolor{bibliography entry author}{use=structure,fg=structure.fg} +\setbeamercolor{bibliography entry title}{use=normal text,fg=normal text.fg} +\setbeamercolor{bibliography entry location}{use=structure,fg=structure.fg!65!bg} +\setbeamercolor{bibliography entry note}{use=structure,fg=structure.fg!65!bg} + +\setbeamercolor{separation line}{} + +\setbeamercolor{upper separation line head}{parent=separation line} +\setbeamercolor{middle separation line head}{parent=separation line} +\setbeamercolor{lower separation line head}{parent=separation line} + +\setbeamercolor{upper separation line foot}{parent=separation line} +\setbeamercolor{middle separation line foot}{parent=separation line} +\setbeamercolor{lower separation line foot}{parent=separation line} + +\setbeamercolor{abstract}{} +\setbeamercolor{abstract title}{parent=structure} + +\setbeamercolor{verse}{} + +\setbeamercolor{quotation}{} +\setbeamercolor{quote}{parent=quotation} + +\setbeamercolor{page number in head/foot}{fg=fg!50!bg} + +\setbeamercolor{qed symbol}{parent=structure} + +\mode + diff --git a/my_docs/21/lmod_zoom_mtg_2021_10_05/themes/beamerfontthemeTACC16.sty b/my_docs/21/lmod_zoom_mtg_2021_10_05/themes/beamerfontthemeTACC16.sty new file mode 100644 index 000000000..d0fc325cc --- /dev/null +++ b/my_docs/21/lmod_zoom_mtg_2021_10_05/themes/beamerfontthemeTACC16.sty @@ -0,0 +1,21 @@ +% Copyright 2003 by Till Tantau +% +% This program can be redistributed and/or modified under the terms +% of the GNU Public License, version 2. + +\mode +\setbeamerfont{title}{parent=structure,size=\LARGE,series=\bfseries} +\setbeamerfont{author}{parent=structure,size=\large, series=\normalfont} +\setbeamerfont{frametitle}{parent=structure,size=\LARGE,series=\bfseries} +\setbeamerfont{framesubtitle}{parent=frametitle,size=\small} + +%\usefonttheme{professionalfonts} % using non standard fonts for beamer +%\usefonttheme{serif} % default family is serif +%\usepackage{fontspec} +%\setmainfont{Century Gothic} + +%\usepackage{fontspec} +\usepackage{libertine} + +\mode + diff --git a/my_docs/21/lmod_zoom_mtg_2021_10_05/themes/beamerinnerthemeTACC16.sty b/my_docs/21/lmod_zoom_mtg_2021_10_05/themes/beamerinnerthemeTACC16.sty new file mode 100644 index 000000000..f7f454e1d --- /dev/null +++ b/my_docs/21/lmod_zoom_mtg_2021_10_05/themes/beamerinnerthemeTACC16.sty @@ -0,0 +1,11 @@ +\mode + +\setbeamertemplate{itemize item}[triangle] +\setbeamertemplate{itemize subitem}[triangle] +\setbeamertemplate{itemize subsubitem}[triangle] +\setbeamertemplate{section in toc}{$\bullet$\hskip.5em\inserttocsection} +%\setbeamertemplate{subsection in toc}{} +\setbeamertemplate{subsubsection in toc}{} + +\mode + diff --git a/my_docs/21/lmod_zoom_mtg_2021_10_05/themes/beamerouterthemeTACC16-169.sty b/my_docs/21/lmod_zoom_mtg_2021_10_05/themes/beamerouterthemeTACC16-169.sty new file mode 100644 index 000000000..c62f9ed04 --- /dev/null +++ b/my_docs/21/lmod_zoom_mtg_2021_10_05/themes/beamerouterthemeTACC16-169.sty @@ -0,0 +1,247 @@ +% Copyright 2003 by Till Tantau +% +% This program can be redistributed and/or modified under the terms +% of the GNU Public License, version 2. + +\mode + +\usepackage{xcolor} +\usepackage{graphicx} +\usepackage{etoolbox} + +\pgfdeclareimage[width=\paperwidth]{titlebackground}{./figures/master169.png} +\pgfdeclareimage[width=\paperwidth]{background}{./figures/secondary169.png} + +\setbeamertemplate{background canvas}{% + \ifnum\c@framenumber=1% + \begin{picture}(0,0) + \put(-0.15,-250){% + \pgfuseimage{titlebackground} + } + %\put(0,-130.7){% + + %\begin{minipage}[b][45mm][t]{\textwidth}%{226mm} + %\begin{center} + % \usebeamerfont{title}{\MakeTextUppercase{\inserttitle}\par} + %\vspace{2ex} + %\usebeamerfont{author}{\insertauthor} + % \end{center} + %\end{minipage} + %} + \end{picture} + % On title page + \else% + % Other frames background + \begin{picture}(0,0) + \put(-0.15,-255.55){% + \pgfuseimage{background} + } + \end{picture} + \fi% +} + + +\setbeamertemplate{title page}{ +\vspace{40pt} +\begin{center} +\usebeamerfont{title} {\huge \inserttitle}\par +\vspace{4ex} +\usebeamerfont{author} { + \insertauthor +}\par +\vspace{2ex} +\usebeamerfont{institute}{ + \insertinstitute +} \par +\vspace{2ex} +\usebeamerfont{date}{ + \insertdate +} +\end{center} +} + + +\setbeamertemplate{frametitle}[default][center] +\setbeamertemplate{frametitle}{ + \makeatletter + \regexpatchcmd{\insertframetitle} + {(\c{usebeamertemplate}.*)\c{fi}} + {\c{NoCaseChange}\cB\{\1\cE\}\c{fi}} + {}{}% + \makeatother + \vskip1ex + \insertframetitle +} + +% Here we define what appears at the bottom of each slide: the "footline". +\setbeamertemplate{footline}{% + \leavevmode% + + % Horizontal line dividing the rest of the slide from the footer? + % hrule goes all the way across... + % \hrule height.3pt% + % With \rule, you can specify the thickness + % \rule[raise-height]{width}{thickness} + % \hspace{.025\textwidth}\rule{.95\textwidth}{.5pt} + + \hbox{% + \ifnum \thepage>1 + % On the left half of the footer, insert the TACC of + \begin{minipage}{.2\textwidth}% + \hskip .05\textwidth%Give horizontal space else this will set on the left edge of the slide! + % \includegraphics[width=.8\textwidth]{TACC_logo.png} + \end{minipage} + + + \begin{minipage}{\textwidth}% + % \vskip .023\textheight% + \raggedleft% + \setlength{\rightskip}{\textwidth} + \hbox{% + \begin{beamercolorbox}[wd=0.7\textwidth,ht=2.25ex,dp=1ex,left]{author in head/foot}% + \insertshorttitle{} \hskip .01\textwidth | \hskip .01\textwidth \insertdate{} \hskip .01\textwidth | \hskip .01\textwidth \insertframenumber{} + \end{beamercolorbox}% + } + + % + % If we are not on the first page, insert a page number + % For some reason, insertframenumber is buggy when you have fragile + % slides with verbatim environments in them... it tends to skip numbers + % for some reason! On the other hand, the pagenumber is incremented + % for *every* slide, including transition slides... + % \hfill\includegraphics[width=\textwidth]{tacc_ut.png} + \end{minipage}% + \begin{minipage}{.05\textwidth}% + \end{minipage}% + \fi %\thepage>1 + }% + \vskip .023\textheight% + +} + + + + +\ifTACCheadernav + +\usesectionheadtemplate +{\hfill\insertsectionhead} +{\hfill\color{fg!50!bg}\insertsectionhead} + +% Head +\ifbeamer@compress + +% Here we define how the top of the frame looks, the "headline". +\setbeamertemplate{headline} +{% + \ifnum \thepage>1 + \leavevmode% + \begin{beamercolorbox}[wd=.5\paperwidth,ht=2.5ex,dp=1.125ex]{% + section in head/foot}% + \insertsectionnavigationhorizontal{.5\paperwidth}{\hskip0pt plus1filll}{}% + \end{beamercolorbox}% + \begin{beamercolorbox}[wd=.5\paperwidth,ht=2.5ex,dp=1.125ex]{% + subsection in head/foot}% + \insertsubsectionnavigationhorizontal{% + .5\paperwidth}{}{\hskip0pt plus1filll}% + \end{beamercolorbox}% + \fi %\thepage>1 +} + +\else% Not compressed + +\setbeamertemplate{headline} +{% + \ifnum \thepage>1 + \leavevmode% + \@tempdimb=2.4375ex% + \ifnum\beamer@subsectionmax<\beamer@sectionmax% + \multiply\@tempdimb by\beamer@sectionmax% + \else% + \multiply\@tempdimb by\beamer@subsectionmax% + \fi% + \ifdim\@tempdimb>0pt% + \advance\@tempdimb by 1.125ex% + \begin{beamercolorbox}[wd=.5\paperwidth,ht=\@tempdimb]{% + section in head/foot}% + \vbox to\@tempdimb{\vfil\insertsectionnavigation{.5\paperwidth}\vfil}% + \end{beamercolorbox}% + \begin{beamercolorbox}[wd=.5\paperwidth,ht=\@tempdimb]{% + subsection in head/foot}% + \vbox to\@tempdimb{\vfil\insertsubsectionnavigation{.5\paperwidth}\vfil}% + \end{beamercolorbox}% + \fi% + \fi % \thepage>1 +} + +\fi % end if compressed +\fi % TACCheadernav + + +\ifTACCheadertree + +\setbeamertemplate{headline} +{ + \begin{beamercolorbox}[wd=\paperwidth,colsep=1.5pt]{upper separation line head} + \end{beamercolorbox} + % + % Place short title + % + \begin{beamercolorbox}[wd=\paperwidth,ht=2.5ex,dp=1.125ex,% + leftskip=.3cm,rightskip=.3cm plus1fil]{title in head/foot} + \usebeamerfont{title in head/foot}\insertshorttitle + \end{beamercolorbox} + + % + % Place section + % + \begin{beamercolorbox}[wd=\paperwidth,ht=2.5ex,dp=1.125ex,% + leftskip=.3cm,rightskip=.3cm plus1fil]{section in head/foot} + \usebeamerfont{section in head/foot}% + %\ifbeamer@tree@showhooks + \setbox\beamer@tempbox=\hbox{\insertsectionhead}% + \ifdim\wd\beamer@tempbox>1pt% + \hskip2pt\raise1.9pt\hbox{\vrule width0.4pt height1.875ex\vrule width 5pt height0.4pt}% + \hskip1pt% + \fi + \insertsectionhead + \end{beamercolorbox} + +% +% Place subsection +% +\begin{beamercolorbox}[wd=\paperwidth,ht=2.5ex,dp=1.125ex,% + leftskip=.3cm,rightskip=.3cm plus1fil]{subsection in head/foot} + \usebeamerfont{subsection in head/foot}% + %\ifbeamer@tree@showhooks + \setbox\beamer@tempbox=\hbox{\insertsubsectionhead}% + \ifdim\wd\beamer@tempbox>1pt% + \hskip9.4pt\raise1.9pt\hbox{\vrule width0.4pt height1.875ex\vrule width 5pt height0.4pt}% + \hskip1pt% + \fi + \insertsubsectionhead +\end{beamercolorbox} + +% +% Place final separation box +% + \begin{beamercolorbox}[wd=\paperwidth,colsep=1.5pt + ]{lower separation line head} + \end{beamercolorbox} + + % + % Another matching rule which helps to frame the content + % + \hspace{.025\textwidth}\rule{.95\textwidth}{.5pt} +} +\fi % TACCheadertree + + +% The following command suppresses all navigation symbols. This is +% necessary in the TACC theme, since it overlaps where we want the +% logo to be. +\setbeamertemplate{navigation symbols}{} + + +\mode + diff --git a/my_docs/21/lmod_zoom_mtg_2021_10_05/themes/beamerouterthemeTACC16.sty b/my_docs/21/lmod_zoom_mtg_2021_10_05/themes/beamerouterthemeTACC16.sty new file mode 100644 index 000000000..c5b178018 --- /dev/null +++ b/my_docs/21/lmod_zoom_mtg_2021_10_05/themes/beamerouterthemeTACC16.sty @@ -0,0 +1,247 @@ +% Copyright 2003 by Till Tantau +% +% This program can be redistributed and/or modified under the terms +% of the GNU Public License, version 2. + +\mode + +\usepackage{xcolor} +\usepackage{graphicx} +\usepackage{etoolbox} + +\pgfdeclareimage[width=\paperwidth]{titlebackground}{master.jpg} +\pgfdeclareimage[width=\paperwidth]{background}{secondary.jpg} + +\setbeamertemplate{background canvas}{% + \ifnum\c@framenumber=1% + \begin{picture}(0,0) + \put(0,-273){% + \pgfuseimage{titlebackground} + } + %\put(0,-130.7){% + + %\begin{minipage}[b][45mm][t]{\textwidth}%{226mm} + %\begin{center} + % \usebeamerfont{title}{\MakeTextUppercase{\inserttitle}\par} + %\vspace{2ex} + %\usebeamerfont{author}{\insertauthor} + % \end{center} + %\end{minipage} + %} + \end{picture} + % On title page + \else% + % Other frames background + \begin{picture}(0,0) + \put(0,-273){% + \pgfuseimage{background} + } + \end{picture} + \fi% +} + + +\setbeamertemplate{title page}{ +\vspace{40pt} +\begin{center} +\usebeamerfont{title} {\huge \inserttitle}\par +\vspace{4ex} +\usebeamerfont{author} { + \insertauthor +}\par +\vspace{2ex} +\usebeamerfont{institute}{ + \insertinstitute +} \par +\vspace{2ex} +\usebeamerfont{date}{ + \insertdate +} +\end{center} +} + + +\setbeamertemplate{frametitle}[default][center] +\setbeamertemplate{frametitle}{ + \makeatletter + \regexpatchcmd{\insertframetitle} + {(\c{usebeamertemplate}.*)\c{fi}} + {\c{NoCaseChange}\cB\{\1\cE\}\c{fi}} + {}{}% + \makeatother + \vskip1ex + \insertframetitle +} + +% Here we define what appears at the bottom of each slide: the "footline". +\setbeamertemplate{footline}{% + \leavevmode% + + % Horizontal line dividing the rest of the slide from the footer? + % hrule goes all the way across... + % \hrule height.3pt% + % With \rule, you can specify the thickness + % \rule[raise-height]{width}{thickness} + % \hspace{.025\textwidth}\rule{.95\textwidth}{.5pt} + + \hbox{% + \ifnum \thepage>1 + % On the left half of the footer, insert the TACC of + \begin{minipage}{.2\textwidth}% + \hskip .05\textwidth%Give horizontal space else this will set on the left edge of the slide! + % \includegraphics[width=.8\textwidth]{figures/TACC_logo.png} + \end{minipage} + + + \begin{minipage}{\textwidth}% + % \vskip .023\textheight% + \raggedleft% + \setlength{\rightskip}{\textwidth} + \hbox{% + \begin{beamercolorbox}[wd=0.7\textwidth,ht=2.25ex,dp=1ex,left]{author in head/foot}% + \insertshorttitle{} \hskip .01\textwidth | \hskip .01\textwidth \insertdate{} \hskip .01\textwidth | \hskip .01\textwidth \insertframenumber{} + \end{beamercolorbox}% + } + + % + % If we are not on the first page, insert a page number + % For some reason, insertframenumber is buggy when you have fragile + % slides with verbatim environments in them... it tends to skip numbers + % for some reason! On the other hand, the pagenumber is incremented + % for *every* slide, including transition slides... + % \hfill\includegraphics[width=\textwidth]{figures/tacc_ut.png} + \end{minipage}% + \begin{minipage}{.05\textwidth}% + \end{minipage}% + \fi %\thepage>1 + }% + \vskip .023\textheight% + +} + + + + +\ifTACCheadernav + +\usesectionheadtemplate +{\hfill\insertsectionhead} +{\hfill\color{fg!50!bg}\insertsectionhead} + +% Head +\ifbeamer@compress + +% Here we define how the top of the frame looks, the "headline". +\setbeamertemplate{headline} +{% + \ifnum \thepage>1 + \leavevmode% + \begin{beamercolorbox}[wd=.5\paperwidth,ht=2.5ex,dp=1.125ex]{% + section in head/foot}% + \insertsectionnavigationhorizontal{.5\paperwidth}{\hskip0pt plus1filll}{}% + \end{beamercolorbox}% + \begin{beamercolorbox}[wd=.5\paperwidth,ht=2.5ex,dp=1.125ex]{% + subsection in head/foot}% + \insertsubsectionnavigationhorizontal{% + .5\paperwidth}{}{\hskip0pt plus1filll}% + \end{beamercolorbox}% + \fi %\thepage>1 +} + +\else% Not compressed + +\setbeamertemplate{headline} +{% + \ifnum \thepage>1 + \leavevmode% + \@tempdimb=2.4375ex% + \ifnum\beamer@subsectionmax<\beamer@sectionmax% + \multiply\@tempdimb by\beamer@sectionmax% + \else% + \multiply\@tempdimb by\beamer@subsectionmax% + \fi% + \ifdim\@tempdimb>0pt% + \advance\@tempdimb by 1.125ex% + \begin{beamercolorbox}[wd=.5\paperwidth,ht=\@tempdimb]{% + section in head/foot}% + \vbox to\@tempdimb{\vfil\insertsectionnavigation{.5\paperwidth}\vfil}% + \end{beamercolorbox}% + \begin{beamercolorbox}[wd=.5\paperwidth,ht=\@tempdimb]{% + subsection in head/foot}% + \vbox to\@tempdimb{\vfil\insertsubsectionnavigation{.5\paperwidth}\vfil}% + \end{beamercolorbox}% + \fi% + \fi % \thepage>1 +} + +\fi % end if compressed +\fi % TACCheadernav + + +\ifTACCheadertree + +\setbeamertemplate{headline} +{ + \begin{beamercolorbox}[wd=\paperwidth,colsep=1.5pt]{upper separation line head} + \end{beamercolorbox} + % + % Place short title + % + \begin{beamercolorbox}[wd=\paperwidth,ht=2.5ex,dp=1.125ex,% + leftskip=.3cm,rightskip=.3cm plus1fil]{title in head/foot} + \usebeamerfont{title in head/foot}\insertshorttitle + \end{beamercolorbox} + + % + % Place section + % + \begin{beamercolorbox}[wd=\paperwidth,ht=2.5ex,dp=1.125ex,% + leftskip=.3cm,rightskip=.3cm plus1fil]{section in head/foot} + \usebeamerfont{section in head/foot}% + %\ifbeamer@tree@showhooks + \setbox\beamer@tempbox=\hbox{\insertsectionhead}% + \ifdim\wd\beamer@tempbox>1pt% + \hskip2pt\raise1.9pt\hbox{\vrule width0.4pt height1.875ex\vrule width 5pt height0.4pt}% + \hskip1pt% + \fi + \insertsectionhead + \end{beamercolorbox} + +% +% Place subsection +% +\begin{beamercolorbox}[wd=\paperwidth,ht=2.5ex,dp=1.125ex,% + leftskip=.3cm,rightskip=.3cm plus1fil]{subsection in head/foot} + \usebeamerfont{subsection in head/foot}% + %\ifbeamer@tree@showhooks + \setbox\beamer@tempbox=\hbox{\insertsubsectionhead}% + \ifdim\wd\beamer@tempbox>1pt% + \hskip9.4pt\raise1.9pt\hbox{\vrule width0.4pt height1.875ex\vrule width 5pt height0.4pt}% + \hskip1pt% + \fi + \insertsubsectionhead +\end{beamercolorbox} + +% +% Place final separation box +% + \begin{beamercolorbox}[wd=\paperwidth,colsep=1.5pt + ]{lower separation line head} + \end{beamercolorbox} + + % + % Another matching rule which helps to frame the content + % + \hspace{.025\textwidth}\rule{.95\textwidth}{.5pt} +} +\fi % TACCheadertree + + +% The following command suppresses all navigation symbols. This is +% necessary in the TACC theme, since it overlaps where we want the +% logo to be. +\setbeamertemplate{navigation symbols}{} + + +\mode + diff --git a/my_docs/21/lmod_zoom_mtg_2021_10_05/themes/beamerthemeTACC16-169.sty b/my_docs/21/lmod_zoom_mtg_2021_10_05/themes/beamerthemeTACC16-169.sty new file mode 100644 index 000000000..22caf9a05 --- /dev/null +++ b/my_docs/21/lmod_zoom_mtg_2021_10_05/themes/beamerthemeTACC16-169.sty @@ -0,0 +1,38 @@ +%% TACC theme for beamer + +\newif\ifTACCheadernav +\DeclareOption{headernav}{\global\TACCheadernavtrue} + +\newif\ifTACCheadertree +\DeclareOption{headertree}{\global\TACCheadertreetrue} +\ProcessOptions + +\mode + +\makeatletter + \def\beamer@calltheme#1#2#3{% + \def\beamer@themelist{#2} + \@for\beamer@themename:=\beamer@themelist\do + {\usepackage[{#1}]{\beamer@themelocation/#3\beamer@themename}}} + + \def\usefolder#1{ + \def\beamer@themelocation{#1} + } + \def\beamer@themelocation{} + +\usefolder{themes} +\usefonttheme{TACC16} +\useinnertheme{TACC16} +\useoutertheme{TACC16-169} +\usecolortheme{TACC16} + +\mode + + +\newcommand{\event}[1]{% + \makeatletter% + \def\TACC@eventname{#1}% + \makeatother} + +\newcommand{\sectionframe}[1]{\section{#1}\frame{\Large\textbf{#1}}} +\newcommand{\subsectionframe}[1]{\subsection{#1}\frame{\large\textbf{#1}}} diff --git a/my_docs/21/lmod_zoom_mtg_2021_10_05/themes/beamerthemeTACC16.sty b/my_docs/21/lmod_zoom_mtg_2021_10_05/themes/beamerthemeTACC16.sty new file mode 100644 index 000000000..750bdd388 --- /dev/null +++ b/my_docs/21/lmod_zoom_mtg_2021_10_05/themes/beamerthemeTACC16.sty @@ -0,0 +1,26 @@ +%% TACC theme for beamer + +\newif\ifTACCheadernav +\DeclareOption{headernav}{\global\TACCheadernavtrue} + +\newif\ifTACCheadertree +\DeclareOption{headertree}{\global\TACCheadertreetrue} +\ProcessOptions + +\mode + +\usefonttheme{TACC16} +\useinnertheme{TACC16} +\useoutertheme{TACC16} +\usecolortheme{TACC16} + +\mode + + +\newcommand{\event}[1]{% + \makeatletter% + \def\TACC@eventname{#1}% + \makeatother} + +\newcommand{\sectionframe}[1]{\section{#1}\frame{\Large\textbf{#1}}} +\newcommand{\subsectionframe}[1]{\subsection{#1}\frame{\large\textbf{#1}}} diff --git a/my_docs/21/lmod_zoom_mtg_2021_10_05/themes/example.pdf b/my_docs/21/lmod_zoom_mtg_2021_10_05/themes/example.pdf new file mode 100644 index 000000000..add373eee Binary files /dev/null and b/my_docs/21/lmod_zoom_mtg_2021_10_05/themes/example.pdf differ diff --git a/my_docs/21/lmod_zoom_mtg_2021_10_05/themes/license.tex b/my_docs/21/lmod_zoom_mtg_2021_10_05/themes/license.tex new file mode 100644 index 000000000..74ff86759 --- /dev/null +++ b/my_docs/21/lmod_zoom_mtg_2021_10_05/themes/license.tex @@ -0,0 +1,14 @@ + +\begin{frame}{License} +\footnotesize +\textcopyright The University of Texas at Austin, \the\year\\ +\vspace{0.5 cm} +This work is licensed under the Creative Commons Attribution Non-Commercial 3.0 Unported License. To view a copy of this license, +visit http://creativecommons.org/licenses/by-nc/3.0/\\ +\vspace{0.5 cm} +When attributing this work, please use the following text: +"Designing and Administering Large-scale Systems", Texas Advanced Computing Center, \the\year. Available under a Creative Commons Attribution Non-Commercial 3.0 Unported License. +\newline +\newline +\includegraphics[width=1cm]{./figures/cc.png} +\end{frame} \ No newline at end of file diff --git a/my_docs/21/lmod_zoom_mtg_2021_11_09/beamercolorthemeTACC.sty b/my_docs/21/lmod_zoom_mtg_2021_11_09/beamercolorthemeTACC.sty deleted file mode 120000 index 8d27e673a..000000000 --- a/my_docs/21/lmod_zoom_mtg_2021_11_09/beamercolorthemeTACC.sty +++ /dev/null @@ -1 +0,0 @@ -../../beamer/beamercolorthemeTACC.sty \ No newline at end of file diff --git a/my_docs/21/lmod_zoom_mtg_2021_11_09/beamercolorthemeTACC.sty b/my_docs/21/lmod_zoom_mtg_2021_11_09/beamercolorthemeTACC.sty new file mode 100755 index 000000000..78beb6a4a --- /dev/null +++ b/my_docs/21/lmod_zoom_mtg_2021_11_09/beamercolorthemeTACC.sty @@ -0,0 +1,323 @@ +% Copyright 2003 by Till Tantau . +% +% This program can be redistributed and/or modified under the terms +% of the GNU Public License, version 2. + +\mode + +% I downloaded a gimp color palette from +% http://maururu.net/2007/latex-beamer-color-palette/ +% Which provides rgb values (I think) for several of the +% default beamer themes. You can open this in gimp by +% opening the Palettes dialog, right-clicking anywhere and choosing +% 'Import Palette'. A color in there called 'default added blue' +% appeared to be approximately what I wanted. It had the triple +% of values 141 145 208. If you double-click on this in the +% palette editor it gives you a bunch of information. You can't +% use these values directly to set a color...it just comes out white. +% I think definecolor is expecting something normalized by 255. Yes! + + +% bluish colors +\definecolor{defaddedblue}{rgb}{0.5529,.5686,.8157} % 141,145,208 +\definecolor{defblockheader}{rgb}{.1921,.2235,.6824} % 49,57,174 +\definecolor{flyaddedblue}{rgb}{.5961,.6118,.8431} % 152,156,215 + +% bluish-greys +\definecolor{beetleaddedblue1}{rgb}{.3333,.4039,.6196} % 85 103 158, dark +\definecolor{beetleaddedblue2}{rgb}{.4510,.5098,.7020} % 115 130 179, medium +\definecolor{beetleaddedblue3}{rgb}{.7059,.7255,.7961} % 180 185 203, light (greyest) + +% very light blue-greys +\definecolor{deflightouter1}{rgb}{.7608,.7647,.9020} % 194 195 230, dark +\definecolor{deflightouter2}{rgb}{.8 ,.8039,.9176} % 204 205 234, medium +\definecolor{deflightouter3}{rgb}{.8392,.8431,.9373} % 214 215 239, light + +% reddish colors +\definecolor{flyalertblockheader}{rgb}{.7373,.1294,.1333} % 188 33 34 +\definecolor{flyaddedred}{rgb}{.8667,.5647,.5647}% 221 144 144 +\definecolor{beaverouterframe}{rgb}{.5529,.0980,.0980}% 141 25 25 + +% greens (green is used for 'examples' in beamer) +\definecolor{defexblock}{rgb}{.9098,.9333,.9020} % 232 238 230, light +\definecolor{defaddedgreen}{rgb}{.5412,.6510,.4706} % 138 166 120, medium +\definecolor{defexblockheader}{rgb}{.1686,.3647,.0392} % 43 93 10, dark + +\definecolor{lightexblock}{rgb}{.9137,.9451,.9020} % 233 241 230, light +\definecolor{lightexblockheader}{rgb}{.8235,.8980,.8} % 210 229 204, medium +\definecolor{lightexblockheadertext}{rgb}{.2431,.5098,.0745} % 62 130 19, dark + + +%%% +% Set the normal text color +%%% +\setbeamercolor{normal text}{fg=black,bg=white} + +%%% +% Set the alerted text color +%%% +% \setbeamercolor{alerted text}{fg=red} +\setbeamercolor{alerted text}{fg=red!50!black} % half black/half red for green bg +% \setbeamercolor{alerted text}{fg=beaverouterframe} +% \setbeamercolor{alerted text}{fg=defblockheader} % doesn't stand out enough + + +% Set the 'example' text +\setbeamercolor{example text}{fg=green!50!black} + +\setbeamercolor{structure}{fg=black} + +\setbeamercolor{background canvas}{parent=normal text} +\setbeamercolor{background}{parent=background canvas} + +\setbeamercolor{palette primary}{use=structure,fg=structure.fg} +\setbeamercolor{palette secondary}{use=structure,fg=structure.fg!75!black} +\setbeamercolor{palette tertiary}{use=structure,fg=structure.fg!50!black} +\setbeamercolor{palette quaternary}{fg=black} + +\setbeamercolor{palette sidebar primary}{use=normal text,fg=normal text.fg} +\setbeamercolor{palette sidebar secondary}{use=structure,fg=structure.fg} +\setbeamercolor{palette sidebar tertiary}{use=normal text,fg=normal text.fg} +\setbeamercolor{palette sidebar quaternary}{use=structure,fg=structure.fg} + +\setbeamercolor{math text}{} +\setbeamercolor{math text inlined}{parent=math text} +\setbeamercolor{math text displayed}{parent=math text} + +\setbeamercolor{normal text in math text}{} + +\setbeamercolor{local structure}{parent=structure} + +\setbeamercolor{titlelike}{parent=structure} + +\setbeamercolor{title}{parent=titlelike} +\setbeamercolor{title in head/foot}{parent=palette quaternary} +\setbeamercolor{title in sidebar}{parent=palette sidebar quaternary} + +\setbeamercolor{subtitle}{parent=title} + +\setbeamercolor{author}{} +\setbeamercolor{author in head/foot}{parent=palette primary} +\setbeamercolor{author in sidebar}{use=palette sidebar tertiary,fg=palette sidebar tertiary.fg} + +\setbeamercolor{institute}{} +\setbeamercolor{institute in head/foot}{parent=palette tertiary} +\setbeamercolor{institute in sidebar}{use=palette sidebar tertiary,fg=palette sidebar tertiary.fg} + +\setbeamercolor{date}{} +\setbeamercolor{date in head/foot}{parent=palette secondary} +\setbeamercolor{date in sidebar}{use=palette sidebar tertiary,fg=palette sidebar tertiary.fg} + +\setbeamercolor{titlegraphic}{} + +\setbeamercolor{part name}{} +\setbeamercolor{part title}{parent=titlelike} + +\setbeamercolor{section in toc}{parent=structure} +\setbeamercolor{section in toc shaded}{parent=section in toc} +\setbeamercolor{section in head/foot}{parent=palette tertiary} +\setbeamercolor{section in sidebar}{parent=palette sidebar secondary} +\setbeamercolor{section in sidebar shaded}{use=section in sidebar,fg=section in sidebar.fg!40!bg} +\setbeamercolor{section number projected}{parent=item projected} + +\setbeamercolor{subsection in toc}{} +\setbeamercolor{subsection in toc shaded}{parent=subsection in toc} +\setbeamercolor{subsection in head/foot}{parent=palette secondary} +\setbeamercolor{subsection in sidebar}{parent=palette sidebar primary} +\setbeamercolor{subsection in sidebar shaded}{use=subsection in sidebar,fg=subsection in sidebar.fg!40!bg} +\setbeamercolor{subsection number projected}{parent={subitem projected}} + +\setbeamercolor{subsubsection in toc}{parent=subsection in toc} +\setbeamercolor{subsubsection in toc shaded}{parent=subsubsection in toc} +\setbeamercolor{subsubsection in head/foot}{parent=subsection in head/foot} +\setbeamercolor{subsubsection in sidebar}{parent=subsection in sidebar} +\setbeamercolor{subsubsection in sidebar shaded}{parent=subsection in sidebar shaded} +\setbeamercolor{subsubsection number projected}{parent=subsubitem projected} + +\setbeamercolor{headline}{} +\setbeamercolor{footline}{} + +\setbeamercolor{sidebar}{} +\setbeamercolor{sidebar left}{parent=sidebar} +\setbeamercolor{sidebar right}{parent=sidebar} + +\setbeamercolor{logo}{parent=palette secondary} + +\setbeamercolor{frametitle}{parent=titlelike} +\setbeamercolor{framesubtitle}{parent=frametitle} + +\setbeamercolor{frametitle right}{parent=frametitle} + +\setbeamercolor{caption}{} +\setbeamercolor{caption name}{parent=structure} + +\setbeamercolor{button}{use=local structure,bg=local structure.fg!50!bg,fg=white} +\setbeamercolor{button border}{use=button,fg=button.bg} +\setbeamercolor{navigation symbols}{use=structure,fg=structure.fg!40!bg} +\setbeamercolor{navigation symbols dimmed}{use=structure,fg=structure.fg!20!bg} +\setbeamercolor{mini frame}{parent=section in head/foot} + +% Color expressions are defined in the xcolor package +% +% Ex: Mixture of 40% green, 60% yellow: green!40!yellow +% +% The complement of any color can be obtained by prepending +% a minus sign: -green!40!yellow +% +% One can also combine up to three colors (in differing proportions) +% using the rgb command. For example, the following command combines +% 3 parts of the first color, with 2 parts of the second, and one part +% "red" +% +%\color{rgb:-green!40!yellow,3;green!40!yellow,2;red,1} +% Unfortunately, I don't think this works as an argument to setbeamercolor... +% "Orange" bg=green!30!yellow!30!red +% close to burnt orange: red!75!green +% lightgray is a color, but gray!25!white looks better +% +% A nice pair of greens +% (dark, a little too dark to be under black text...) -red!75!green!50!blue!25 +% (light) -red!75!green!50!blue!25!gray +% +% Some colors are only available via options to the xcolor package, eg. +% x11names,DarkOliveGreen4 +% svgnames, Chartreuse +% dvipsnames, ForestGreen +% +% but beamer does not seem to have any of these. +% +% The base color names which are always available are: +% black +% blue +% brown +% cyan +% darkgray +% gray +% green +% lightgray +% lime +% magenta +% olive +% orange +% pink +% purple +% red +% teal +% violet +% white +% yellow + +% From the beamer user guide, pg. 167 +% Inner color themes only specify the colors of elements used in inner +% themes. Most noticably, they specify the colors used for blocks. +% ... + +% Example color definition +% beamercolorthemedefault.sty:\definecolor{beamer@blendedblue}{rgb}{0.2,0.2,0.7} +% beamercolorthemedefault.sty:\setbeamercolor{structure}{fg=beamer@blendedblue} + +% The greens +% \setbeamercolor{block body}{bg=-red!75!green!50!blue!25!gray} +% \setbeamercolor{block title}{parent=structure,bg=-red!75!green!50!blue!25,fg=-red!75!green!50!blue!25!gray} + +%%% +% Set the block body and title background/foreground colors +%%% +% \setbeamercolor{block body}{bg=flyaddedblue} +% \setbeamercolor{block title}{bg=defblockheader,fg=flyaddedblue} + +% Purplish blues, too dark overall +% \setbeamercolor{block body}{bg=beetleaddedblue3} +% \setbeamercolor{block title}{bg=beetleaddedblue2,fg=beetleaddedblue3} + +% Very light blue greys +% 1. Not enough contrast +% \setbeamercolor{block body}{bg=deflightouter3} +% \setbeamercolor{block title}{bg=deflightouter2,fg=deflightouter3} + +% 2. Not enough contrast +% \setbeamercolor{block body}{bg=deflightouter3} +% \setbeamercolor{block title}{bg=deflightouter1,fg=deflightouter3} + +% 3. Combination of deflightouter and fly. The block bg is +% lighter than the all-beetle color scheme I previously thought was best. +% Currently I like this one the best +\setbeamercolor{block body}{bg=deflightouter3} +\setbeamercolor{block title}{bg=beetleaddedblue2,fg=deflightouter3} + +% 4. Greens. Looks like a highlighter. I don't really trust greens +% on projectors... It's almost too bright/hurts your eyes. +% \setbeamercolor{block body}{bg=defexblock} +% \setbeamercolor{block title}{bg=defaddedgreen,fg=defexblock} + +% This looks pretty good ... it's similar to the greens we had before +% but should be lighter. The blocks are just a little too "mint" colored +% though... +% \setbeamercolor{block body}{bg=defexblock} +% \setbeamercolor{block title}{bg=defexblockheader,fg=defexblock} + +% Pea Soup! +%\setbeamercolor{block body}{bg=defaddedgreen} +%\setbeamercolor{block title}{bg=defexblockheader,fg=defaddedgreen} + + +% Changing these didn't seem to do anything...I had to change the +% 'alerted text' color instead +\setbeamercolor{block body alerted}{} +\setbeamercolor{block body example}{} +\setbeamercolor{block title alerted}{parent=alerted text} +\setbeamercolor{block title example}{parent=example text} + +\setbeamercolor{item}{parent=local structure} +\setbeamercolor{subitem}{parent=item} +\setbeamercolor{subsubitem}{parent=subitem} + +\setbeamercolor{item projected}{parent=item,use=item,fg=white,bg=item.fg} +\setbeamercolor{subitem projected}{parent=item projected} +\setbeamercolor{subsubitem projected}{parent=subitem projected} + +\setbeamercolor{enumerate item}{parent=item} +\setbeamercolor{enumerate subitem}{parent=subitem} +\setbeamercolor{enumerate subsubitem}{parent=subsubitem} + +\setbeamercolor{itemize item}{parent=item} +\setbeamercolor{itemize subitem}{parent=subitem} +\setbeamercolor{itemize subsubitem}{parent=subsubitem} + +\setbeamercolor{itemize/enumerate body}{} +\setbeamercolor{itemize/enumerate subbody}{} +\setbeamercolor{itemize/enumerate subsubbody}{} + +\setbeamercolor{description item}{parent=item} + +\setbeamercolor{bibliography item}{parent=item} + +\setbeamercolor{bibliography entry author}{use=structure,fg=structure.fg} +\setbeamercolor{bibliography entry title}{use=normal text,fg=normal text.fg} +\setbeamercolor{bibliography entry location}{use=structure,fg=structure.fg!65!bg} +\setbeamercolor{bibliography entry note}{use=structure,fg=structure.fg!65!bg} + +\setbeamercolor{separation line}{} + +\setbeamercolor{upper separation line head}{parent=separation line} +\setbeamercolor{middle separation line head}{parent=separation line} +\setbeamercolor{lower separation line head}{parent=separation line} + +\setbeamercolor{upper separation line foot}{parent=separation line} +\setbeamercolor{middle separation line foot}{parent=separation line} +\setbeamercolor{lower separation line foot}{parent=separation line} + +\setbeamercolor{abstract}{} +\setbeamercolor{abstract title}{parent=structure} + +\setbeamercolor{verse}{} + +\setbeamercolor{quotation}{} +\setbeamercolor{quote}{parent=quotation} + +\setbeamercolor{page number in head/foot}{fg=fg!50!bg} + +\setbeamercolor{qed symbol}{parent=structure} + +\mode + diff --git a/my_docs/21/lmod_zoom_mtg_2021_11_09/beamercolorthemeTACC16.sty b/my_docs/21/lmod_zoom_mtg_2021_11_09/beamercolorthemeTACC16.sty deleted file mode 120000 index 58415801b..000000000 --- a/my_docs/21/lmod_zoom_mtg_2021_11_09/beamercolorthemeTACC16.sty +++ /dev/null @@ -1 +0,0 @@ -../../beamer/beamercolorthemeTACC16.sty \ No newline at end of file diff --git a/my_docs/21/lmod_zoom_mtg_2021_11_09/beamercolorthemeTACC16.sty b/my_docs/21/lmod_zoom_mtg_2021_11_09/beamercolorthemeTACC16.sty new file mode 100755 index 000000000..779dde91f --- /dev/null +++ b/my_docs/21/lmod_zoom_mtg_2021_11_09/beamercolorthemeTACC16.sty @@ -0,0 +1,192 @@ +% Copyright 2003 by Till Tantau . +% +% This program can be redistributed and/or modified under the terms +% of the GNU Public License, version 2. + +\mode + +\usepackage{textcase,regexpatch} + +\setbeamertemplate{blocks}[rounded][shadow=true] + + +\definecolor{TACCred}{RGB}{180,13,29} +\definecolor{TACCorange}{RGB}{210,104,43} +\definecolor{TACCblue}{RGB}{108, 134, 191} +\definecolor{TACCgreen}{RGB}{23,106,70} + +% I downloaded a gimp color palette from +% http://maururu.net/2007/latex-beamer-color-palette/ +% Which provides rgb values (I think) for several of the +% default beamer themes. You can open this in gimp by +% opening the Palettes dialog, right-clicking anywhere and choosing +% 'Import Palette'. A color in there called 'default added blue' +% appeared to be approximately what I wanted. It had the triple +% of values 141 145 208. If you double-click on this in the +% palette editor it gives you a bunch of information. You can't +% use these values directly to set a color...it just comes out white. +% I think definecolor is expecting something normalized by 255. Yes! + + +%%% +% Set the normal text color +%%% +\setbeamercolor{normal text}{fg=black} %,bg=white} +\setbeamercolor{example text}{fg=TACCgreen} +\setbeamercolor{alerted text}{fg=TACCorange} + + +\setbeamercolor{structure}{fg=black} +%\setbeamercolor{structure}{fg=black} + +\setbeamercolor{background canvas}{parent=normal text} +\setbeamercolor{background}{parent=background canvas} + +\setbeamercolor{palette primary}{use=structure,fg=structure.fg} +\setbeamercolor{palette secondary}{use=structure,fg=structure.fg!75!black} +\setbeamercolor{palette tertiary}{use=structure,fg=structure.fg!50!black} +\setbeamercolor{palette quaternary}{fg=black} + +\setbeamercolor{palette sidebar primary}{use=normal text,fg=normal text.fg} +\setbeamercolor{palette sidebar secondary}{use=structure,fg=structure.fg} +\setbeamercolor{palette sidebar tertiary}{use=normal text,fg=normal text.fg} +\setbeamercolor{palette sidebar quaternary}{use=structure,fg=structure.fg} + +\setbeamercolor{math text}{} +\setbeamercolor{math text inlined}{parent=math text} +\setbeamercolor{math text displayed}{parent=math text} + +\setbeamercolor{normal text in math text}{} + +\setbeamercolor{local structure}{parent=structure} + +\setbeamercolor{titlelike}{parent=structure} + +\setbeamercolor{title}{parent=titlelike} +\setbeamercolor{title in head/foot}{parent=palette quaternary} +\setbeamercolor{title in sidebar}{parent=palette sidebar quaternary} + +\setbeamercolor{subtitle}{parent=title} + +\setbeamercolor{author}{} +\setbeamercolor{author in head/foot}{parent=palette primary} +\setbeamercolor{author in sidebar}{use=palette sidebar tertiary,fg=palette sidebar tertiary.fg} + +\setbeamercolor{institute}{} +\setbeamercolor{institute in head/foot}{parent=palette tertiary} +\setbeamercolor{institute in sidebar}{use=palette sidebar tertiary,fg=palette sidebar tertiary.fg} + +\setbeamercolor{date}{} +\setbeamercolor{date in head/foot}{parent=palette secondary} +\setbeamercolor{date in sidebar}{use=palette sidebar tertiary,fg=palette sidebar tertiary.fg} + +\setbeamercolor{titlegraphic}{} + +\setbeamercolor{part name}{} +\setbeamercolor{part title}{parent=titlelike} + +\setbeamercolor{section in toc}{parent=structure} +\setbeamercolor{section in toc shaded}{parent=section in toc} +\setbeamercolor{section in head/foot}{parent=palette tertiary} +\setbeamercolor{section in sidebar}{parent=palette sidebar secondary} +\setbeamercolor{section in sidebar shaded}{use=section in sidebar,fg=section in sidebar.fg!40!bg} +\setbeamercolor{section number projected}{parent=item projected} + +\setbeamercolor{subsection in toc}{} +\setbeamercolor{subsection in toc shaded}{parent=subsection in toc} +\setbeamercolor{subsection in head/foot}{parent=palette secondary} +\setbeamercolor{subsection in sidebar}{parent=palette sidebar primary} +\setbeamercolor{subsection in sidebar shaded}{use=subsection in sidebar,fg=subsection in sidebar.fg!40!bg} +\setbeamercolor{subsection number projected}{parent={subitem projected}} + +\setbeamercolor{subsubsection in toc}{parent=subsection in toc} +\setbeamercolor{subsubsection in toc shaded}{parent=subsubsection in toc} +\setbeamercolor{subsubsection in head/foot}{parent=subsection in head/foot} +\setbeamercolor{subsubsection in sidebar}{parent=subsection in sidebar} +\setbeamercolor{subsubsection in sidebar shaded}{parent=subsection in sidebar shaded} +\setbeamercolor{subsubsection number projected}{parent=subsubitem projected} + +\setbeamercolor{headline}{} +\setbeamercolor{footline}{} + +\setbeamercolor{sidebar}{} +\setbeamercolor{sidebar left}{parent=sidebar} +\setbeamercolor{sidebar right}{parent=sidebar} + +\setbeamercolor{logo}{parent=palette secondary} + +\setbeamercolor{frametitle}{parent=titlelike} +\setbeamercolor{framesubtitle}{parent=frametitle} + +\setbeamercolor{frametitle right}{parent=frametitle} + +\setbeamercolor{caption}{} +\setbeamercolor{caption name}{parent=structure} + +\setbeamercolor{button}{use=local structure,bg=local structure.fg!50!bg,fg=white} +\setbeamercolor{button border}{use=button,fg=button.bg} +\setbeamercolor{navigation symbols}{use=structure,fg=structure.fg!40!bg} +\setbeamercolor{navigation symbols dimmed}{use=structure,fg=structure.fg!20!bg} +\setbeamercolor{mini frame}{parent=section in head/foot} + +\setbeamercolor{block body}{fg=black} +\setbeamercolor{block body alerted}{fg=black} +\setbeamercolor{block body example}{fg=black} + +\setbeamercolor{block title}{bg=TACCblue,fg=white} +\setbeamercolor{block title alerted}{bg=TACCred,fg=white} +\setbeamercolor{block title example}{bg=TACCgreen,fg=white} + +\setbeamercolor{item}{parent=local structure} +\setbeamercolor{subitem}{parent=item} +\setbeamercolor{subsubitem}{parent=subitem} + +\setbeamercolor{item projected}{parent=item,use=item,fg=black,bg=item.fg} +\setbeamercolor{subitem projected}{parent=item projected} +\setbeamercolor{subsubitem projected}{parent=subitem projected} + +\setbeamercolor{enumerate item}{parent=item} +\setbeamercolor{enumerate subitem}{parent=subitem} +\setbeamercolor{enumerate subsubitem}{parent=subsubitem} + +\setbeamercolor{itemize item}{parent=item} +\setbeamercolor{itemize subitem}{parent=subitem} +\setbeamercolor{itemize subsubitem}{parent=subsubitem} + +\setbeamercolor{itemize/enumerate body}{} +\setbeamercolor{itemize/enumerate subbody}{} +\setbeamercolor{itemize/enumerate subsubbody}{} + +\setbeamercolor{description item}{parent=item} + +\setbeamercolor{bibliography item}{parent=item} + +\setbeamercolor{bibliography entry author}{use=structure,fg=structure.fg} +\setbeamercolor{bibliography entry title}{use=normal text,fg=normal text.fg} +\setbeamercolor{bibliography entry location}{use=structure,fg=structure.fg!65!bg} +\setbeamercolor{bibliography entry note}{use=structure,fg=structure.fg!65!bg} + +\setbeamercolor{separation line}{} + +\setbeamercolor{upper separation line head}{parent=separation line} +\setbeamercolor{middle separation line head}{parent=separation line} +\setbeamercolor{lower separation line head}{parent=separation line} + +\setbeamercolor{upper separation line foot}{parent=separation line} +\setbeamercolor{middle separation line foot}{parent=separation line} +\setbeamercolor{lower separation line foot}{parent=separation line} + +\setbeamercolor{abstract}{} +\setbeamercolor{abstract title}{parent=structure} + +\setbeamercolor{verse}{} + +\setbeamercolor{quotation}{} +\setbeamercolor{quote}{parent=quotation} + +\setbeamercolor{page number in head/foot}{fg=fg!50!bg} + +\setbeamercolor{qed symbol}{parent=structure} + +\mode + diff --git a/my_docs/21/lmod_zoom_mtg_2021_11_09/beamerfontthemeTACC.sty b/my_docs/21/lmod_zoom_mtg_2021_11_09/beamerfontthemeTACC.sty deleted file mode 120000 index 78e971fb8..000000000 --- a/my_docs/21/lmod_zoom_mtg_2021_11_09/beamerfontthemeTACC.sty +++ /dev/null @@ -1 +0,0 @@ -../../beamer/beamerfontthemeTACC.sty \ No newline at end of file diff --git a/my_docs/21/lmod_zoom_mtg_2021_11_09/beamerfontthemeTACC.sty b/my_docs/21/lmod_zoom_mtg_2021_11_09/beamerfontthemeTACC.sty new file mode 100755 index 000000000..ef9ce1e5e --- /dev/null +++ b/my_docs/21/lmod_zoom_mtg_2021_11_09/beamerfontthemeTACC.sty @@ -0,0 +1,12 @@ +% Copyright 2003 by Till Tantau +% +% This program can be redistributed and/or modified under the terms +% of the GNU Public License, version 2. + +\mode + +\setbeamerfont{frametitle}{parent=structure,size=\LARGE,series=\bfseries} +\setbeamerfont{framesubtitle}{parent=frametitle,size=\small} + +\mode + \ No newline at end of file diff --git a/my_docs/21/lmod_zoom_mtg_2021_11_09/beamerfontthemeTACC16.sty b/my_docs/21/lmod_zoom_mtg_2021_11_09/beamerfontthemeTACC16.sty deleted file mode 120000 index a1f2fa5f9..000000000 --- a/my_docs/21/lmod_zoom_mtg_2021_11_09/beamerfontthemeTACC16.sty +++ /dev/null @@ -1 +0,0 @@ -../../beamer/beamerfontthemeTACC16.sty \ No newline at end of file diff --git a/my_docs/21/lmod_zoom_mtg_2021_11_09/beamerfontthemeTACC16.sty b/my_docs/21/lmod_zoom_mtg_2021_11_09/beamerfontthemeTACC16.sty new file mode 100755 index 000000000..b65271835 --- /dev/null +++ b/my_docs/21/lmod_zoom_mtg_2021_11_09/beamerfontthemeTACC16.sty @@ -0,0 +1,21 @@ +% Copyright 2003 by Till Tantau +% +% This program can be redistributed and/or modified under the terms +% of the GNU Public License, version 2. + +\mode +\setbeamerfont{title}{parent=structure,size=\LARGE,series=\bfseries} +\setbeamerfont{author}{parent=structure,size=\large, series=\normalfont} +\setbeamerfont{frametitle}{parent=structure,size=\LARGE,series=\bfseries} +\setbeamerfont{framesubtitle}{parent=frametitle,size=\small} + +%\usefonttheme{professionalfonts} % using non standard fonts for beamer +%\usefonttheme{serif} % default family is serif +%\usepackage{fontspec} +%\setmainfont{Century Gothic} + +\usepackage{fontspec} +\usepackage{libertine} + +\mode + diff --git a/my_docs/21/lmod_zoom_mtg_2021_11_09/beamerinnerthemeTACC.sty b/my_docs/21/lmod_zoom_mtg_2021_11_09/beamerinnerthemeTACC.sty deleted file mode 120000 index 8d5ae3921..000000000 --- a/my_docs/21/lmod_zoom_mtg_2021_11_09/beamerinnerthemeTACC.sty +++ /dev/null @@ -1 +0,0 @@ -../../beamer/beamerinnerthemeTACC.sty \ No newline at end of file diff --git a/my_docs/21/lmod_zoom_mtg_2021_11_09/beamerinnerthemeTACC.sty b/my_docs/21/lmod_zoom_mtg_2021_11_09/beamerinnerthemeTACC.sty new file mode 100755 index 000000000..29e2bce81 --- /dev/null +++ b/my_docs/21/lmod_zoom_mtg_2021_11_09/beamerinnerthemeTACC.sty @@ -0,0 +1,11 @@ +\mode + +\setbeamertemplate{itemize item}[circle] +\setbeamertemplate{itemize subitem}{{}--{}} +\setbeamertemplate{itemize subsubitem}[circle] +\setbeamertemplate{section in toc}{$\bullet$\hskip.5em\inserttocsection} +%\setbeamertemplate{subsection in toc}{} +\setbeamertemplate{subsubsection in toc}{} + +\mode + diff --git a/my_docs/21/lmod_zoom_mtg_2021_11_09/beamerinnerthemeTACC16.sty b/my_docs/21/lmod_zoom_mtg_2021_11_09/beamerinnerthemeTACC16.sty deleted file mode 120000 index 5955acc99..000000000 --- a/my_docs/21/lmod_zoom_mtg_2021_11_09/beamerinnerthemeTACC16.sty +++ /dev/null @@ -1 +0,0 @@ -../../beamer/beamerinnerthemeTACC16.sty \ No newline at end of file diff --git a/my_docs/21/lmod_zoom_mtg_2021_11_09/beamerinnerthemeTACC16.sty b/my_docs/21/lmod_zoom_mtg_2021_11_09/beamerinnerthemeTACC16.sty new file mode 100755 index 000000000..f7f454e1d --- /dev/null +++ b/my_docs/21/lmod_zoom_mtg_2021_11_09/beamerinnerthemeTACC16.sty @@ -0,0 +1,11 @@ +\mode + +\setbeamertemplate{itemize item}[triangle] +\setbeamertemplate{itemize subitem}[triangle] +\setbeamertemplate{itemize subsubitem}[triangle] +\setbeamertemplate{section in toc}{$\bullet$\hskip.5em\inserttocsection} +%\setbeamertemplate{subsection in toc}{} +\setbeamertemplate{subsubsection in toc}{} + +\mode + diff --git a/my_docs/21/lmod_zoom_mtg_2021_11_09/beamerouterthemeTACC.sty b/my_docs/21/lmod_zoom_mtg_2021_11_09/beamerouterthemeTACC.sty deleted file mode 120000 index da0a45d33..000000000 --- a/my_docs/21/lmod_zoom_mtg_2021_11_09/beamerouterthemeTACC.sty +++ /dev/null @@ -1 +0,0 @@ -../../beamer/beamerouterthemeTACC.sty \ No newline at end of file diff --git a/my_docs/21/lmod_zoom_mtg_2021_11_09/beamerouterthemeTACC.sty b/my_docs/21/lmod_zoom_mtg_2021_11_09/beamerouterthemeTACC.sty new file mode 100755 index 000000000..038580303 --- /dev/null +++ b/my_docs/21/lmod_zoom_mtg_2021_11_09/beamerouterthemeTACC.sty @@ -0,0 +1,196 @@ +% Copyright 2003 by Till Tantau +% +% This program can be redistributed and/or modified under the terms +% of the GNU Public License, version 2. + +\mode + +\setbeamertemplate{frametitle}[default][center] +\addtobeamertemplate{frametitle}{\vskip 4ex minus 4ex}{} + +% Here we define what appears at the bottom of each slide: the "footline". +\setbeamertemplate{footline}{% + \leavevmode% + + % Horizontal line dividing the rest of the slide from the footer? + % hrule goes all the way across... + % \hrule height.3pt% + % With \rule, you can specify the thickness + % \rule[raise-height]{width}{thickness} + \hspace{.025\textwidth}\rule{.95\textwidth}{.5pt} + + \hbox{% + % On the left half of the footer, insert the TACC logo + \begin{minipage}{.5\textwidth}% + \hskip .033\textwidth%Give horizontal space else this will set on the left edge of the slide! + % TACC logo with custom viewport! + \includegraphics[viewport=1 -1 135 35, clip=true, width=.4\textwidth]{figures/TACC_logo} + \end{minipage} + % + \begin{minipage}{.5\textwidth}% + \vskip .023\textheight% + \raggedleft% + \setlength{\rightskip}{.033\textwidth} + % + % If we are not on the first page, insert a page number + % For some reason, insertframenumber is buggy when you have fragile + % slides with verbatim environments in them... it tends to skip numbers + % for some reason! On the other hand, the pagenumber is incremented + % for *every* slide, including transition slides... + \ifnum \thepage>1 + % \insertshorttitle + \insertframenumber + % \insertframenumber/\inserttotalframenumber + % \insertpagenumber + \else % Do a phantom of whatever you do on other pages, so spacing matches + %$\phantom{\insertshorttitle}$ + $\phantom{\insertframenumber}$ + %$\phantom{\insertframenumber/\inserttotalframenumber}$ + %$\phantom{\insertpagenumber}$ + \fi + \hfill\includegraphics[width=.5\textwidth]{figures/UT_logo}% + \end{minipage}% + }% + \vskip .023\textheight% +} + + + + +\ifTACCheadernav + +\usesectionheadtemplate +{\hfill\insertsectionhead} +{\hfill\color{fg!50!bg}\insertsectionhead} + +% Head +\ifbeamer@compress + +% Here we define how the top of the frame looks, the "headline". +\setbeamertemplate{headline} +{% + \ifnum \thepage>1 + \leavevmode% + \begin{beamercolorbox}[wd=.5\paperwidth,ht=2.5ex,dp=1.125ex]{% + section in head/foot}% + \insertsectionnavigationhorizontal{.5\paperwidth}{\hskip0pt plus1filll}{}% + \end{beamercolorbox}% + \begin{beamercolorbox}[wd=.5\paperwidth,ht=2.5ex,dp=1.125ex]{% + subsection in head/foot}% + \insertsubsectionnavigationhorizontal{% + .5\paperwidth}{}{\hskip0pt plus1filll}% + \end{beamercolorbox}% + \fi %\thepage>1 +} + +\else% Not compressed + +\setbeamertemplate{headline} +{% + \ifnum \thepage>1 + \leavevmode% + \@tempdimb=2.4375ex% + \ifnum\beamer@subsectionmax<\beamer@sectionmax% + \multiply\@tempdimb by\beamer@sectionmax% + \else% + \multiply\@tempdimb by\beamer@subsectionmax% + \fi% + \ifdim\@tempdimb>0pt% + \advance\@tempdimb by 1.125ex% + \begin{beamercolorbox}[wd=.5\paperwidth,ht=\@tempdimb]{% + section in head/foot}% + \vbox to\@tempdimb{\vfil\insertsectionnavigation{.5\paperwidth}\vfil}% + \end{beamercolorbox}% + \begin{beamercolorbox}[wd=.5\paperwidth,ht=\@tempdimb]{% + subsection in head/foot}% + \vbox to\@tempdimb{\vfil\insertsubsectionnavigation{.5\paperwidth}\vfil}% + \end{beamercolorbox}% + \fi% + \fi % \thepage>1 +} + +\fi % end if compressed +\fi % TACCheadernav + + +\ifTACCheadertree + +\setbeamertemplate{headline} +{ + \begin{beamercolorbox}[wd=\paperwidth,colsep=1.5pt + ]{upper separation line head} + \end{beamercolorbox} + % + % Place short title + % + \begin{beamercolorbox}[wd=\paperwidth,ht=2.5ex,dp=1.125ex,% + leftskip=.3cm,rightskip=.3cm plus1fil]{title in head/foot} + \usebeamerfont{title in head/foot}\insertshorttitle + \end{beamercolorbox} + + % + % Place section + % + \begin{beamercolorbox}[wd=\paperwidth,ht=2.5ex,dp=1.125ex,% + leftskip=.3cm,rightskip=.3cm plus1fil]{section in head/foot} + \usebeamerfont{section in head/foot}% + %\ifbeamer@tree@showhooks + \setbox\beamer@tempbox=\hbox{\insertsectionhead}% + \ifdim\wd\beamer@tempbox>1pt% + \hskip2pt\raise1.9pt\hbox{\vrule width0.4pt height1.875ex\vrule width 5pt height0.4pt}% + \hskip1pt% + \fi% \ifdim + %\else% + %\hskip6pt% + %\fi% \ifbeamer + \insertsectionhead + \end{beamercolorbox} + +% +% Place subsection +% +\begin{beamercolorbox}[wd=\paperwidth,ht=2.5ex,dp=1.125ex,% + leftskip=.3cm,rightskip=.3cm plus1fil]{subsection in head/foot} + \usebeamerfont{subsection in head/foot}% + %\ifbeamer@tree@showhooks + \setbox\beamer@tempbox=\hbox{\insertsubsectionhead}% + \ifdim\wd\beamer@tempbox>1pt% + \hskip9.4pt\raise1.9pt\hbox{\vrule width0.4pt height1.875ex\vrule width 5pt height0.4pt}% + \hskip1pt% + \fi% \ifdim + %\else% + %\hskip12pt% + %\fi% \ifbeamer + \insertsubsectionhead +\end{beamercolorbox} + +% +% Place final separation box +% + \begin{beamercolorbox}[wd=\paperwidth,colsep=1.5pt + ]{lower separation line head} + \end{beamercolorbox} + + % + % Another matching rule which helps to frame the content + % + \hspace{.025\textwidth}\rule{.95\textwidth}{.5pt} +} +\fi % TACCheadertree + + +% The following command suppresses all navigation symbols. This is +% necessary in the TACC theme, since it overlaps where we want the +% logo to be. +\setbeamertemplate{navigation symbols}{} + +% Align the navigation symbols vertically (still overlaps our logo!) +%\setbeamertemplate{navigation symbols}[vertical]{} + +% Only places the slide-forward and slide-back symbol, but yes, +% this still overlaps our logo! +%\setbeamertemplate{navigation symbols}[only frame symbol]{} + + +\mode + diff --git a/my_docs/21/lmod_zoom_mtg_2021_11_09/beamerouterthemeTACC16.sty b/my_docs/21/lmod_zoom_mtg_2021_11_09/beamerouterthemeTACC16.sty deleted file mode 120000 index 54bd09537..000000000 --- a/my_docs/21/lmod_zoom_mtg_2021_11_09/beamerouterthemeTACC16.sty +++ /dev/null @@ -1 +0,0 @@ -../../beamer/beamerouterthemeTACC16.sty \ No newline at end of file diff --git a/my_docs/21/lmod_zoom_mtg_2021_11_09/beamerouterthemeTACC16.sty b/my_docs/21/lmod_zoom_mtg_2021_11_09/beamerouterthemeTACC16.sty new file mode 100755 index 000000000..d5e6388c7 --- /dev/null +++ b/my_docs/21/lmod_zoom_mtg_2021_11_09/beamerouterthemeTACC16.sty @@ -0,0 +1,312 @@ +% Antonio Gomez (agomez@tacc.utexas.edu) +% 4-20-17. Added option to put the footer on the right side + + + +\mode + +\usepackage{xcolor} +\usepackage{graphicx} +\usepackage{etoolbox} + + + +% This theme accepts the "rightfooter" option +% When used, it will put the TACC logo at the bottom of the slide on the right side +% By default, it goes to the left + +\xifaspectratio{ + {169} { + \pgfdeclareimage[width=\paperwidth]{titlebackground}{./figures/master169.jpg} + \if@rightfooterOption + \pgfdeclareimage[width=\paperwidth]{background}{./figures/secondary_right169.jpg} +\else + \pgfdeclareimage[width=\paperwidth]{background}{./figures/secondary169.jpg} +\fi +} +}[ +\pgfdeclareimage[width=\paperwidth]{titlebackground}{./figures/master.jpg} + \if@rightfooterOption + \pgfdeclareimage[width=\paperwidth]{background}{./figures/secondary_right.jpg} +\else + \pgfdeclareimage[width=\paperwidth]{background}{./figures/secondary.jpg} +\fi +] + +\setbeamertemplate{background canvas}{% +\xifaspectratio{ + {169} { + \ifnum\c@framenumber=1 % + \begin{picture}(0,0) + \put(-3,-256){% + \pgfuseimage{titlebackground} + } + \end{picture} + \else% + \begin{picture}(0,0) + \put(-3,-260){% + \pgfuseimage{background} + } + \end{picture} + \fi + } + {43} { + \ifnum\c@framenumber=1 % + \begin{picture}(0,0) + \put(-4,-274){% + \pgfuseimage{titlebackground} + } + \end{picture} + \else% + \begin{picture}(0,0) + \put(-4,-274){% + \pgfuseimage{background} + } + \end{picture} + \fi + } +} +} + + + +%\setbeamertemplate{background canvas}{% +% % On title page +% \ifnum\c@framenumber=1 % +% \begin{picture}(0,0) +% \put(0,-253){% +% \pgfuseimage{titlebackground} +% } +% \end{picture} +% +% \else% +% \xifaspectratio{ +% {169} { +% % Other frames background +% \begin{picture}(0,0) +% \put(-4,-260){% +% \pgfuseimage{background} +% } +% \end{picture} +% } +% }[ +% % Other frames background +% \begin{picture}(0,0) +% \put(-4,-274){% +% \pgfuseimage{background} +% } +% \end{picture} +% ] +% \fi% +%} + + +\setbeamertemplate{title page}{ +\vspace{40pt} +\begin{center} +\usebeamerfont{title} {\huge \inserttitle}\par +\vspace{4ex} +\usebeamerfont{author} { + \insertauthor +}\par +\vspace{2ex} +\usebeamerfont{institute}{ + \insertinstitute +} \par +\vspace{2ex} +\usebeamerfont{date}{ + \insertdate +} +\end{center} +} + + +\setbeamertemplate{frametitle}[default][center] +\setbeamertemplate{frametitle}{ + \makeatletter + \regexpatchcmd{\insertframetitle} + {(\c{usebeamertemplate}.*)\c{fi}} + {\c{NoCaseChange}\cB\{\1\cE\}\c{fi}} + {}{}% + \makeatother + \vskip1ex + \insertframetitle +} + +% Here we define what appears at the bottom of each slide: the "footline". +\setbeamertemplate{footline}{% + \leavevmode% + + % Horizontal line dividing the rest of the slide from the footer? + % hrule goes all the way across... + % \hrule height.3pt% + % With \rule, you can specify the thickness + % \rule[raise-height]{width}{thickness} + % \hspace{.025\textwidth}\rule{.95\textwidth}{.5pt} + + \hbox{% + \ifnum \thepage>1 + \if@rightfooterOption + \begin{minipage}{.2\textwidth}% + \hskip .05\textwidth%Give horizontal space else this will set on the left edge of the slide! + \end{minipage} + \else + \begin{minipage}{.4\textwidth}% + \hskip .05\textwidth%Give horizontal space else this will set on the left edge of the slide! + \end{minipage} + \fi + + + \begin{minipage}{\textwidth}% + % \vskip .023\textheight% + \raggedleft% + \setlength{\rightskip}{\textwidth} + \if@rightfooterOption + \hbox{% + \begin{beamercolorbox}[wd=0.7\textwidth,ht=2.25ex,dp=1ex,left]{author in head/foot}% + \insertshorttitle{} \hskip .01\textwidth | \hskip .01\textwidth \insertdate{} \hskip .01\textwidth | \hskip .01\textwidth \insertframenumber{} + \end{beamercolorbox}% + } + \else + \hbox{% + \begin{beamercolorbox}[wd=0.5\textwidth,ht=2.25ex,dp=1ex,left]{author in head/foot}% + \insertshorttitle{} \hskip .01\textwidth | \hskip .01\textwidth \insertdate{} \hskip .01\textwidth | \hskip .01\textwidth \insertframenumber{} + \end{beamercolorbox}% + } + \fi + + \end{minipage}% + \begin{minipage}{.05\textwidth}% + \end{minipage}% + \fi %\thepage>1 + }% + \vskip .023\textheight% + +} + + + + +\ifTACCheadernav + +\usesectionheadtemplate +{\hfill\insertsectionhead} +{\hfill\color{fg!50!bg}\insertsectionhead} + +% Head +\ifbeamer@compress + +% Here we define how the top of the frame looks, the "headline". +\setbeamertemplate{headline} +{% + \ifnum \thepage>1 + \leavevmode% + \begin{beamercolorbox}[wd=.5\paperwidth,ht=2.5ex,dp=1.125ex]{% + section in head/foot}% + \insertsectionnavigationhorizontal{.5\paperwidth}{\hskip0pt plus1filll}{}% + \end{beamercolorbox}% + \begin{beamercolorbox}[wd=.5\paperwidth,ht=2.5ex,dp=1.125ex]{% + subsection in head/foot}% + \insertsubsectionnavigationhorizontal{% + .5\paperwidth}{}{\hskip0pt plus1filll}% + \end{beamercolorbox}% + \fi %\thepage>1 +} + +\else% Not compressed + +\setbeamertemplate{headline} +{% + \ifnum \thepage>1 + \leavevmode% + \@tempdimb=2.4375ex% + \ifnum\beamer@subsectionmax<\beamer@sectionmax% + \multiply\@tempdimb by\beamer@sectionmax% + \else% + \multiply\@tempdimb by\beamer@subsectionmax% + \fi% + \ifdim\@tempdimb>0pt% + \advance\@tempdimb by 1.125ex% + \begin{beamercolorbox}[wd=.5\paperwidth,ht=\@tempdimb]{% + section in head/foot}% + \vbox to\@tempdimb{\vfil\insertsectionnavigation{.5\paperwidth}\vfil}% + \end{beamercolorbox}% + \begin{beamercolorbox}[wd=.5\paperwidth,ht=\@tempdimb]{% + subsection in head/foot}% + \vbox to\@tempdimb{\vfil\insertsubsectionnavigation{.5\paperwidth}\vfil}% + \end{beamercolorbox}% + \fi% + \fi % \thepage>1 +} + +\fi % end if compressed +\fi % TACCheadernav + + +\ifTACCheadertree + +\setbeamertemplate{headline} +{ + \begin{beamercolorbox}[wd=\paperwidth,colsep=1.5pt]{upper separation line head} + \end{beamercolorbox} + % + % Place short title + % + \begin{beamercolorbox}[wd=\paperwidth,ht=2.5ex,dp=1.125ex,% + leftskip=.3cm,rightskip=.3cm plus1fil]{title in head/foot} + \usebeamerfont{title in head/foot}\insertshorttitle + \end{beamercolorbox} + + % + % Place section + % + \begin{beamercolorbox}[wd=\paperwidth,ht=2.5ex,dp=1.125ex,% + leftskip=.3cm,rightskip=.3cm plus1fil]{section in head/foot} + \usebeamerfont{section in head/foot}% + %\ifbeamer@tree@showhooks + \setbox\beamer@tempbox=\hbox{\insertsectionhead}% + \ifdim\wd\beamer@tempbox>1pt% + \hskip2pt\raise1.9pt\hbox{\vrule width0.4pt height1.875ex\vrule width 5pt height0.4pt}% + \hskip1pt% + \fi + \insertsectionhead + \end{beamercolorbox} + +% +% Place subsection +% +\begin{beamercolorbox}[wd=\paperwidth,ht=2.5ex,dp=1.125ex,% + leftskip=.3cm,rightskip=.3cm plus1fil]{subsection in head/foot} + \usebeamerfont{subsection in head/foot}% + %\ifbeamer@tree@showhooks + \setbox\beamer@tempbox=\hbox{\insertsubsectionhead}% + \ifdim\wd\beamer@tempbox>1pt% + \hskip9.4pt\raise1.9pt\hbox{\vrule width0.4pt height1.875ex\vrule width 5pt height0.4pt}% + \hskip1pt% + \fi + \insertsubsectionhead +\end{beamercolorbox} + +% +% Place final separation box +% + \begin{beamercolorbox}[wd=\paperwidth,colsep=1.5pt + ]{lower separation line head} + \end{beamercolorbox} + + % + % Another matching rule which helps to frame the content + % + \hspace{.025\textwidth}\rule{.95\textwidth}{.5pt} +} +\fi % TACCheadertree + + +% The following command suppresses all navigation symbols. This is +% necessary in the TACC theme, since it overlaps where we want the +% logo to be. +\setbeamertemplate{navigation symbols}{} + + +\mode + diff --git a/my_docs/21/lmod_zoom_mtg_2021_11_09/beamerthemeTACC.sty b/my_docs/21/lmod_zoom_mtg_2021_11_09/beamerthemeTACC.sty deleted file mode 120000 index 5c339abd4..000000000 --- a/my_docs/21/lmod_zoom_mtg_2021_11_09/beamerthemeTACC.sty +++ /dev/null @@ -1 +0,0 @@ -../../beamer/beamerthemeTACC.sty \ No newline at end of file diff --git a/my_docs/21/lmod_zoom_mtg_2021_11_09/beamerthemeTACC.sty b/my_docs/21/lmod_zoom_mtg_2021_11_09/beamerthemeTACC.sty new file mode 100755 index 000000000..c6a1b1269 --- /dev/null +++ b/my_docs/21/lmod_zoom_mtg_2021_11_09/beamerthemeTACC.sty @@ -0,0 +1,26 @@ +%% TACC theme for beamer + +\newif\ifTACCheadernav +\DeclareOption{headernav}{\global\TACCheadernavtrue} + +\newif\ifTACCheadertree +\DeclareOption{headertree}{\global\TACCheadertreetrue} +\ProcessOptions + +\mode + +\usefonttheme{TACC} +\usecolortheme{TACC} +\useinnertheme{TACC} +\useoutertheme{TACC} + +\mode + + +\newcommand{\event}[1]{% + \makeatletter% + \def\TACC@eventname{#1}% + \makeatother} + +\newcommand{\sectionframe}[1]{\section{#1}\frame{\Large\textbf{#1}}} +\newcommand{\subsectionframe}[1]{\subsection{#1}\frame{\large\textbf{#1}}} diff --git a/my_docs/21/lmod_zoom_mtg_2021_11_09/beamerthemeTACC16.sty b/my_docs/21/lmod_zoom_mtg_2021_11_09/beamerthemeTACC16.sty deleted file mode 120000 index 7a9d4d296..000000000 --- a/my_docs/21/lmod_zoom_mtg_2021_11_09/beamerthemeTACC16.sty +++ /dev/null @@ -1 +0,0 @@ -../../beamer/beamerthemeTACC16.sty \ No newline at end of file diff --git a/my_docs/21/lmod_zoom_mtg_2021_11_09/beamerthemeTACC16.sty b/my_docs/21/lmod_zoom_mtg_2021_11_09/beamerthemeTACC16.sty new file mode 100755 index 000000000..b522d0207 --- /dev/null +++ b/my_docs/21/lmod_zoom_mtg_2021_11_09/beamerthemeTACC16.sty @@ -0,0 +1,61 @@ +%% TACC theme for beamer + + +\newif\if@rightfooterOption +\@rightfooterOptionfalse +\DeclareOption{rightfooter}{\@rightfooterOptiontrue} +\ProcessOptions + + +\newif\ifTACCheadernav +\DeclareOption{headernav}{\global\TACCheadernavtrue} + +\newif\ifTACCheadertree +\DeclareOption{headertree}{\global\TACCheadertreetrue} +\ProcessOptions + +\usepackage{xparse} +\ExplSyntaxOn +\NewDocumentCommand{\ifaspectratio}{mmm} + { + % Recover the option from those passed to the class + \keys_set:nf { zunbeltz/beameroptions } { \use:c { opt@beamer.cls } } + \str_if_eq:nVTF { #1 } \l_zunbeltz_aspectratio_tl { #2 } { #3 } + } +\NewDocumentCommand{\xifaspectratio}{mO{}} + { + % Recover the option from those passed to the class + \keys_set:nf { zunbeltz/beameroptions } { \use:c { opt@beamer.cls } } + \str_case:VnF \l_zunbeltz_aspectratio_tl { #1 } { #2 } + } +% We need to define only one key, the other are treated as `unknown' +\keys_define:nn { zunbeltz/beameroptions } + { + aspectratio .tl_set:N = \l_zunbeltz_aspectratio_tl, + aspectratio .initial:n = 43, + unknown .code:n = {}, + } + +% Generate the variants we need +\cs_generate_variant:Nn \keys_set:nn { nf } +\cs_generate_variant:Nn \str_if_eq:nnTF { nV } +\cs_generate_variant:Nn \str_case:nnF { V } +\ExplSyntaxOff + +\mode + +\usefonttheme{TACC16} +\useinnertheme{TACC16} +\useoutertheme{TACC16} +\usecolortheme{TACC16} + +\mode + + +\newcommand{\event}[1]{% + \makeatletter% + \def\TACC@eventname{#1}% + \makeatother} + +\newcommand{\sectionframe}[1]{\section{#1}\frame{\Large\textbf{#1}}} +\newcommand{\subsectionframe}[1]{\subsection{#1}\frame{\large\textbf{#1}}} diff --git a/my_docs/21/lmod_zoom_mtg_2021_11_09/figures b/my_docs/21/lmod_zoom_mtg_2021_11_09/figures deleted file mode 120000 index ddafd8974..000000000 --- a/my_docs/21/lmod_zoom_mtg_2021_11_09/figures +++ /dev/null @@ -1 +0,0 @@ -../../beamer/figures \ No newline at end of file diff --git a/my_docs/21/lmod_zoom_mtg_2021_11_09/figures/TACC_logo.pdf b/my_docs/21/lmod_zoom_mtg_2021_11_09/figures/TACC_logo.pdf new file mode 100755 index 000000000..c018a20cb Binary files /dev/null and b/my_docs/21/lmod_zoom_mtg_2021_11_09/figures/TACC_logo.pdf differ diff --git a/my_docs/21/lmod_zoom_mtg_2021_11_09/figures/UT_logo.pdf b/my_docs/21/lmod_zoom_mtg_2021_11_09/figures/UT_logo.pdf new file mode 100755 index 000000000..d5b42e752 Binary files /dev/null and b/my_docs/21/lmod_zoom_mtg_2021_11_09/figures/UT_logo.pdf differ diff --git a/my_docs/21/lmod_zoom_mtg_2021_11_09/figures/cc.png b/my_docs/21/lmod_zoom_mtg_2021_11_09/figures/cc.png new file mode 100644 index 000000000..8a532ff8f Binary files /dev/null and b/my_docs/21/lmod_zoom_mtg_2021_11_09/figures/cc.png differ diff --git a/my_docs/21/lmod_zoom_mtg_2021_11_09/figures/isa.png b/my_docs/21/lmod_zoom_mtg_2021_11_09/figures/isa.png new file mode 100644 index 000000000..f95d985e7 Binary files /dev/null and b/my_docs/21/lmod_zoom_mtg_2021_11_09/figures/isa.png differ diff --git a/my_docs/21/lmod_zoom_mtg_2021_11_09/figures/master.jpg b/my_docs/21/lmod_zoom_mtg_2021_11_09/figures/master.jpg new file mode 100644 index 000000000..f5c56c04a Binary files /dev/null and b/my_docs/21/lmod_zoom_mtg_2021_11_09/figures/master.jpg differ diff --git a/my_docs/21/lmod_zoom_mtg_2021_11_09/figures/master169.jpg b/my_docs/21/lmod_zoom_mtg_2021_11_09/figures/master169.jpg new file mode 100644 index 000000000..b215776eb Binary files /dev/null and b/my_docs/21/lmod_zoom_mtg_2021_11_09/figures/master169.jpg differ diff --git a/my_docs/21/lmod_zoom_mtg_2021_11_09/figures/master169.png b/my_docs/21/lmod_zoom_mtg_2021_11_09/figures/master169.png new file mode 100644 index 000000000..bc5c0ed12 Binary files /dev/null and b/my_docs/21/lmod_zoom_mtg_2021_11_09/figures/master169.png differ diff --git a/my_docs/21/lmod_zoom_mtg_2021_11_09/figures/secondary.jpg b/my_docs/21/lmod_zoom_mtg_2021_11_09/figures/secondary.jpg new file mode 100644 index 000000000..d905a95c9 Binary files /dev/null and b/my_docs/21/lmod_zoom_mtg_2021_11_09/figures/secondary.jpg differ diff --git a/my_docs/21/lmod_zoom_mtg_2021_11_09/figures/secondary169.jpg b/my_docs/21/lmod_zoom_mtg_2021_11_09/figures/secondary169.jpg new file mode 100644 index 000000000..4eb017957 Binary files /dev/null and b/my_docs/21/lmod_zoom_mtg_2021_11_09/figures/secondary169.jpg differ diff --git a/my_docs/21/lmod_zoom_mtg_2021_11_09/figures/secondary169.png b/my_docs/21/lmod_zoom_mtg_2021_11_09/figures/secondary169.png new file mode 100644 index 000000000..cb9060a56 Binary files /dev/null and b/my_docs/21/lmod_zoom_mtg_2021_11_09/figures/secondary169.png differ diff --git a/my_docs/21/lmod_zoom_mtg_2021_11_09/figures/secondary_right.jpg b/my_docs/21/lmod_zoom_mtg_2021_11_09/figures/secondary_right.jpg new file mode 100644 index 000000000..f25f93a58 Binary files /dev/null and b/my_docs/21/lmod_zoom_mtg_2021_11_09/figures/secondary_right.jpg differ diff --git a/my_docs/21/lmod_zoom_mtg_2021_11_09/figures/secondary_right169.jpg b/my_docs/21/lmod_zoom_mtg_2021_11_09/figures/secondary_right169.jpg new file mode 100644 index 000000000..567a1078f Binary files /dev/null and b/my_docs/21/lmod_zoom_mtg_2021_11_09/figures/secondary_right169.jpg differ diff --git a/my_docs/21/lmod_zoom_mtg_2021_11_09/themes b/my_docs/21/lmod_zoom_mtg_2021_11_09/themes deleted file mode 120000 index a98530730..000000000 --- a/my_docs/21/lmod_zoom_mtg_2021_11_09/themes +++ /dev/null @@ -1 +0,0 @@ -../../beamer/themes \ No newline at end of file diff --git a/my_docs/21/lmod_zoom_mtg_2021_11_09/themes/beamercolorthemeTACC16.sty b/my_docs/21/lmod_zoom_mtg_2021_11_09/themes/beamercolorthemeTACC16.sty new file mode 100644 index 000000000..248ae8cb6 --- /dev/null +++ b/my_docs/21/lmod_zoom_mtg_2021_11_09/themes/beamercolorthemeTACC16.sty @@ -0,0 +1,193 @@ +% Copyright 2003 by Till Tantau . +% +% This program can be redistributed and/or modified under the terms +% of the GNU Public License, version 2. + +\mode + +\usepackage{textcase,regexpatch} + +\setbeamertemplate{blocks}[rounded][shadow=true] + + +\definecolor{TACCred}{RGB}{180,13,29} +\definecolor{TACCorange}{RGB}{210,104,43} +\definecolor{TACCblue}{RGB}{21,77,122} +%\definecolor{TACCgreen}{RGB}{30,134,104} +\definecolor{TACCgreen}{RGB}{49,168,51} + +% I downloaded a gimp color palette from +% http://maururu.net/2007/latex-beamer-color-palette/ +% Which provides rgb values (I think) for several of the +% default beamer themes. You can open this in gimp by +% opening the Palettes dialog, right-clicking anywhere and choosing +% 'Import Palette'. A color in there called 'default added blue' +% appeared to be approximately what I wanted. It had the triple +% of values 141 145 208. If you double-click on this in the +% palette editor it gives you a bunch of information. You can't +% use these values directly to set a color...it just comes out white. +% I think definecolor is expecting something normalized by 255. Yes! + + +%%% +% Set the normal text color +%%% +\setbeamercolor{normal text}{fg=black} %,bg=white} +\setbeamercolor{example text}{fg=TACCgreen} +\setbeamercolor{alerted text}{fg=TACCorange} + + +\setbeamercolor{structure}{fg=black} +%\setbeamercolor{structure}{fg=black} + +\setbeamercolor{background canvas}{parent=normal text} +\setbeamercolor{background}{parent=background canvas} + +\setbeamercolor{palette primary}{use=structure,fg=structure.fg} +\setbeamercolor{palette secondary}{use=structure,fg=structure.fg!75!black} +\setbeamercolor{palette tertiary}{use=structure,fg=structure.fg!50!black} +\setbeamercolor{palette quaternary}{fg=black} + +\setbeamercolor{palette sidebar primary}{use=normal text,fg=normal text.fg} +\setbeamercolor{palette sidebar secondary}{use=structure,fg=structure.fg} +\setbeamercolor{palette sidebar tertiary}{use=normal text,fg=normal text.fg} +\setbeamercolor{palette sidebar quaternary}{use=structure,fg=structure.fg} + +\setbeamercolor{math text}{} +\setbeamercolor{math text inlined}{parent=math text} +\setbeamercolor{math text displayed}{parent=math text} + +\setbeamercolor{normal text in math text}{} + +\setbeamercolor{local structure}{parent=structure} + +\setbeamercolor{titlelike}{parent=structure} + +\setbeamercolor{title}{parent=titlelike} +\setbeamercolor{title in head/foot}{parent=palette quaternary} +\setbeamercolor{title in sidebar}{parent=palette sidebar quaternary} + +\setbeamercolor{subtitle}{parent=title} + +\setbeamercolor{author}{} +\setbeamercolor{author in head/foot}{parent=palette primary} +\setbeamercolor{author in sidebar}{use=palette sidebar tertiary,fg=palette sidebar tertiary.fg} + +\setbeamercolor{institute}{} +\setbeamercolor{institute in head/foot}{parent=palette tertiary} +\setbeamercolor{institute in sidebar}{use=palette sidebar tertiary,fg=palette sidebar tertiary.fg} + +\setbeamercolor{date}{} +\setbeamercolor{date in head/foot}{parent=palette secondary} +\setbeamercolor{date in sidebar}{use=palette sidebar tertiary,fg=palette sidebar tertiary.fg} + +\setbeamercolor{titlegraphic}{} + +\setbeamercolor{part name}{} +\setbeamercolor{part title}{parent=titlelike} + +\setbeamercolor{section in toc}{parent=structure} +\setbeamercolor{section in toc shaded}{parent=section in toc} +\setbeamercolor{section in head/foot}{parent=palette tertiary} +\setbeamercolor{section in sidebar}{parent=palette sidebar secondary} +\setbeamercolor{section in sidebar shaded}{use=section in sidebar,fg=section in sidebar.fg!40!bg} +\setbeamercolor{section number projected}{parent=item projected} + +\setbeamercolor{subsection in toc}{} +\setbeamercolor{subsection in toc shaded}{parent=subsection in toc} +\setbeamercolor{subsection in head/foot}{parent=palette secondary} +\setbeamercolor{subsection in sidebar}{parent=palette sidebar primary} +\setbeamercolor{subsection in sidebar shaded}{use=subsection in sidebar,fg=subsection in sidebar.fg!40!bg} +\setbeamercolor{subsection number projected}{parent={subitem projected}} + +\setbeamercolor{subsubsection in toc}{parent=subsection in toc} +\setbeamercolor{subsubsection in toc shaded}{parent=subsubsection in toc} +\setbeamercolor{subsubsection in head/foot}{parent=subsection in head/foot} +\setbeamercolor{subsubsection in sidebar}{parent=subsection in sidebar} +\setbeamercolor{subsubsection in sidebar shaded}{parent=subsection in sidebar shaded} +\setbeamercolor{subsubsection number projected}{parent=subsubitem projected} + +\setbeamercolor{headline}{} +\setbeamercolor{footline}{} + +\setbeamercolor{sidebar}{} +\setbeamercolor{sidebar left}{parent=sidebar} +\setbeamercolor{sidebar right}{parent=sidebar} + +\setbeamercolor{logo}{parent=palette secondary} + +\setbeamercolor{frametitle}{parent=titlelike} +\setbeamercolor{framesubtitle}{parent=frametitle} + +\setbeamercolor{frametitle right}{parent=frametitle} + +\setbeamercolor{caption}{} +\setbeamercolor{caption name}{parent=structure} + +\setbeamercolor{button}{use=local structure,bg=local structure.fg!50!bg,fg=white} +\setbeamercolor{button border}{use=button,fg=button.bg} +\setbeamercolor{navigation symbols}{use=structure,fg=structure.fg!40!bg} +\setbeamercolor{navigation symbols dimmed}{use=structure,fg=structure.fg!20!bg} +\setbeamercolor{mini frame}{parent=section in head/foot} + +\setbeamercolor{block body}{fg=black} +\setbeamercolor{block body alerted}{fg=black} +\setbeamercolor{block body example}{fg=black} + +\setbeamercolor{block title}{bg=TACCblue,fg=white} +\setbeamercolor{block title alerted}{bg=TACCred,fg=white} +\setbeamercolor{block title example}{bg=TACCgreen,fg=white} + +\setbeamercolor{item}{parent=local structure} +\setbeamercolor{subitem}{parent=item} +\setbeamercolor{subsubitem}{parent=subitem} + +\setbeamercolor{item projected}{parent=item,use=item,fg=black,bg=item.fg} +\setbeamercolor{subitem projected}{parent=item projected} +\setbeamercolor{subsubitem projected}{parent=subitem projected} + +\setbeamercolor{enumerate item}{parent=item} +\setbeamercolor{enumerate subitem}{parent=subitem} +\setbeamercolor{enumerate subsubitem}{parent=subsubitem} + +\setbeamercolor{itemize item}{parent=item} +\setbeamercolor{itemize subitem}{parent=subitem} +\setbeamercolor{itemize subsubitem}{parent=subsubitem} + +\setbeamercolor{itemize/enumerate body}{} +\setbeamercolor{itemize/enumerate subbody}{} +\setbeamercolor{itemize/enumerate subsubbody}{} + +\setbeamercolor{description item}{parent=item} + +\setbeamercolor{bibliography item}{parent=item} + +\setbeamercolor{bibliography entry author}{use=structure,fg=structure.fg} +\setbeamercolor{bibliography entry title}{use=normal text,fg=normal text.fg} +\setbeamercolor{bibliography entry location}{use=structure,fg=structure.fg!65!bg} +\setbeamercolor{bibliography entry note}{use=structure,fg=structure.fg!65!bg} + +\setbeamercolor{separation line}{} + +\setbeamercolor{upper separation line head}{parent=separation line} +\setbeamercolor{middle separation line head}{parent=separation line} +\setbeamercolor{lower separation line head}{parent=separation line} + +\setbeamercolor{upper separation line foot}{parent=separation line} +\setbeamercolor{middle separation line foot}{parent=separation line} +\setbeamercolor{lower separation line foot}{parent=separation line} + +\setbeamercolor{abstract}{} +\setbeamercolor{abstract title}{parent=structure} + +\setbeamercolor{verse}{} + +\setbeamercolor{quotation}{} +\setbeamercolor{quote}{parent=quotation} + +\setbeamercolor{page number in head/foot}{fg=fg!50!bg} + +\setbeamercolor{qed symbol}{parent=structure} + +\mode + diff --git a/my_docs/21/lmod_zoom_mtg_2021_11_09/themes/beamerfontthemeTACC16.sty b/my_docs/21/lmod_zoom_mtg_2021_11_09/themes/beamerfontthemeTACC16.sty new file mode 100644 index 000000000..d0fc325cc --- /dev/null +++ b/my_docs/21/lmod_zoom_mtg_2021_11_09/themes/beamerfontthemeTACC16.sty @@ -0,0 +1,21 @@ +% Copyright 2003 by Till Tantau +% +% This program can be redistributed and/or modified under the terms +% of the GNU Public License, version 2. + +\mode +\setbeamerfont{title}{parent=structure,size=\LARGE,series=\bfseries} +\setbeamerfont{author}{parent=structure,size=\large, series=\normalfont} +\setbeamerfont{frametitle}{parent=structure,size=\LARGE,series=\bfseries} +\setbeamerfont{framesubtitle}{parent=frametitle,size=\small} + +%\usefonttheme{professionalfonts} % using non standard fonts for beamer +%\usefonttheme{serif} % default family is serif +%\usepackage{fontspec} +%\setmainfont{Century Gothic} + +%\usepackage{fontspec} +\usepackage{libertine} + +\mode + diff --git a/my_docs/21/lmod_zoom_mtg_2021_11_09/themes/beamerinnerthemeTACC16.sty b/my_docs/21/lmod_zoom_mtg_2021_11_09/themes/beamerinnerthemeTACC16.sty new file mode 100644 index 000000000..f7f454e1d --- /dev/null +++ b/my_docs/21/lmod_zoom_mtg_2021_11_09/themes/beamerinnerthemeTACC16.sty @@ -0,0 +1,11 @@ +\mode + +\setbeamertemplate{itemize item}[triangle] +\setbeamertemplate{itemize subitem}[triangle] +\setbeamertemplate{itemize subsubitem}[triangle] +\setbeamertemplate{section in toc}{$\bullet$\hskip.5em\inserttocsection} +%\setbeamertemplate{subsection in toc}{} +\setbeamertemplate{subsubsection in toc}{} + +\mode + diff --git a/my_docs/21/lmod_zoom_mtg_2021_11_09/themes/beamerouterthemeTACC16-169.sty b/my_docs/21/lmod_zoom_mtg_2021_11_09/themes/beamerouterthemeTACC16-169.sty new file mode 100644 index 000000000..c62f9ed04 --- /dev/null +++ b/my_docs/21/lmod_zoom_mtg_2021_11_09/themes/beamerouterthemeTACC16-169.sty @@ -0,0 +1,247 @@ +% Copyright 2003 by Till Tantau +% +% This program can be redistributed and/or modified under the terms +% of the GNU Public License, version 2. + +\mode + +\usepackage{xcolor} +\usepackage{graphicx} +\usepackage{etoolbox} + +\pgfdeclareimage[width=\paperwidth]{titlebackground}{./figures/master169.png} +\pgfdeclareimage[width=\paperwidth]{background}{./figures/secondary169.png} + +\setbeamertemplate{background canvas}{% + \ifnum\c@framenumber=1% + \begin{picture}(0,0) + \put(-0.15,-250){% + \pgfuseimage{titlebackground} + } + %\put(0,-130.7){% + + %\begin{minipage}[b][45mm][t]{\textwidth}%{226mm} + %\begin{center} + % \usebeamerfont{title}{\MakeTextUppercase{\inserttitle}\par} + %\vspace{2ex} + %\usebeamerfont{author}{\insertauthor} + % \end{center} + %\end{minipage} + %} + \end{picture} + % On title page + \else% + % Other frames background + \begin{picture}(0,0) + \put(-0.15,-255.55){% + \pgfuseimage{background} + } + \end{picture} + \fi% +} + + +\setbeamertemplate{title page}{ +\vspace{40pt} +\begin{center} +\usebeamerfont{title} {\huge \inserttitle}\par +\vspace{4ex} +\usebeamerfont{author} { + \insertauthor +}\par +\vspace{2ex} +\usebeamerfont{institute}{ + \insertinstitute +} \par +\vspace{2ex} +\usebeamerfont{date}{ + \insertdate +} +\end{center} +} + + +\setbeamertemplate{frametitle}[default][center] +\setbeamertemplate{frametitle}{ + \makeatletter + \regexpatchcmd{\insertframetitle} + {(\c{usebeamertemplate}.*)\c{fi}} + {\c{NoCaseChange}\cB\{\1\cE\}\c{fi}} + {}{}% + \makeatother + \vskip1ex + \insertframetitle +} + +% Here we define what appears at the bottom of each slide: the "footline". +\setbeamertemplate{footline}{% + \leavevmode% + + % Horizontal line dividing the rest of the slide from the footer? + % hrule goes all the way across... + % \hrule height.3pt% + % With \rule, you can specify the thickness + % \rule[raise-height]{width}{thickness} + % \hspace{.025\textwidth}\rule{.95\textwidth}{.5pt} + + \hbox{% + \ifnum \thepage>1 + % On the left half of the footer, insert the TACC of + \begin{minipage}{.2\textwidth}% + \hskip .05\textwidth%Give horizontal space else this will set on the left edge of the slide! + % \includegraphics[width=.8\textwidth]{TACC_logo.png} + \end{minipage} + + + \begin{minipage}{\textwidth}% + % \vskip .023\textheight% + \raggedleft% + \setlength{\rightskip}{\textwidth} + \hbox{% + \begin{beamercolorbox}[wd=0.7\textwidth,ht=2.25ex,dp=1ex,left]{author in head/foot}% + \insertshorttitle{} \hskip .01\textwidth | \hskip .01\textwidth \insertdate{} \hskip .01\textwidth | \hskip .01\textwidth \insertframenumber{} + \end{beamercolorbox}% + } + + % + % If we are not on the first page, insert a page number + % For some reason, insertframenumber is buggy when you have fragile + % slides with verbatim environments in them... it tends to skip numbers + % for some reason! On the other hand, the pagenumber is incremented + % for *every* slide, including transition slides... + % \hfill\includegraphics[width=\textwidth]{tacc_ut.png} + \end{minipage}% + \begin{minipage}{.05\textwidth}% + \end{minipage}% + \fi %\thepage>1 + }% + \vskip .023\textheight% + +} + + + + +\ifTACCheadernav + +\usesectionheadtemplate +{\hfill\insertsectionhead} +{\hfill\color{fg!50!bg}\insertsectionhead} + +% Head +\ifbeamer@compress + +% Here we define how the top of the frame looks, the "headline". +\setbeamertemplate{headline} +{% + \ifnum \thepage>1 + \leavevmode% + \begin{beamercolorbox}[wd=.5\paperwidth,ht=2.5ex,dp=1.125ex]{% + section in head/foot}% + \insertsectionnavigationhorizontal{.5\paperwidth}{\hskip0pt plus1filll}{}% + \end{beamercolorbox}% + \begin{beamercolorbox}[wd=.5\paperwidth,ht=2.5ex,dp=1.125ex]{% + subsection in head/foot}% + \insertsubsectionnavigationhorizontal{% + .5\paperwidth}{}{\hskip0pt plus1filll}% + \end{beamercolorbox}% + \fi %\thepage>1 +} + +\else% Not compressed + +\setbeamertemplate{headline} +{% + \ifnum \thepage>1 + \leavevmode% + \@tempdimb=2.4375ex% + \ifnum\beamer@subsectionmax<\beamer@sectionmax% + \multiply\@tempdimb by\beamer@sectionmax% + \else% + \multiply\@tempdimb by\beamer@subsectionmax% + \fi% + \ifdim\@tempdimb>0pt% + \advance\@tempdimb by 1.125ex% + \begin{beamercolorbox}[wd=.5\paperwidth,ht=\@tempdimb]{% + section in head/foot}% + \vbox to\@tempdimb{\vfil\insertsectionnavigation{.5\paperwidth}\vfil}% + \end{beamercolorbox}% + \begin{beamercolorbox}[wd=.5\paperwidth,ht=\@tempdimb]{% + subsection in head/foot}% + \vbox to\@tempdimb{\vfil\insertsubsectionnavigation{.5\paperwidth}\vfil}% + \end{beamercolorbox}% + \fi% + \fi % \thepage>1 +} + +\fi % end if compressed +\fi % TACCheadernav + + +\ifTACCheadertree + +\setbeamertemplate{headline} +{ + \begin{beamercolorbox}[wd=\paperwidth,colsep=1.5pt]{upper separation line head} + \end{beamercolorbox} + % + % Place short title + % + \begin{beamercolorbox}[wd=\paperwidth,ht=2.5ex,dp=1.125ex,% + leftskip=.3cm,rightskip=.3cm plus1fil]{title in head/foot} + \usebeamerfont{title in head/foot}\insertshorttitle + \end{beamercolorbox} + + % + % Place section + % + \begin{beamercolorbox}[wd=\paperwidth,ht=2.5ex,dp=1.125ex,% + leftskip=.3cm,rightskip=.3cm plus1fil]{section in head/foot} + \usebeamerfont{section in head/foot}% + %\ifbeamer@tree@showhooks + \setbox\beamer@tempbox=\hbox{\insertsectionhead}% + \ifdim\wd\beamer@tempbox>1pt% + \hskip2pt\raise1.9pt\hbox{\vrule width0.4pt height1.875ex\vrule width 5pt height0.4pt}% + \hskip1pt% + \fi + \insertsectionhead + \end{beamercolorbox} + +% +% Place subsection +% +\begin{beamercolorbox}[wd=\paperwidth,ht=2.5ex,dp=1.125ex,% + leftskip=.3cm,rightskip=.3cm plus1fil]{subsection in head/foot} + \usebeamerfont{subsection in head/foot}% + %\ifbeamer@tree@showhooks + \setbox\beamer@tempbox=\hbox{\insertsubsectionhead}% + \ifdim\wd\beamer@tempbox>1pt% + \hskip9.4pt\raise1.9pt\hbox{\vrule width0.4pt height1.875ex\vrule width 5pt height0.4pt}% + \hskip1pt% + \fi + \insertsubsectionhead +\end{beamercolorbox} + +% +% Place final separation box +% + \begin{beamercolorbox}[wd=\paperwidth,colsep=1.5pt + ]{lower separation line head} + \end{beamercolorbox} + + % + % Another matching rule which helps to frame the content + % + \hspace{.025\textwidth}\rule{.95\textwidth}{.5pt} +} +\fi % TACCheadertree + + +% The following command suppresses all navigation symbols. This is +% necessary in the TACC theme, since it overlaps where we want the +% logo to be. +\setbeamertemplate{navigation symbols}{} + + +\mode + diff --git a/my_docs/21/lmod_zoom_mtg_2021_11_09/themes/beamerouterthemeTACC16.sty b/my_docs/21/lmod_zoom_mtg_2021_11_09/themes/beamerouterthemeTACC16.sty new file mode 100644 index 000000000..c5b178018 --- /dev/null +++ b/my_docs/21/lmod_zoom_mtg_2021_11_09/themes/beamerouterthemeTACC16.sty @@ -0,0 +1,247 @@ +% Copyright 2003 by Till Tantau +% +% This program can be redistributed and/or modified under the terms +% of the GNU Public License, version 2. + +\mode + +\usepackage{xcolor} +\usepackage{graphicx} +\usepackage{etoolbox} + +\pgfdeclareimage[width=\paperwidth]{titlebackground}{master.jpg} +\pgfdeclareimage[width=\paperwidth]{background}{secondary.jpg} + +\setbeamertemplate{background canvas}{% + \ifnum\c@framenumber=1% + \begin{picture}(0,0) + \put(0,-273){% + \pgfuseimage{titlebackground} + } + %\put(0,-130.7){% + + %\begin{minipage}[b][45mm][t]{\textwidth}%{226mm} + %\begin{center} + % \usebeamerfont{title}{\MakeTextUppercase{\inserttitle}\par} + %\vspace{2ex} + %\usebeamerfont{author}{\insertauthor} + % \end{center} + %\end{minipage} + %} + \end{picture} + % On title page + \else% + % Other frames background + \begin{picture}(0,0) + \put(0,-273){% + \pgfuseimage{background} + } + \end{picture} + \fi% +} + + +\setbeamertemplate{title page}{ +\vspace{40pt} +\begin{center} +\usebeamerfont{title} {\huge \inserttitle}\par +\vspace{4ex} +\usebeamerfont{author} { + \insertauthor +}\par +\vspace{2ex} +\usebeamerfont{institute}{ + \insertinstitute +} \par +\vspace{2ex} +\usebeamerfont{date}{ + \insertdate +} +\end{center} +} + + +\setbeamertemplate{frametitle}[default][center] +\setbeamertemplate{frametitle}{ + \makeatletter + \regexpatchcmd{\insertframetitle} + {(\c{usebeamertemplate}.*)\c{fi}} + {\c{NoCaseChange}\cB\{\1\cE\}\c{fi}} + {}{}% + \makeatother + \vskip1ex + \insertframetitle +} + +% Here we define what appears at the bottom of each slide: the "footline". +\setbeamertemplate{footline}{% + \leavevmode% + + % Horizontal line dividing the rest of the slide from the footer? + % hrule goes all the way across... + % \hrule height.3pt% + % With \rule, you can specify the thickness + % \rule[raise-height]{width}{thickness} + % \hspace{.025\textwidth}\rule{.95\textwidth}{.5pt} + + \hbox{% + \ifnum \thepage>1 + % On the left half of the footer, insert the TACC of + \begin{minipage}{.2\textwidth}% + \hskip .05\textwidth%Give horizontal space else this will set on the left edge of the slide! + % \includegraphics[width=.8\textwidth]{figures/TACC_logo.png} + \end{minipage} + + + \begin{minipage}{\textwidth}% + % \vskip .023\textheight% + \raggedleft% + \setlength{\rightskip}{\textwidth} + \hbox{% + \begin{beamercolorbox}[wd=0.7\textwidth,ht=2.25ex,dp=1ex,left]{author in head/foot}% + \insertshorttitle{} \hskip .01\textwidth | \hskip .01\textwidth \insertdate{} \hskip .01\textwidth | \hskip .01\textwidth \insertframenumber{} + \end{beamercolorbox}% + } + + % + % If we are not on the first page, insert a page number + % For some reason, insertframenumber is buggy when you have fragile + % slides with verbatim environments in them... it tends to skip numbers + % for some reason! On the other hand, the pagenumber is incremented + % for *every* slide, including transition slides... + % \hfill\includegraphics[width=\textwidth]{figures/tacc_ut.png} + \end{minipage}% + \begin{minipage}{.05\textwidth}% + \end{minipage}% + \fi %\thepage>1 + }% + \vskip .023\textheight% + +} + + + + +\ifTACCheadernav + +\usesectionheadtemplate +{\hfill\insertsectionhead} +{\hfill\color{fg!50!bg}\insertsectionhead} + +% Head +\ifbeamer@compress + +% Here we define how the top of the frame looks, the "headline". +\setbeamertemplate{headline} +{% + \ifnum \thepage>1 + \leavevmode% + \begin{beamercolorbox}[wd=.5\paperwidth,ht=2.5ex,dp=1.125ex]{% + section in head/foot}% + \insertsectionnavigationhorizontal{.5\paperwidth}{\hskip0pt plus1filll}{}% + \end{beamercolorbox}% + \begin{beamercolorbox}[wd=.5\paperwidth,ht=2.5ex,dp=1.125ex]{% + subsection in head/foot}% + \insertsubsectionnavigationhorizontal{% + .5\paperwidth}{}{\hskip0pt plus1filll}% + \end{beamercolorbox}% + \fi %\thepage>1 +} + +\else% Not compressed + +\setbeamertemplate{headline} +{% + \ifnum \thepage>1 + \leavevmode% + \@tempdimb=2.4375ex% + \ifnum\beamer@subsectionmax<\beamer@sectionmax% + \multiply\@tempdimb by\beamer@sectionmax% + \else% + \multiply\@tempdimb by\beamer@subsectionmax% + \fi% + \ifdim\@tempdimb>0pt% + \advance\@tempdimb by 1.125ex% + \begin{beamercolorbox}[wd=.5\paperwidth,ht=\@tempdimb]{% + section in head/foot}% + \vbox to\@tempdimb{\vfil\insertsectionnavigation{.5\paperwidth}\vfil}% + \end{beamercolorbox}% + \begin{beamercolorbox}[wd=.5\paperwidth,ht=\@tempdimb]{% + subsection in head/foot}% + \vbox to\@tempdimb{\vfil\insertsubsectionnavigation{.5\paperwidth}\vfil}% + \end{beamercolorbox}% + \fi% + \fi % \thepage>1 +} + +\fi % end if compressed +\fi % TACCheadernav + + +\ifTACCheadertree + +\setbeamertemplate{headline} +{ + \begin{beamercolorbox}[wd=\paperwidth,colsep=1.5pt]{upper separation line head} + \end{beamercolorbox} + % + % Place short title + % + \begin{beamercolorbox}[wd=\paperwidth,ht=2.5ex,dp=1.125ex,% + leftskip=.3cm,rightskip=.3cm plus1fil]{title in head/foot} + \usebeamerfont{title in head/foot}\insertshorttitle + \end{beamercolorbox} + + % + % Place section + % + \begin{beamercolorbox}[wd=\paperwidth,ht=2.5ex,dp=1.125ex,% + leftskip=.3cm,rightskip=.3cm plus1fil]{section in head/foot} + \usebeamerfont{section in head/foot}% + %\ifbeamer@tree@showhooks + \setbox\beamer@tempbox=\hbox{\insertsectionhead}% + \ifdim\wd\beamer@tempbox>1pt% + \hskip2pt\raise1.9pt\hbox{\vrule width0.4pt height1.875ex\vrule width 5pt height0.4pt}% + \hskip1pt% + \fi + \insertsectionhead + \end{beamercolorbox} + +% +% Place subsection +% +\begin{beamercolorbox}[wd=\paperwidth,ht=2.5ex,dp=1.125ex,% + leftskip=.3cm,rightskip=.3cm plus1fil]{subsection in head/foot} + \usebeamerfont{subsection in head/foot}% + %\ifbeamer@tree@showhooks + \setbox\beamer@tempbox=\hbox{\insertsubsectionhead}% + \ifdim\wd\beamer@tempbox>1pt% + \hskip9.4pt\raise1.9pt\hbox{\vrule width0.4pt height1.875ex\vrule width 5pt height0.4pt}% + \hskip1pt% + \fi + \insertsubsectionhead +\end{beamercolorbox} + +% +% Place final separation box +% + \begin{beamercolorbox}[wd=\paperwidth,colsep=1.5pt + ]{lower separation line head} + \end{beamercolorbox} + + % + % Another matching rule which helps to frame the content + % + \hspace{.025\textwidth}\rule{.95\textwidth}{.5pt} +} +\fi % TACCheadertree + + +% The following command suppresses all navigation symbols. This is +% necessary in the TACC theme, since it overlaps where we want the +% logo to be. +\setbeamertemplate{navigation symbols}{} + + +\mode + diff --git a/my_docs/21/lmod_zoom_mtg_2021_11_09/themes/beamerthemeTACC16-169.sty b/my_docs/21/lmod_zoom_mtg_2021_11_09/themes/beamerthemeTACC16-169.sty new file mode 100644 index 000000000..22caf9a05 --- /dev/null +++ b/my_docs/21/lmod_zoom_mtg_2021_11_09/themes/beamerthemeTACC16-169.sty @@ -0,0 +1,38 @@ +%% TACC theme for beamer + +\newif\ifTACCheadernav +\DeclareOption{headernav}{\global\TACCheadernavtrue} + +\newif\ifTACCheadertree +\DeclareOption{headertree}{\global\TACCheadertreetrue} +\ProcessOptions + +\mode + +\makeatletter + \def\beamer@calltheme#1#2#3{% + \def\beamer@themelist{#2} + \@for\beamer@themename:=\beamer@themelist\do + {\usepackage[{#1}]{\beamer@themelocation/#3\beamer@themename}}} + + \def\usefolder#1{ + \def\beamer@themelocation{#1} + } + \def\beamer@themelocation{} + +\usefolder{themes} +\usefonttheme{TACC16} +\useinnertheme{TACC16} +\useoutertheme{TACC16-169} +\usecolortheme{TACC16} + +\mode + + +\newcommand{\event}[1]{% + \makeatletter% + \def\TACC@eventname{#1}% + \makeatother} + +\newcommand{\sectionframe}[1]{\section{#1}\frame{\Large\textbf{#1}}} +\newcommand{\subsectionframe}[1]{\subsection{#1}\frame{\large\textbf{#1}}} diff --git a/my_docs/21/lmod_zoom_mtg_2021_11_09/themes/beamerthemeTACC16.sty b/my_docs/21/lmod_zoom_mtg_2021_11_09/themes/beamerthemeTACC16.sty new file mode 100644 index 000000000..750bdd388 --- /dev/null +++ b/my_docs/21/lmod_zoom_mtg_2021_11_09/themes/beamerthemeTACC16.sty @@ -0,0 +1,26 @@ +%% TACC theme for beamer + +\newif\ifTACCheadernav +\DeclareOption{headernav}{\global\TACCheadernavtrue} + +\newif\ifTACCheadertree +\DeclareOption{headertree}{\global\TACCheadertreetrue} +\ProcessOptions + +\mode + +\usefonttheme{TACC16} +\useinnertheme{TACC16} +\useoutertheme{TACC16} +\usecolortheme{TACC16} + +\mode + + +\newcommand{\event}[1]{% + \makeatletter% + \def\TACC@eventname{#1}% + \makeatother} + +\newcommand{\sectionframe}[1]{\section{#1}\frame{\Large\textbf{#1}}} +\newcommand{\subsectionframe}[1]{\subsection{#1}\frame{\large\textbf{#1}}} diff --git a/my_docs/21/lmod_zoom_mtg_2021_11_09/themes/example.pdf b/my_docs/21/lmod_zoom_mtg_2021_11_09/themes/example.pdf new file mode 100644 index 000000000..add373eee Binary files /dev/null and b/my_docs/21/lmod_zoom_mtg_2021_11_09/themes/example.pdf differ diff --git a/my_docs/21/lmod_zoom_mtg_2021_11_09/themes/license.tex b/my_docs/21/lmod_zoom_mtg_2021_11_09/themes/license.tex new file mode 100644 index 000000000..74ff86759 --- /dev/null +++ b/my_docs/21/lmod_zoom_mtg_2021_11_09/themes/license.tex @@ -0,0 +1,14 @@ + +\begin{frame}{License} +\footnotesize +\textcopyright The University of Texas at Austin, \the\year\\ +\vspace{0.5 cm} +This work is licensed under the Creative Commons Attribution Non-Commercial 3.0 Unported License. To view a copy of this license, +visit http://creativecommons.org/licenses/by-nc/3.0/\\ +\vspace{0.5 cm} +When attributing this work, please use the following text: +"Designing and Administering Large-scale Systems", Texas Advanced Computing Center, \the\year. Available under a Creative Commons Attribution Non-Commercial 3.0 Unported License. +\newline +\newline +\includegraphics[width=1cm]{./figures/cc.png} +\end{frame} \ No newline at end of file diff --git a/my_docs/21/lmod_zoom_mtg_2021_12_07/Lmod-4color@2x.png b/my_docs/21/lmod_zoom_mtg_2021_12_07/Lmod-4color@2x.png deleted file mode 120000 index 47d505dbf..000000000 --- a/my_docs/21/lmod_zoom_mtg_2021_12_07/Lmod-4color@2x.png +++ /dev/null @@ -1 +0,0 @@ -../../beamer/Lmod-4color@2x.png \ No newline at end of file diff --git a/my_docs/21/lmod_zoom_mtg_2021_12_07/Lmod-4color@2x.png b/my_docs/21/lmod_zoom_mtg_2021_12_07/Lmod-4color@2x.png new file mode 100644 index 000000000..4810d74c3 Binary files /dev/null and b/my_docs/21/lmod_zoom_mtg_2021_12_07/Lmod-4color@2x.png differ diff --git a/my_docs/21/lmod_zoom_mtg_2021_12_07/beamercolorthemeTACC.sty b/my_docs/21/lmod_zoom_mtg_2021_12_07/beamercolorthemeTACC.sty deleted file mode 120000 index 8d27e673a..000000000 --- a/my_docs/21/lmod_zoom_mtg_2021_12_07/beamercolorthemeTACC.sty +++ /dev/null @@ -1 +0,0 @@ -../../beamer/beamercolorthemeTACC.sty \ No newline at end of file diff --git a/my_docs/21/lmod_zoom_mtg_2021_12_07/beamercolorthemeTACC.sty b/my_docs/21/lmod_zoom_mtg_2021_12_07/beamercolorthemeTACC.sty new file mode 100755 index 000000000..78beb6a4a --- /dev/null +++ b/my_docs/21/lmod_zoom_mtg_2021_12_07/beamercolorthemeTACC.sty @@ -0,0 +1,323 @@ +% Copyright 2003 by Till Tantau . +% +% This program can be redistributed and/or modified under the terms +% of the GNU Public License, version 2. + +\mode + +% I downloaded a gimp color palette from +% http://maururu.net/2007/latex-beamer-color-palette/ +% Which provides rgb values (I think) for several of the +% default beamer themes. You can open this in gimp by +% opening the Palettes dialog, right-clicking anywhere and choosing +% 'Import Palette'. A color in there called 'default added blue' +% appeared to be approximately what I wanted. It had the triple +% of values 141 145 208. If you double-click on this in the +% palette editor it gives you a bunch of information. You can't +% use these values directly to set a color...it just comes out white. +% I think definecolor is expecting something normalized by 255. Yes! + + +% bluish colors +\definecolor{defaddedblue}{rgb}{0.5529,.5686,.8157} % 141,145,208 +\definecolor{defblockheader}{rgb}{.1921,.2235,.6824} % 49,57,174 +\definecolor{flyaddedblue}{rgb}{.5961,.6118,.8431} % 152,156,215 + +% bluish-greys +\definecolor{beetleaddedblue1}{rgb}{.3333,.4039,.6196} % 85 103 158, dark +\definecolor{beetleaddedblue2}{rgb}{.4510,.5098,.7020} % 115 130 179, medium +\definecolor{beetleaddedblue3}{rgb}{.7059,.7255,.7961} % 180 185 203, light (greyest) + +% very light blue-greys +\definecolor{deflightouter1}{rgb}{.7608,.7647,.9020} % 194 195 230, dark +\definecolor{deflightouter2}{rgb}{.8 ,.8039,.9176} % 204 205 234, medium +\definecolor{deflightouter3}{rgb}{.8392,.8431,.9373} % 214 215 239, light + +% reddish colors +\definecolor{flyalertblockheader}{rgb}{.7373,.1294,.1333} % 188 33 34 +\definecolor{flyaddedred}{rgb}{.8667,.5647,.5647}% 221 144 144 +\definecolor{beaverouterframe}{rgb}{.5529,.0980,.0980}% 141 25 25 + +% greens (green is used for 'examples' in beamer) +\definecolor{defexblock}{rgb}{.9098,.9333,.9020} % 232 238 230, light +\definecolor{defaddedgreen}{rgb}{.5412,.6510,.4706} % 138 166 120, medium +\definecolor{defexblockheader}{rgb}{.1686,.3647,.0392} % 43 93 10, dark + +\definecolor{lightexblock}{rgb}{.9137,.9451,.9020} % 233 241 230, light +\definecolor{lightexblockheader}{rgb}{.8235,.8980,.8} % 210 229 204, medium +\definecolor{lightexblockheadertext}{rgb}{.2431,.5098,.0745} % 62 130 19, dark + + +%%% +% Set the normal text color +%%% +\setbeamercolor{normal text}{fg=black,bg=white} + +%%% +% Set the alerted text color +%%% +% \setbeamercolor{alerted text}{fg=red} +\setbeamercolor{alerted text}{fg=red!50!black} % half black/half red for green bg +% \setbeamercolor{alerted text}{fg=beaverouterframe} +% \setbeamercolor{alerted text}{fg=defblockheader} % doesn't stand out enough + + +% Set the 'example' text +\setbeamercolor{example text}{fg=green!50!black} + +\setbeamercolor{structure}{fg=black} + +\setbeamercolor{background canvas}{parent=normal text} +\setbeamercolor{background}{parent=background canvas} + +\setbeamercolor{palette primary}{use=structure,fg=structure.fg} +\setbeamercolor{palette secondary}{use=structure,fg=structure.fg!75!black} +\setbeamercolor{palette tertiary}{use=structure,fg=structure.fg!50!black} +\setbeamercolor{palette quaternary}{fg=black} + +\setbeamercolor{palette sidebar primary}{use=normal text,fg=normal text.fg} +\setbeamercolor{palette sidebar secondary}{use=structure,fg=structure.fg} +\setbeamercolor{palette sidebar tertiary}{use=normal text,fg=normal text.fg} +\setbeamercolor{palette sidebar quaternary}{use=structure,fg=structure.fg} + +\setbeamercolor{math text}{} +\setbeamercolor{math text inlined}{parent=math text} +\setbeamercolor{math text displayed}{parent=math text} + +\setbeamercolor{normal text in math text}{} + +\setbeamercolor{local structure}{parent=structure} + +\setbeamercolor{titlelike}{parent=structure} + +\setbeamercolor{title}{parent=titlelike} +\setbeamercolor{title in head/foot}{parent=palette quaternary} +\setbeamercolor{title in sidebar}{parent=palette sidebar quaternary} + +\setbeamercolor{subtitle}{parent=title} + +\setbeamercolor{author}{} +\setbeamercolor{author in head/foot}{parent=palette primary} +\setbeamercolor{author in sidebar}{use=palette sidebar tertiary,fg=palette sidebar tertiary.fg} + +\setbeamercolor{institute}{} +\setbeamercolor{institute in head/foot}{parent=palette tertiary} +\setbeamercolor{institute in sidebar}{use=palette sidebar tertiary,fg=palette sidebar tertiary.fg} + +\setbeamercolor{date}{} +\setbeamercolor{date in head/foot}{parent=palette secondary} +\setbeamercolor{date in sidebar}{use=palette sidebar tertiary,fg=palette sidebar tertiary.fg} + +\setbeamercolor{titlegraphic}{} + +\setbeamercolor{part name}{} +\setbeamercolor{part title}{parent=titlelike} + +\setbeamercolor{section in toc}{parent=structure} +\setbeamercolor{section in toc shaded}{parent=section in toc} +\setbeamercolor{section in head/foot}{parent=palette tertiary} +\setbeamercolor{section in sidebar}{parent=palette sidebar secondary} +\setbeamercolor{section in sidebar shaded}{use=section in sidebar,fg=section in sidebar.fg!40!bg} +\setbeamercolor{section number projected}{parent=item projected} + +\setbeamercolor{subsection in toc}{} +\setbeamercolor{subsection in toc shaded}{parent=subsection in toc} +\setbeamercolor{subsection in head/foot}{parent=palette secondary} +\setbeamercolor{subsection in sidebar}{parent=palette sidebar primary} +\setbeamercolor{subsection in sidebar shaded}{use=subsection in sidebar,fg=subsection in sidebar.fg!40!bg} +\setbeamercolor{subsection number projected}{parent={subitem projected}} + +\setbeamercolor{subsubsection in toc}{parent=subsection in toc} +\setbeamercolor{subsubsection in toc shaded}{parent=subsubsection in toc} +\setbeamercolor{subsubsection in head/foot}{parent=subsection in head/foot} +\setbeamercolor{subsubsection in sidebar}{parent=subsection in sidebar} +\setbeamercolor{subsubsection in sidebar shaded}{parent=subsection in sidebar shaded} +\setbeamercolor{subsubsection number projected}{parent=subsubitem projected} + +\setbeamercolor{headline}{} +\setbeamercolor{footline}{} + +\setbeamercolor{sidebar}{} +\setbeamercolor{sidebar left}{parent=sidebar} +\setbeamercolor{sidebar right}{parent=sidebar} + +\setbeamercolor{logo}{parent=palette secondary} + +\setbeamercolor{frametitle}{parent=titlelike} +\setbeamercolor{framesubtitle}{parent=frametitle} + +\setbeamercolor{frametitle right}{parent=frametitle} + +\setbeamercolor{caption}{} +\setbeamercolor{caption name}{parent=structure} + +\setbeamercolor{button}{use=local structure,bg=local structure.fg!50!bg,fg=white} +\setbeamercolor{button border}{use=button,fg=button.bg} +\setbeamercolor{navigation symbols}{use=structure,fg=structure.fg!40!bg} +\setbeamercolor{navigation symbols dimmed}{use=structure,fg=structure.fg!20!bg} +\setbeamercolor{mini frame}{parent=section in head/foot} + +% Color expressions are defined in the xcolor package +% +% Ex: Mixture of 40% green, 60% yellow: green!40!yellow +% +% The complement of any color can be obtained by prepending +% a minus sign: -green!40!yellow +% +% One can also combine up to three colors (in differing proportions) +% using the rgb command. For example, the following command combines +% 3 parts of the first color, with 2 parts of the second, and one part +% "red" +% +%\color{rgb:-green!40!yellow,3;green!40!yellow,2;red,1} +% Unfortunately, I don't think this works as an argument to setbeamercolor... +% "Orange" bg=green!30!yellow!30!red +% close to burnt orange: red!75!green +% lightgray is a color, but gray!25!white looks better +% +% A nice pair of greens +% (dark, a little too dark to be under black text...) -red!75!green!50!blue!25 +% (light) -red!75!green!50!blue!25!gray +% +% Some colors are only available via options to the xcolor package, eg. +% x11names,DarkOliveGreen4 +% svgnames, Chartreuse +% dvipsnames, ForestGreen +% +% but beamer does not seem to have any of these. +% +% The base color names which are always available are: +% black +% blue +% brown +% cyan +% darkgray +% gray +% green +% lightgray +% lime +% magenta +% olive +% orange +% pink +% purple +% red +% teal +% violet +% white +% yellow + +% From the beamer user guide, pg. 167 +% Inner color themes only specify the colors of elements used in inner +% themes. Most noticably, they specify the colors used for blocks. +% ... + +% Example color definition +% beamercolorthemedefault.sty:\definecolor{beamer@blendedblue}{rgb}{0.2,0.2,0.7} +% beamercolorthemedefault.sty:\setbeamercolor{structure}{fg=beamer@blendedblue} + +% The greens +% \setbeamercolor{block body}{bg=-red!75!green!50!blue!25!gray} +% \setbeamercolor{block title}{parent=structure,bg=-red!75!green!50!blue!25,fg=-red!75!green!50!blue!25!gray} + +%%% +% Set the block body and title background/foreground colors +%%% +% \setbeamercolor{block body}{bg=flyaddedblue} +% \setbeamercolor{block title}{bg=defblockheader,fg=flyaddedblue} + +% Purplish blues, too dark overall +% \setbeamercolor{block body}{bg=beetleaddedblue3} +% \setbeamercolor{block title}{bg=beetleaddedblue2,fg=beetleaddedblue3} + +% Very light blue greys +% 1. Not enough contrast +% \setbeamercolor{block body}{bg=deflightouter3} +% \setbeamercolor{block title}{bg=deflightouter2,fg=deflightouter3} + +% 2. Not enough contrast +% \setbeamercolor{block body}{bg=deflightouter3} +% \setbeamercolor{block title}{bg=deflightouter1,fg=deflightouter3} + +% 3. Combination of deflightouter and fly. The block bg is +% lighter than the all-beetle color scheme I previously thought was best. +% Currently I like this one the best +\setbeamercolor{block body}{bg=deflightouter3} +\setbeamercolor{block title}{bg=beetleaddedblue2,fg=deflightouter3} + +% 4. Greens. Looks like a highlighter. I don't really trust greens +% on projectors... It's almost too bright/hurts your eyes. +% \setbeamercolor{block body}{bg=defexblock} +% \setbeamercolor{block title}{bg=defaddedgreen,fg=defexblock} + +% This looks pretty good ... it's similar to the greens we had before +% but should be lighter. The blocks are just a little too "mint" colored +% though... +% \setbeamercolor{block body}{bg=defexblock} +% \setbeamercolor{block title}{bg=defexblockheader,fg=defexblock} + +% Pea Soup! +%\setbeamercolor{block body}{bg=defaddedgreen} +%\setbeamercolor{block title}{bg=defexblockheader,fg=defaddedgreen} + + +% Changing these didn't seem to do anything...I had to change the +% 'alerted text' color instead +\setbeamercolor{block body alerted}{} +\setbeamercolor{block body example}{} +\setbeamercolor{block title alerted}{parent=alerted text} +\setbeamercolor{block title example}{parent=example text} + +\setbeamercolor{item}{parent=local structure} +\setbeamercolor{subitem}{parent=item} +\setbeamercolor{subsubitem}{parent=subitem} + +\setbeamercolor{item projected}{parent=item,use=item,fg=white,bg=item.fg} +\setbeamercolor{subitem projected}{parent=item projected} +\setbeamercolor{subsubitem projected}{parent=subitem projected} + +\setbeamercolor{enumerate item}{parent=item} +\setbeamercolor{enumerate subitem}{parent=subitem} +\setbeamercolor{enumerate subsubitem}{parent=subsubitem} + +\setbeamercolor{itemize item}{parent=item} +\setbeamercolor{itemize subitem}{parent=subitem} +\setbeamercolor{itemize subsubitem}{parent=subsubitem} + +\setbeamercolor{itemize/enumerate body}{} +\setbeamercolor{itemize/enumerate subbody}{} +\setbeamercolor{itemize/enumerate subsubbody}{} + +\setbeamercolor{description item}{parent=item} + +\setbeamercolor{bibliography item}{parent=item} + +\setbeamercolor{bibliography entry author}{use=structure,fg=structure.fg} +\setbeamercolor{bibliography entry title}{use=normal text,fg=normal text.fg} +\setbeamercolor{bibliography entry location}{use=structure,fg=structure.fg!65!bg} +\setbeamercolor{bibliography entry note}{use=structure,fg=structure.fg!65!bg} + +\setbeamercolor{separation line}{} + +\setbeamercolor{upper separation line head}{parent=separation line} +\setbeamercolor{middle separation line head}{parent=separation line} +\setbeamercolor{lower separation line head}{parent=separation line} + +\setbeamercolor{upper separation line foot}{parent=separation line} +\setbeamercolor{middle separation line foot}{parent=separation line} +\setbeamercolor{lower separation line foot}{parent=separation line} + +\setbeamercolor{abstract}{} +\setbeamercolor{abstract title}{parent=structure} + +\setbeamercolor{verse}{} + +\setbeamercolor{quotation}{} +\setbeamercolor{quote}{parent=quotation} + +\setbeamercolor{page number in head/foot}{fg=fg!50!bg} + +\setbeamercolor{qed symbol}{parent=structure} + +\mode + diff --git a/my_docs/21/lmod_zoom_mtg_2021_12_07/beamercolorthemeTACC16.sty b/my_docs/21/lmod_zoom_mtg_2021_12_07/beamercolorthemeTACC16.sty deleted file mode 120000 index 58415801b..000000000 --- a/my_docs/21/lmod_zoom_mtg_2021_12_07/beamercolorthemeTACC16.sty +++ /dev/null @@ -1 +0,0 @@ -../../beamer/beamercolorthemeTACC16.sty \ No newline at end of file diff --git a/my_docs/21/lmod_zoom_mtg_2021_12_07/beamercolorthemeTACC16.sty b/my_docs/21/lmod_zoom_mtg_2021_12_07/beamercolorthemeTACC16.sty new file mode 100755 index 000000000..779dde91f --- /dev/null +++ b/my_docs/21/lmod_zoom_mtg_2021_12_07/beamercolorthemeTACC16.sty @@ -0,0 +1,192 @@ +% Copyright 2003 by Till Tantau . +% +% This program can be redistributed and/or modified under the terms +% of the GNU Public License, version 2. + +\mode + +\usepackage{textcase,regexpatch} + +\setbeamertemplate{blocks}[rounded][shadow=true] + + +\definecolor{TACCred}{RGB}{180,13,29} +\definecolor{TACCorange}{RGB}{210,104,43} +\definecolor{TACCblue}{RGB}{108, 134, 191} +\definecolor{TACCgreen}{RGB}{23,106,70} + +% I downloaded a gimp color palette from +% http://maururu.net/2007/latex-beamer-color-palette/ +% Which provides rgb values (I think) for several of the +% default beamer themes. You can open this in gimp by +% opening the Palettes dialog, right-clicking anywhere and choosing +% 'Import Palette'. A color in there called 'default added blue' +% appeared to be approximately what I wanted. It had the triple +% of values 141 145 208. If you double-click on this in the +% palette editor it gives you a bunch of information. You can't +% use these values directly to set a color...it just comes out white. +% I think definecolor is expecting something normalized by 255. Yes! + + +%%% +% Set the normal text color +%%% +\setbeamercolor{normal text}{fg=black} %,bg=white} +\setbeamercolor{example text}{fg=TACCgreen} +\setbeamercolor{alerted text}{fg=TACCorange} + + +\setbeamercolor{structure}{fg=black} +%\setbeamercolor{structure}{fg=black} + +\setbeamercolor{background canvas}{parent=normal text} +\setbeamercolor{background}{parent=background canvas} + +\setbeamercolor{palette primary}{use=structure,fg=structure.fg} +\setbeamercolor{palette secondary}{use=structure,fg=structure.fg!75!black} +\setbeamercolor{palette tertiary}{use=structure,fg=structure.fg!50!black} +\setbeamercolor{palette quaternary}{fg=black} + +\setbeamercolor{palette sidebar primary}{use=normal text,fg=normal text.fg} +\setbeamercolor{palette sidebar secondary}{use=structure,fg=structure.fg} +\setbeamercolor{palette sidebar tertiary}{use=normal text,fg=normal text.fg} +\setbeamercolor{palette sidebar quaternary}{use=structure,fg=structure.fg} + +\setbeamercolor{math text}{} +\setbeamercolor{math text inlined}{parent=math text} +\setbeamercolor{math text displayed}{parent=math text} + +\setbeamercolor{normal text in math text}{} + +\setbeamercolor{local structure}{parent=structure} + +\setbeamercolor{titlelike}{parent=structure} + +\setbeamercolor{title}{parent=titlelike} +\setbeamercolor{title in head/foot}{parent=palette quaternary} +\setbeamercolor{title in sidebar}{parent=palette sidebar quaternary} + +\setbeamercolor{subtitle}{parent=title} + +\setbeamercolor{author}{} +\setbeamercolor{author in head/foot}{parent=palette primary} +\setbeamercolor{author in sidebar}{use=palette sidebar tertiary,fg=palette sidebar tertiary.fg} + +\setbeamercolor{institute}{} +\setbeamercolor{institute in head/foot}{parent=palette tertiary} +\setbeamercolor{institute in sidebar}{use=palette sidebar tertiary,fg=palette sidebar tertiary.fg} + +\setbeamercolor{date}{} +\setbeamercolor{date in head/foot}{parent=palette secondary} +\setbeamercolor{date in sidebar}{use=palette sidebar tertiary,fg=palette sidebar tertiary.fg} + +\setbeamercolor{titlegraphic}{} + +\setbeamercolor{part name}{} +\setbeamercolor{part title}{parent=titlelike} + +\setbeamercolor{section in toc}{parent=structure} +\setbeamercolor{section in toc shaded}{parent=section in toc} +\setbeamercolor{section in head/foot}{parent=palette tertiary} +\setbeamercolor{section in sidebar}{parent=palette sidebar secondary} +\setbeamercolor{section in sidebar shaded}{use=section in sidebar,fg=section in sidebar.fg!40!bg} +\setbeamercolor{section number projected}{parent=item projected} + +\setbeamercolor{subsection in toc}{} +\setbeamercolor{subsection in toc shaded}{parent=subsection in toc} +\setbeamercolor{subsection in head/foot}{parent=palette secondary} +\setbeamercolor{subsection in sidebar}{parent=palette sidebar primary} +\setbeamercolor{subsection in sidebar shaded}{use=subsection in sidebar,fg=subsection in sidebar.fg!40!bg} +\setbeamercolor{subsection number projected}{parent={subitem projected}} + +\setbeamercolor{subsubsection in toc}{parent=subsection in toc} +\setbeamercolor{subsubsection in toc shaded}{parent=subsubsection in toc} +\setbeamercolor{subsubsection in head/foot}{parent=subsection in head/foot} +\setbeamercolor{subsubsection in sidebar}{parent=subsection in sidebar} +\setbeamercolor{subsubsection in sidebar shaded}{parent=subsection in sidebar shaded} +\setbeamercolor{subsubsection number projected}{parent=subsubitem projected} + +\setbeamercolor{headline}{} +\setbeamercolor{footline}{} + +\setbeamercolor{sidebar}{} +\setbeamercolor{sidebar left}{parent=sidebar} +\setbeamercolor{sidebar right}{parent=sidebar} + +\setbeamercolor{logo}{parent=palette secondary} + +\setbeamercolor{frametitle}{parent=titlelike} +\setbeamercolor{framesubtitle}{parent=frametitle} + +\setbeamercolor{frametitle right}{parent=frametitle} + +\setbeamercolor{caption}{} +\setbeamercolor{caption name}{parent=structure} + +\setbeamercolor{button}{use=local structure,bg=local structure.fg!50!bg,fg=white} +\setbeamercolor{button border}{use=button,fg=button.bg} +\setbeamercolor{navigation symbols}{use=structure,fg=structure.fg!40!bg} +\setbeamercolor{navigation symbols dimmed}{use=structure,fg=structure.fg!20!bg} +\setbeamercolor{mini frame}{parent=section in head/foot} + +\setbeamercolor{block body}{fg=black} +\setbeamercolor{block body alerted}{fg=black} +\setbeamercolor{block body example}{fg=black} + +\setbeamercolor{block title}{bg=TACCblue,fg=white} +\setbeamercolor{block title alerted}{bg=TACCred,fg=white} +\setbeamercolor{block title example}{bg=TACCgreen,fg=white} + +\setbeamercolor{item}{parent=local structure} +\setbeamercolor{subitem}{parent=item} +\setbeamercolor{subsubitem}{parent=subitem} + +\setbeamercolor{item projected}{parent=item,use=item,fg=black,bg=item.fg} +\setbeamercolor{subitem projected}{parent=item projected} +\setbeamercolor{subsubitem projected}{parent=subitem projected} + +\setbeamercolor{enumerate item}{parent=item} +\setbeamercolor{enumerate subitem}{parent=subitem} +\setbeamercolor{enumerate subsubitem}{parent=subsubitem} + +\setbeamercolor{itemize item}{parent=item} +\setbeamercolor{itemize subitem}{parent=subitem} +\setbeamercolor{itemize subsubitem}{parent=subsubitem} + +\setbeamercolor{itemize/enumerate body}{} +\setbeamercolor{itemize/enumerate subbody}{} +\setbeamercolor{itemize/enumerate subsubbody}{} + +\setbeamercolor{description item}{parent=item} + +\setbeamercolor{bibliography item}{parent=item} + +\setbeamercolor{bibliography entry author}{use=structure,fg=structure.fg} +\setbeamercolor{bibliography entry title}{use=normal text,fg=normal text.fg} +\setbeamercolor{bibliography entry location}{use=structure,fg=structure.fg!65!bg} +\setbeamercolor{bibliography entry note}{use=structure,fg=structure.fg!65!bg} + +\setbeamercolor{separation line}{} + +\setbeamercolor{upper separation line head}{parent=separation line} +\setbeamercolor{middle separation line head}{parent=separation line} +\setbeamercolor{lower separation line head}{parent=separation line} + +\setbeamercolor{upper separation line foot}{parent=separation line} +\setbeamercolor{middle separation line foot}{parent=separation line} +\setbeamercolor{lower separation line foot}{parent=separation line} + +\setbeamercolor{abstract}{} +\setbeamercolor{abstract title}{parent=structure} + +\setbeamercolor{verse}{} + +\setbeamercolor{quotation}{} +\setbeamercolor{quote}{parent=quotation} + +\setbeamercolor{page number in head/foot}{fg=fg!50!bg} + +\setbeamercolor{qed symbol}{parent=structure} + +\mode + diff --git a/my_docs/21/lmod_zoom_mtg_2021_12_07/beamerfontthemeTACC.sty b/my_docs/21/lmod_zoom_mtg_2021_12_07/beamerfontthemeTACC.sty deleted file mode 120000 index 78e971fb8..000000000 --- a/my_docs/21/lmod_zoom_mtg_2021_12_07/beamerfontthemeTACC.sty +++ /dev/null @@ -1 +0,0 @@ -../../beamer/beamerfontthemeTACC.sty \ No newline at end of file diff --git a/my_docs/21/lmod_zoom_mtg_2021_12_07/beamerfontthemeTACC.sty b/my_docs/21/lmod_zoom_mtg_2021_12_07/beamerfontthemeTACC.sty new file mode 100755 index 000000000..ef9ce1e5e --- /dev/null +++ b/my_docs/21/lmod_zoom_mtg_2021_12_07/beamerfontthemeTACC.sty @@ -0,0 +1,12 @@ +% Copyright 2003 by Till Tantau +% +% This program can be redistributed and/or modified under the terms +% of the GNU Public License, version 2. + +\mode + +\setbeamerfont{frametitle}{parent=structure,size=\LARGE,series=\bfseries} +\setbeamerfont{framesubtitle}{parent=frametitle,size=\small} + +\mode + \ No newline at end of file diff --git a/my_docs/21/lmod_zoom_mtg_2021_12_07/beamerfontthemeTACC16.sty b/my_docs/21/lmod_zoom_mtg_2021_12_07/beamerfontthemeTACC16.sty deleted file mode 120000 index a1f2fa5f9..000000000 --- a/my_docs/21/lmod_zoom_mtg_2021_12_07/beamerfontthemeTACC16.sty +++ /dev/null @@ -1 +0,0 @@ -../../beamer/beamerfontthemeTACC16.sty \ No newline at end of file diff --git a/my_docs/21/lmod_zoom_mtg_2021_12_07/beamerfontthemeTACC16.sty b/my_docs/21/lmod_zoom_mtg_2021_12_07/beamerfontthemeTACC16.sty new file mode 100755 index 000000000..b65271835 --- /dev/null +++ b/my_docs/21/lmod_zoom_mtg_2021_12_07/beamerfontthemeTACC16.sty @@ -0,0 +1,21 @@ +% Copyright 2003 by Till Tantau +% +% This program can be redistributed and/or modified under the terms +% of the GNU Public License, version 2. + +\mode +\setbeamerfont{title}{parent=structure,size=\LARGE,series=\bfseries} +\setbeamerfont{author}{parent=structure,size=\large, series=\normalfont} +\setbeamerfont{frametitle}{parent=structure,size=\LARGE,series=\bfseries} +\setbeamerfont{framesubtitle}{parent=frametitle,size=\small} + +%\usefonttheme{professionalfonts} % using non standard fonts for beamer +%\usefonttheme{serif} % default family is serif +%\usepackage{fontspec} +%\setmainfont{Century Gothic} + +\usepackage{fontspec} +\usepackage{libertine} + +\mode + diff --git a/my_docs/21/lmod_zoom_mtg_2021_12_07/beamerinnerthemeTACC.sty b/my_docs/21/lmod_zoom_mtg_2021_12_07/beamerinnerthemeTACC.sty deleted file mode 120000 index 8d5ae3921..000000000 --- a/my_docs/21/lmod_zoom_mtg_2021_12_07/beamerinnerthemeTACC.sty +++ /dev/null @@ -1 +0,0 @@ -../../beamer/beamerinnerthemeTACC.sty \ No newline at end of file diff --git a/my_docs/21/lmod_zoom_mtg_2021_12_07/beamerinnerthemeTACC.sty b/my_docs/21/lmod_zoom_mtg_2021_12_07/beamerinnerthemeTACC.sty new file mode 100755 index 000000000..29e2bce81 --- /dev/null +++ b/my_docs/21/lmod_zoom_mtg_2021_12_07/beamerinnerthemeTACC.sty @@ -0,0 +1,11 @@ +\mode + +\setbeamertemplate{itemize item}[circle] +\setbeamertemplate{itemize subitem}{{}--{}} +\setbeamertemplate{itemize subsubitem}[circle] +\setbeamertemplate{section in toc}{$\bullet$\hskip.5em\inserttocsection} +%\setbeamertemplate{subsection in toc}{} +\setbeamertemplate{subsubsection in toc}{} + +\mode + diff --git a/my_docs/21/lmod_zoom_mtg_2021_12_07/beamerinnerthemeTACC16.sty b/my_docs/21/lmod_zoom_mtg_2021_12_07/beamerinnerthemeTACC16.sty deleted file mode 120000 index 5955acc99..000000000 --- a/my_docs/21/lmod_zoom_mtg_2021_12_07/beamerinnerthemeTACC16.sty +++ /dev/null @@ -1 +0,0 @@ -../../beamer/beamerinnerthemeTACC16.sty \ No newline at end of file diff --git a/my_docs/21/lmod_zoom_mtg_2021_12_07/beamerinnerthemeTACC16.sty b/my_docs/21/lmod_zoom_mtg_2021_12_07/beamerinnerthemeTACC16.sty new file mode 100755 index 000000000..f7f454e1d --- /dev/null +++ b/my_docs/21/lmod_zoom_mtg_2021_12_07/beamerinnerthemeTACC16.sty @@ -0,0 +1,11 @@ +\mode + +\setbeamertemplate{itemize item}[triangle] +\setbeamertemplate{itemize subitem}[triangle] +\setbeamertemplate{itemize subsubitem}[triangle] +\setbeamertemplate{section in toc}{$\bullet$\hskip.5em\inserttocsection} +%\setbeamertemplate{subsection in toc}{} +\setbeamertemplate{subsubsection in toc}{} + +\mode + diff --git a/my_docs/21/lmod_zoom_mtg_2021_12_07/beamerouterthemeTACC.sty b/my_docs/21/lmod_zoom_mtg_2021_12_07/beamerouterthemeTACC.sty deleted file mode 120000 index da0a45d33..000000000 --- a/my_docs/21/lmod_zoom_mtg_2021_12_07/beamerouterthemeTACC.sty +++ /dev/null @@ -1 +0,0 @@ -../../beamer/beamerouterthemeTACC.sty \ No newline at end of file diff --git a/my_docs/21/lmod_zoom_mtg_2021_12_07/beamerouterthemeTACC.sty b/my_docs/21/lmod_zoom_mtg_2021_12_07/beamerouterthemeTACC.sty new file mode 100755 index 000000000..038580303 --- /dev/null +++ b/my_docs/21/lmod_zoom_mtg_2021_12_07/beamerouterthemeTACC.sty @@ -0,0 +1,196 @@ +% Copyright 2003 by Till Tantau +% +% This program can be redistributed and/or modified under the terms +% of the GNU Public License, version 2. + +\mode + +\setbeamertemplate{frametitle}[default][center] +\addtobeamertemplate{frametitle}{\vskip 4ex minus 4ex}{} + +% Here we define what appears at the bottom of each slide: the "footline". +\setbeamertemplate{footline}{% + \leavevmode% + + % Horizontal line dividing the rest of the slide from the footer? + % hrule goes all the way across... + % \hrule height.3pt% + % With \rule, you can specify the thickness + % \rule[raise-height]{width}{thickness} + \hspace{.025\textwidth}\rule{.95\textwidth}{.5pt} + + \hbox{% + % On the left half of the footer, insert the TACC logo + \begin{minipage}{.5\textwidth}% + \hskip .033\textwidth%Give horizontal space else this will set on the left edge of the slide! + % TACC logo with custom viewport! + \includegraphics[viewport=1 -1 135 35, clip=true, width=.4\textwidth]{figures/TACC_logo} + \end{minipage} + % + \begin{minipage}{.5\textwidth}% + \vskip .023\textheight% + \raggedleft% + \setlength{\rightskip}{.033\textwidth} + % + % If we are not on the first page, insert a page number + % For some reason, insertframenumber is buggy when you have fragile + % slides with verbatim environments in them... it tends to skip numbers + % for some reason! On the other hand, the pagenumber is incremented + % for *every* slide, including transition slides... + \ifnum \thepage>1 + % \insertshorttitle + \insertframenumber + % \insertframenumber/\inserttotalframenumber + % \insertpagenumber + \else % Do a phantom of whatever you do on other pages, so spacing matches + %$\phantom{\insertshorttitle}$ + $\phantom{\insertframenumber}$ + %$\phantom{\insertframenumber/\inserttotalframenumber}$ + %$\phantom{\insertpagenumber}$ + \fi + \hfill\includegraphics[width=.5\textwidth]{figures/UT_logo}% + \end{minipage}% + }% + \vskip .023\textheight% +} + + + + +\ifTACCheadernav + +\usesectionheadtemplate +{\hfill\insertsectionhead} +{\hfill\color{fg!50!bg}\insertsectionhead} + +% Head +\ifbeamer@compress + +% Here we define how the top of the frame looks, the "headline". +\setbeamertemplate{headline} +{% + \ifnum \thepage>1 + \leavevmode% + \begin{beamercolorbox}[wd=.5\paperwidth,ht=2.5ex,dp=1.125ex]{% + section in head/foot}% + \insertsectionnavigationhorizontal{.5\paperwidth}{\hskip0pt plus1filll}{}% + \end{beamercolorbox}% + \begin{beamercolorbox}[wd=.5\paperwidth,ht=2.5ex,dp=1.125ex]{% + subsection in head/foot}% + \insertsubsectionnavigationhorizontal{% + .5\paperwidth}{}{\hskip0pt plus1filll}% + \end{beamercolorbox}% + \fi %\thepage>1 +} + +\else% Not compressed + +\setbeamertemplate{headline} +{% + \ifnum \thepage>1 + \leavevmode% + \@tempdimb=2.4375ex% + \ifnum\beamer@subsectionmax<\beamer@sectionmax% + \multiply\@tempdimb by\beamer@sectionmax% + \else% + \multiply\@tempdimb by\beamer@subsectionmax% + \fi% + \ifdim\@tempdimb>0pt% + \advance\@tempdimb by 1.125ex% + \begin{beamercolorbox}[wd=.5\paperwidth,ht=\@tempdimb]{% + section in head/foot}% + \vbox to\@tempdimb{\vfil\insertsectionnavigation{.5\paperwidth}\vfil}% + \end{beamercolorbox}% + \begin{beamercolorbox}[wd=.5\paperwidth,ht=\@tempdimb]{% + subsection in head/foot}% + \vbox to\@tempdimb{\vfil\insertsubsectionnavigation{.5\paperwidth}\vfil}% + \end{beamercolorbox}% + \fi% + \fi % \thepage>1 +} + +\fi % end if compressed +\fi % TACCheadernav + + +\ifTACCheadertree + +\setbeamertemplate{headline} +{ + \begin{beamercolorbox}[wd=\paperwidth,colsep=1.5pt + ]{upper separation line head} + \end{beamercolorbox} + % + % Place short title + % + \begin{beamercolorbox}[wd=\paperwidth,ht=2.5ex,dp=1.125ex,% + leftskip=.3cm,rightskip=.3cm plus1fil]{title in head/foot} + \usebeamerfont{title in head/foot}\insertshorttitle + \end{beamercolorbox} + + % + % Place section + % + \begin{beamercolorbox}[wd=\paperwidth,ht=2.5ex,dp=1.125ex,% + leftskip=.3cm,rightskip=.3cm plus1fil]{section in head/foot} + \usebeamerfont{section in head/foot}% + %\ifbeamer@tree@showhooks + \setbox\beamer@tempbox=\hbox{\insertsectionhead}% + \ifdim\wd\beamer@tempbox>1pt% + \hskip2pt\raise1.9pt\hbox{\vrule width0.4pt height1.875ex\vrule width 5pt height0.4pt}% + \hskip1pt% + \fi% \ifdim + %\else% + %\hskip6pt% + %\fi% \ifbeamer + \insertsectionhead + \end{beamercolorbox} + +% +% Place subsection +% +\begin{beamercolorbox}[wd=\paperwidth,ht=2.5ex,dp=1.125ex,% + leftskip=.3cm,rightskip=.3cm plus1fil]{subsection in head/foot} + \usebeamerfont{subsection in head/foot}% + %\ifbeamer@tree@showhooks + \setbox\beamer@tempbox=\hbox{\insertsubsectionhead}% + \ifdim\wd\beamer@tempbox>1pt% + \hskip9.4pt\raise1.9pt\hbox{\vrule width0.4pt height1.875ex\vrule width 5pt height0.4pt}% + \hskip1pt% + \fi% \ifdim + %\else% + %\hskip12pt% + %\fi% \ifbeamer + \insertsubsectionhead +\end{beamercolorbox} + +% +% Place final separation box +% + \begin{beamercolorbox}[wd=\paperwidth,colsep=1.5pt + ]{lower separation line head} + \end{beamercolorbox} + + % + % Another matching rule which helps to frame the content + % + \hspace{.025\textwidth}\rule{.95\textwidth}{.5pt} +} +\fi % TACCheadertree + + +% The following command suppresses all navigation symbols. This is +% necessary in the TACC theme, since it overlaps where we want the +% logo to be. +\setbeamertemplate{navigation symbols}{} + +% Align the navigation symbols vertically (still overlaps our logo!) +%\setbeamertemplate{navigation symbols}[vertical]{} + +% Only places the slide-forward and slide-back symbol, but yes, +% this still overlaps our logo! +%\setbeamertemplate{navigation symbols}[only frame symbol]{} + + +\mode + diff --git a/my_docs/21/lmod_zoom_mtg_2021_12_07/beamerouterthemeTACC16.sty b/my_docs/21/lmod_zoom_mtg_2021_12_07/beamerouterthemeTACC16.sty deleted file mode 120000 index 54bd09537..000000000 --- a/my_docs/21/lmod_zoom_mtg_2021_12_07/beamerouterthemeTACC16.sty +++ /dev/null @@ -1 +0,0 @@ -../../beamer/beamerouterthemeTACC16.sty \ No newline at end of file diff --git a/my_docs/21/lmod_zoom_mtg_2021_12_07/beamerouterthemeTACC16.sty b/my_docs/21/lmod_zoom_mtg_2021_12_07/beamerouterthemeTACC16.sty new file mode 100755 index 000000000..d5e6388c7 --- /dev/null +++ b/my_docs/21/lmod_zoom_mtg_2021_12_07/beamerouterthemeTACC16.sty @@ -0,0 +1,312 @@ +% Antonio Gomez (agomez@tacc.utexas.edu) +% 4-20-17. Added option to put the footer on the right side + + + +\mode + +\usepackage{xcolor} +\usepackage{graphicx} +\usepackage{etoolbox} + + + +% This theme accepts the "rightfooter" option +% When used, it will put the TACC logo at the bottom of the slide on the right side +% By default, it goes to the left + +\xifaspectratio{ + {169} { + \pgfdeclareimage[width=\paperwidth]{titlebackground}{./figures/master169.jpg} + \if@rightfooterOption + \pgfdeclareimage[width=\paperwidth]{background}{./figures/secondary_right169.jpg} +\else + \pgfdeclareimage[width=\paperwidth]{background}{./figures/secondary169.jpg} +\fi +} +}[ +\pgfdeclareimage[width=\paperwidth]{titlebackground}{./figures/master.jpg} + \if@rightfooterOption + \pgfdeclareimage[width=\paperwidth]{background}{./figures/secondary_right.jpg} +\else + \pgfdeclareimage[width=\paperwidth]{background}{./figures/secondary.jpg} +\fi +] + +\setbeamertemplate{background canvas}{% +\xifaspectratio{ + {169} { + \ifnum\c@framenumber=1 % + \begin{picture}(0,0) + \put(-3,-256){% + \pgfuseimage{titlebackground} + } + \end{picture} + \else% + \begin{picture}(0,0) + \put(-3,-260){% + \pgfuseimage{background} + } + \end{picture} + \fi + } + {43} { + \ifnum\c@framenumber=1 % + \begin{picture}(0,0) + \put(-4,-274){% + \pgfuseimage{titlebackground} + } + \end{picture} + \else% + \begin{picture}(0,0) + \put(-4,-274){% + \pgfuseimage{background} + } + \end{picture} + \fi + } +} +} + + + +%\setbeamertemplate{background canvas}{% +% % On title page +% \ifnum\c@framenumber=1 % +% \begin{picture}(0,0) +% \put(0,-253){% +% \pgfuseimage{titlebackground} +% } +% \end{picture} +% +% \else% +% \xifaspectratio{ +% {169} { +% % Other frames background +% \begin{picture}(0,0) +% \put(-4,-260){% +% \pgfuseimage{background} +% } +% \end{picture} +% } +% }[ +% % Other frames background +% \begin{picture}(0,0) +% \put(-4,-274){% +% \pgfuseimage{background} +% } +% \end{picture} +% ] +% \fi% +%} + + +\setbeamertemplate{title page}{ +\vspace{40pt} +\begin{center} +\usebeamerfont{title} {\huge \inserttitle}\par +\vspace{4ex} +\usebeamerfont{author} { + \insertauthor +}\par +\vspace{2ex} +\usebeamerfont{institute}{ + \insertinstitute +} \par +\vspace{2ex} +\usebeamerfont{date}{ + \insertdate +} +\end{center} +} + + +\setbeamertemplate{frametitle}[default][center] +\setbeamertemplate{frametitle}{ + \makeatletter + \regexpatchcmd{\insertframetitle} + {(\c{usebeamertemplate}.*)\c{fi}} + {\c{NoCaseChange}\cB\{\1\cE\}\c{fi}} + {}{}% + \makeatother + \vskip1ex + \insertframetitle +} + +% Here we define what appears at the bottom of each slide: the "footline". +\setbeamertemplate{footline}{% + \leavevmode% + + % Horizontal line dividing the rest of the slide from the footer? + % hrule goes all the way across... + % \hrule height.3pt% + % With \rule, you can specify the thickness + % \rule[raise-height]{width}{thickness} + % \hspace{.025\textwidth}\rule{.95\textwidth}{.5pt} + + \hbox{% + \ifnum \thepage>1 + \if@rightfooterOption + \begin{minipage}{.2\textwidth}% + \hskip .05\textwidth%Give horizontal space else this will set on the left edge of the slide! + \end{minipage} + \else + \begin{minipage}{.4\textwidth}% + \hskip .05\textwidth%Give horizontal space else this will set on the left edge of the slide! + \end{minipage} + \fi + + + \begin{minipage}{\textwidth}% + % \vskip .023\textheight% + \raggedleft% + \setlength{\rightskip}{\textwidth} + \if@rightfooterOption + \hbox{% + \begin{beamercolorbox}[wd=0.7\textwidth,ht=2.25ex,dp=1ex,left]{author in head/foot}% + \insertshorttitle{} \hskip .01\textwidth | \hskip .01\textwidth \insertdate{} \hskip .01\textwidth | \hskip .01\textwidth \insertframenumber{} + \end{beamercolorbox}% + } + \else + \hbox{% + \begin{beamercolorbox}[wd=0.5\textwidth,ht=2.25ex,dp=1ex,left]{author in head/foot}% + \insertshorttitle{} \hskip .01\textwidth | \hskip .01\textwidth \insertdate{} \hskip .01\textwidth | \hskip .01\textwidth \insertframenumber{} + \end{beamercolorbox}% + } + \fi + + \end{minipage}% + \begin{minipage}{.05\textwidth}% + \end{minipage}% + \fi %\thepage>1 + }% + \vskip .023\textheight% + +} + + + + +\ifTACCheadernav + +\usesectionheadtemplate +{\hfill\insertsectionhead} +{\hfill\color{fg!50!bg}\insertsectionhead} + +% Head +\ifbeamer@compress + +% Here we define how the top of the frame looks, the "headline". +\setbeamertemplate{headline} +{% + \ifnum \thepage>1 + \leavevmode% + \begin{beamercolorbox}[wd=.5\paperwidth,ht=2.5ex,dp=1.125ex]{% + section in head/foot}% + \insertsectionnavigationhorizontal{.5\paperwidth}{\hskip0pt plus1filll}{}% + \end{beamercolorbox}% + \begin{beamercolorbox}[wd=.5\paperwidth,ht=2.5ex,dp=1.125ex]{% + subsection in head/foot}% + \insertsubsectionnavigationhorizontal{% + .5\paperwidth}{}{\hskip0pt plus1filll}% + \end{beamercolorbox}% + \fi %\thepage>1 +} + +\else% Not compressed + +\setbeamertemplate{headline} +{% + \ifnum \thepage>1 + \leavevmode% + \@tempdimb=2.4375ex% + \ifnum\beamer@subsectionmax<\beamer@sectionmax% + \multiply\@tempdimb by\beamer@sectionmax% + \else% + \multiply\@tempdimb by\beamer@subsectionmax% + \fi% + \ifdim\@tempdimb>0pt% + \advance\@tempdimb by 1.125ex% + \begin{beamercolorbox}[wd=.5\paperwidth,ht=\@tempdimb]{% + section in head/foot}% + \vbox to\@tempdimb{\vfil\insertsectionnavigation{.5\paperwidth}\vfil}% + \end{beamercolorbox}% + \begin{beamercolorbox}[wd=.5\paperwidth,ht=\@tempdimb]{% + subsection in head/foot}% + \vbox to\@tempdimb{\vfil\insertsubsectionnavigation{.5\paperwidth}\vfil}% + \end{beamercolorbox}% + \fi% + \fi % \thepage>1 +} + +\fi % end if compressed +\fi % TACCheadernav + + +\ifTACCheadertree + +\setbeamertemplate{headline} +{ + \begin{beamercolorbox}[wd=\paperwidth,colsep=1.5pt]{upper separation line head} + \end{beamercolorbox} + % + % Place short title + % + \begin{beamercolorbox}[wd=\paperwidth,ht=2.5ex,dp=1.125ex,% + leftskip=.3cm,rightskip=.3cm plus1fil]{title in head/foot} + \usebeamerfont{title in head/foot}\insertshorttitle + \end{beamercolorbox} + + % + % Place section + % + \begin{beamercolorbox}[wd=\paperwidth,ht=2.5ex,dp=1.125ex,% + leftskip=.3cm,rightskip=.3cm plus1fil]{section in head/foot} + \usebeamerfont{section in head/foot}% + %\ifbeamer@tree@showhooks + \setbox\beamer@tempbox=\hbox{\insertsectionhead}% + \ifdim\wd\beamer@tempbox>1pt% + \hskip2pt\raise1.9pt\hbox{\vrule width0.4pt height1.875ex\vrule width 5pt height0.4pt}% + \hskip1pt% + \fi + \insertsectionhead + \end{beamercolorbox} + +% +% Place subsection +% +\begin{beamercolorbox}[wd=\paperwidth,ht=2.5ex,dp=1.125ex,% + leftskip=.3cm,rightskip=.3cm plus1fil]{subsection in head/foot} + \usebeamerfont{subsection in head/foot}% + %\ifbeamer@tree@showhooks + \setbox\beamer@tempbox=\hbox{\insertsubsectionhead}% + \ifdim\wd\beamer@tempbox>1pt% + \hskip9.4pt\raise1.9pt\hbox{\vrule width0.4pt height1.875ex\vrule width 5pt height0.4pt}% + \hskip1pt% + \fi + \insertsubsectionhead +\end{beamercolorbox} + +% +% Place final separation box +% + \begin{beamercolorbox}[wd=\paperwidth,colsep=1.5pt + ]{lower separation line head} + \end{beamercolorbox} + + % + % Another matching rule which helps to frame the content + % + \hspace{.025\textwidth}\rule{.95\textwidth}{.5pt} +} +\fi % TACCheadertree + + +% The following command suppresses all navigation symbols. This is +% necessary in the TACC theme, since it overlaps where we want the +% logo to be. +\setbeamertemplate{navigation symbols}{} + + +\mode + diff --git a/my_docs/21/lmod_zoom_mtg_2021_12_07/beamerthemeTACC.sty b/my_docs/21/lmod_zoom_mtg_2021_12_07/beamerthemeTACC.sty deleted file mode 120000 index 5c339abd4..000000000 --- a/my_docs/21/lmod_zoom_mtg_2021_12_07/beamerthemeTACC.sty +++ /dev/null @@ -1 +0,0 @@ -../../beamer/beamerthemeTACC.sty \ No newline at end of file diff --git a/my_docs/21/lmod_zoom_mtg_2021_12_07/beamerthemeTACC.sty b/my_docs/21/lmod_zoom_mtg_2021_12_07/beamerthemeTACC.sty new file mode 100755 index 000000000..c6a1b1269 --- /dev/null +++ b/my_docs/21/lmod_zoom_mtg_2021_12_07/beamerthemeTACC.sty @@ -0,0 +1,26 @@ +%% TACC theme for beamer + +\newif\ifTACCheadernav +\DeclareOption{headernav}{\global\TACCheadernavtrue} + +\newif\ifTACCheadertree +\DeclareOption{headertree}{\global\TACCheadertreetrue} +\ProcessOptions + +\mode + +\usefonttheme{TACC} +\usecolortheme{TACC} +\useinnertheme{TACC} +\useoutertheme{TACC} + +\mode + + +\newcommand{\event}[1]{% + \makeatletter% + \def\TACC@eventname{#1}% + \makeatother} + +\newcommand{\sectionframe}[1]{\section{#1}\frame{\Large\textbf{#1}}} +\newcommand{\subsectionframe}[1]{\subsection{#1}\frame{\large\textbf{#1}}} diff --git a/my_docs/21/lmod_zoom_mtg_2021_12_07/beamerthemeTACC16.sty b/my_docs/21/lmod_zoom_mtg_2021_12_07/beamerthemeTACC16.sty deleted file mode 120000 index 7a9d4d296..000000000 --- a/my_docs/21/lmod_zoom_mtg_2021_12_07/beamerthemeTACC16.sty +++ /dev/null @@ -1 +0,0 @@ -../../beamer/beamerthemeTACC16.sty \ No newline at end of file diff --git a/my_docs/21/lmod_zoom_mtg_2021_12_07/beamerthemeTACC16.sty b/my_docs/21/lmod_zoom_mtg_2021_12_07/beamerthemeTACC16.sty new file mode 100755 index 000000000..b522d0207 --- /dev/null +++ b/my_docs/21/lmod_zoom_mtg_2021_12_07/beamerthemeTACC16.sty @@ -0,0 +1,61 @@ +%% TACC theme for beamer + + +\newif\if@rightfooterOption +\@rightfooterOptionfalse +\DeclareOption{rightfooter}{\@rightfooterOptiontrue} +\ProcessOptions + + +\newif\ifTACCheadernav +\DeclareOption{headernav}{\global\TACCheadernavtrue} + +\newif\ifTACCheadertree +\DeclareOption{headertree}{\global\TACCheadertreetrue} +\ProcessOptions + +\usepackage{xparse} +\ExplSyntaxOn +\NewDocumentCommand{\ifaspectratio}{mmm} + { + % Recover the option from those passed to the class + \keys_set:nf { zunbeltz/beameroptions } { \use:c { opt@beamer.cls } } + \str_if_eq:nVTF { #1 } \l_zunbeltz_aspectratio_tl { #2 } { #3 } + } +\NewDocumentCommand{\xifaspectratio}{mO{}} + { + % Recover the option from those passed to the class + \keys_set:nf { zunbeltz/beameroptions } { \use:c { opt@beamer.cls } } + \str_case:VnF \l_zunbeltz_aspectratio_tl { #1 } { #2 } + } +% We need to define only one key, the other are treated as `unknown' +\keys_define:nn { zunbeltz/beameroptions } + { + aspectratio .tl_set:N = \l_zunbeltz_aspectratio_tl, + aspectratio .initial:n = 43, + unknown .code:n = {}, + } + +% Generate the variants we need +\cs_generate_variant:Nn \keys_set:nn { nf } +\cs_generate_variant:Nn \str_if_eq:nnTF { nV } +\cs_generate_variant:Nn \str_case:nnF { V } +\ExplSyntaxOff + +\mode + +\usefonttheme{TACC16} +\useinnertheme{TACC16} +\useoutertheme{TACC16} +\usecolortheme{TACC16} + +\mode + + +\newcommand{\event}[1]{% + \makeatletter% + \def\TACC@eventname{#1}% + \makeatother} + +\newcommand{\sectionframe}[1]{\section{#1}\frame{\Large\textbf{#1}}} +\newcommand{\subsectionframe}[1]{\subsection{#1}\frame{\large\textbf{#1}}} diff --git a/my_docs/21/lmod_zoom_mtg_2021_12_07/figures b/my_docs/21/lmod_zoom_mtg_2021_12_07/figures deleted file mode 120000 index ddafd8974..000000000 --- a/my_docs/21/lmod_zoom_mtg_2021_12_07/figures +++ /dev/null @@ -1 +0,0 @@ -../../beamer/figures \ No newline at end of file diff --git a/my_docs/21/lmod_zoom_mtg_2021_12_07/figures/TACC_logo.pdf b/my_docs/21/lmod_zoom_mtg_2021_12_07/figures/TACC_logo.pdf new file mode 100755 index 000000000..c018a20cb Binary files /dev/null and b/my_docs/21/lmod_zoom_mtg_2021_12_07/figures/TACC_logo.pdf differ diff --git a/my_docs/21/lmod_zoom_mtg_2021_12_07/figures/UT_logo.pdf b/my_docs/21/lmod_zoom_mtg_2021_12_07/figures/UT_logo.pdf new file mode 100755 index 000000000..d5b42e752 Binary files /dev/null and b/my_docs/21/lmod_zoom_mtg_2021_12_07/figures/UT_logo.pdf differ diff --git a/my_docs/21/lmod_zoom_mtg_2021_12_07/figures/cc.png b/my_docs/21/lmod_zoom_mtg_2021_12_07/figures/cc.png new file mode 100644 index 000000000..8a532ff8f Binary files /dev/null and b/my_docs/21/lmod_zoom_mtg_2021_12_07/figures/cc.png differ diff --git a/my_docs/21/lmod_zoom_mtg_2021_12_07/figures/isa.png b/my_docs/21/lmod_zoom_mtg_2021_12_07/figures/isa.png new file mode 100644 index 000000000..f95d985e7 Binary files /dev/null and b/my_docs/21/lmod_zoom_mtg_2021_12_07/figures/isa.png differ diff --git a/my_docs/21/lmod_zoom_mtg_2021_12_07/figures/master.jpg b/my_docs/21/lmod_zoom_mtg_2021_12_07/figures/master.jpg new file mode 100644 index 000000000..f5c56c04a Binary files /dev/null and b/my_docs/21/lmod_zoom_mtg_2021_12_07/figures/master.jpg differ diff --git a/my_docs/21/lmod_zoom_mtg_2021_12_07/figures/master169.jpg b/my_docs/21/lmod_zoom_mtg_2021_12_07/figures/master169.jpg new file mode 100644 index 000000000..b215776eb Binary files /dev/null and b/my_docs/21/lmod_zoom_mtg_2021_12_07/figures/master169.jpg differ diff --git a/my_docs/21/lmod_zoom_mtg_2021_12_07/figures/master169.png b/my_docs/21/lmod_zoom_mtg_2021_12_07/figures/master169.png new file mode 100644 index 000000000..bc5c0ed12 Binary files /dev/null and b/my_docs/21/lmod_zoom_mtg_2021_12_07/figures/master169.png differ diff --git a/my_docs/21/lmod_zoom_mtg_2021_12_07/figures/secondary.jpg b/my_docs/21/lmod_zoom_mtg_2021_12_07/figures/secondary.jpg new file mode 100644 index 000000000..d905a95c9 Binary files /dev/null and b/my_docs/21/lmod_zoom_mtg_2021_12_07/figures/secondary.jpg differ diff --git a/my_docs/21/lmod_zoom_mtg_2021_12_07/figures/secondary169.jpg b/my_docs/21/lmod_zoom_mtg_2021_12_07/figures/secondary169.jpg new file mode 100644 index 000000000..4eb017957 Binary files /dev/null and b/my_docs/21/lmod_zoom_mtg_2021_12_07/figures/secondary169.jpg differ diff --git a/my_docs/21/lmod_zoom_mtg_2021_12_07/figures/secondary169.png b/my_docs/21/lmod_zoom_mtg_2021_12_07/figures/secondary169.png new file mode 100644 index 000000000..cb9060a56 Binary files /dev/null and b/my_docs/21/lmod_zoom_mtg_2021_12_07/figures/secondary169.png differ diff --git a/my_docs/21/lmod_zoom_mtg_2021_12_07/figures/secondary_right.jpg b/my_docs/21/lmod_zoom_mtg_2021_12_07/figures/secondary_right.jpg new file mode 100644 index 000000000..f25f93a58 Binary files /dev/null and b/my_docs/21/lmod_zoom_mtg_2021_12_07/figures/secondary_right.jpg differ diff --git a/my_docs/21/lmod_zoom_mtg_2021_12_07/figures/secondary_right169.jpg b/my_docs/21/lmod_zoom_mtg_2021_12_07/figures/secondary_right169.jpg new file mode 100644 index 000000000..567a1078f Binary files /dev/null and b/my_docs/21/lmod_zoom_mtg_2021_12_07/figures/secondary_right169.jpg differ diff --git a/my_docs/21/lmod_zoom_mtg_2021_12_07/themes b/my_docs/21/lmod_zoom_mtg_2021_12_07/themes deleted file mode 120000 index a98530730..000000000 --- a/my_docs/21/lmod_zoom_mtg_2021_12_07/themes +++ /dev/null @@ -1 +0,0 @@ -../../beamer/themes \ No newline at end of file diff --git a/my_docs/21/lmod_zoom_mtg_2021_12_07/themes/beamercolorthemeTACC16.sty b/my_docs/21/lmod_zoom_mtg_2021_12_07/themes/beamercolorthemeTACC16.sty new file mode 100644 index 000000000..248ae8cb6 --- /dev/null +++ b/my_docs/21/lmod_zoom_mtg_2021_12_07/themes/beamercolorthemeTACC16.sty @@ -0,0 +1,193 @@ +% Copyright 2003 by Till Tantau . +% +% This program can be redistributed and/or modified under the terms +% of the GNU Public License, version 2. + +\mode + +\usepackage{textcase,regexpatch} + +\setbeamertemplate{blocks}[rounded][shadow=true] + + +\definecolor{TACCred}{RGB}{180,13,29} +\definecolor{TACCorange}{RGB}{210,104,43} +\definecolor{TACCblue}{RGB}{21,77,122} +%\definecolor{TACCgreen}{RGB}{30,134,104} +\definecolor{TACCgreen}{RGB}{49,168,51} + +% I downloaded a gimp color palette from +% http://maururu.net/2007/latex-beamer-color-palette/ +% Which provides rgb values (I think) for several of the +% default beamer themes. You can open this in gimp by +% opening the Palettes dialog, right-clicking anywhere and choosing +% 'Import Palette'. A color in there called 'default added blue' +% appeared to be approximately what I wanted. It had the triple +% of values 141 145 208. If you double-click on this in the +% palette editor it gives you a bunch of information. You can't +% use these values directly to set a color...it just comes out white. +% I think definecolor is expecting something normalized by 255. Yes! + + +%%% +% Set the normal text color +%%% +\setbeamercolor{normal text}{fg=black} %,bg=white} +\setbeamercolor{example text}{fg=TACCgreen} +\setbeamercolor{alerted text}{fg=TACCorange} + + +\setbeamercolor{structure}{fg=black} +%\setbeamercolor{structure}{fg=black} + +\setbeamercolor{background canvas}{parent=normal text} +\setbeamercolor{background}{parent=background canvas} + +\setbeamercolor{palette primary}{use=structure,fg=structure.fg} +\setbeamercolor{palette secondary}{use=structure,fg=structure.fg!75!black} +\setbeamercolor{palette tertiary}{use=structure,fg=structure.fg!50!black} +\setbeamercolor{palette quaternary}{fg=black} + +\setbeamercolor{palette sidebar primary}{use=normal text,fg=normal text.fg} +\setbeamercolor{palette sidebar secondary}{use=structure,fg=structure.fg} +\setbeamercolor{palette sidebar tertiary}{use=normal text,fg=normal text.fg} +\setbeamercolor{palette sidebar quaternary}{use=structure,fg=structure.fg} + +\setbeamercolor{math text}{} +\setbeamercolor{math text inlined}{parent=math text} +\setbeamercolor{math text displayed}{parent=math text} + +\setbeamercolor{normal text in math text}{} + +\setbeamercolor{local structure}{parent=structure} + +\setbeamercolor{titlelike}{parent=structure} + +\setbeamercolor{title}{parent=titlelike} +\setbeamercolor{title in head/foot}{parent=palette quaternary} +\setbeamercolor{title in sidebar}{parent=palette sidebar quaternary} + +\setbeamercolor{subtitle}{parent=title} + +\setbeamercolor{author}{} +\setbeamercolor{author in head/foot}{parent=palette primary} +\setbeamercolor{author in sidebar}{use=palette sidebar tertiary,fg=palette sidebar tertiary.fg} + +\setbeamercolor{institute}{} +\setbeamercolor{institute in head/foot}{parent=palette tertiary} +\setbeamercolor{institute in sidebar}{use=palette sidebar tertiary,fg=palette sidebar tertiary.fg} + +\setbeamercolor{date}{} +\setbeamercolor{date in head/foot}{parent=palette secondary} +\setbeamercolor{date in sidebar}{use=palette sidebar tertiary,fg=palette sidebar tertiary.fg} + +\setbeamercolor{titlegraphic}{} + +\setbeamercolor{part name}{} +\setbeamercolor{part title}{parent=titlelike} + +\setbeamercolor{section in toc}{parent=structure} +\setbeamercolor{section in toc shaded}{parent=section in toc} +\setbeamercolor{section in head/foot}{parent=palette tertiary} +\setbeamercolor{section in sidebar}{parent=palette sidebar secondary} +\setbeamercolor{section in sidebar shaded}{use=section in sidebar,fg=section in sidebar.fg!40!bg} +\setbeamercolor{section number projected}{parent=item projected} + +\setbeamercolor{subsection in toc}{} +\setbeamercolor{subsection in toc shaded}{parent=subsection in toc} +\setbeamercolor{subsection in head/foot}{parent=palette secondary} +\setbeamercolor{subsection in sidebar}{parent=palette sidebar primary} +\setbeamercolor{subsection in sidebar shaded}{use=subsection in sidebar,fg=subsection in sidebar.fg!40!bg} +\setbeamercolor{subsection number projected}{parent={subitem projected}} + +\setbeamercolor{subsubsection in toc}{parent=subsection in toc} +\setbeamercolor{subsubsection in toc shaded}{parent=subsubsection in toc} +\setbeamercolor{subsubsection in head/foot}{parent=subsection in head/foot} +\setbeamercolor{subsubsection in sidebar}{parent=subsection in sidebar} +\setbeamercolor{subsubsection in sidebar shaded}{parent=subsection in sidebar shaded} +\setbeamercolor{subsubsection number projected}{parent=subsubitem projected} + +\setbeamercolor{headline}{} +\setbeamercolor{footline}{} + +\setbeamercolor{sidebar}{} +\setbeamercolor{sidebar left}{parent=sidebar} +\setbeamercolor{sidebar right}{parent=sidebar} + +\setbeamercolor{logo}{parent=palette secondary} + +\setbeamercolor{frametitle}{parent=titlelike} +\setbeamercolor{framesubtitle}{parent=frametitle} + +\setbeamercolor{frametitle right}{parent=frametitle} + +\setbeamercolor{caption}{} +\setbeamercolor{caption name}{parent=structure} + +\setbeamercolor{button}{use=local structure,bg=local structure.fg!50!bg,fg=white} +\setbeamercolor{button border}{use=button,fg=button.bg} +\setbeamercolor{navigation symbols}{use=structure,fg=structure.fg!40!bg} +\setbeamercolor{navigation symbols dimmed}{use=structure,fg=structure.fg!20!bg} +\setbeamercolor{mini frame}{parent=section in head/foot} + +\setbeamercolor{block body}{fg=black} +\setbeamercolor{block body alerted}{fg=black} +\setbeamercolor{block body example}{fg=black} + +\setbeamercolor{block title}{bg=TACCblue,fg=white} +\setbeamercolor{block title alerted}{bg=TACCred,fg=white} +\setbeamercolor{block title example}{bg=TACCgreen,fg=white} + +\setbeamercolor{item}{parent=local structure} +\setbeamercolor{subitem}{parent=item} +\setbeamercolor{subsubitem}{parent=subitem} + +\setbeamercolor{item projected}{parent=item,use=item,fg=black,bg=item.fg} +\setbeamercolor{subitem projected}{parent=item projected} +\setbeamercolor{subsubitem projected}{parent=subitem projected} + +\setbeamercolor{enumerate item}{parent=item} +\setbeamercolor{enumerate subitem}{parent=subitem} +\setbeamercolor{enumerate subsubitem}{parent=subsubitem} + +\setbeamercolor{itemize item}{parent=item} +\setbeamercolor{itemize subitem}{parent=subitem} +\setbeamercolor{itemize subsubitem}{parent=subsubitem} + +\setbeamercolor{itemize/enumerate body}{} +\setbeamercolor{itemize/enumerate subbody}{} +\setbeamercolor{itemize/enumerate subsubbody}{} + +\setbeamercolor{description item}{parent=item} + +\setbeamercolor{bibliography item}{parent=item} + +\setbeamercolor{bibliography entry author}{use=structure,fg=structure.fg} +\setbeamercolor{bibliography entry title}{use=normal text,fg=normal text.fg} +\setbeamercolor{bibliography entry location}{use=structure,fg=structure.fg!65!bg} +\setbeamercolor{bibliography entry note}{use=structure,fg=structure.fg!65!bg} + +\setbeamercolor{separation line}{} + +\setbeamercolor{upper separation line head}{parent=separation line} +\setbeamercolor{middle separation line head}{parent=separation line} +\setbeamercolor{lower separation line head}{parent=separation line} + +\setbeamercolor{upper separation line foot}{parent=separation line} +\setbeamercolor{middle separation line foot}{parent=separation line} +\setbeamercolor{lower separation line foot}{parent=separation line} + +\setbeamercolor{abstract}{} +\setbeamercolor{abstract title}{parent=structure} + +\setbeamercolor{verse}{} + +\setbeamercolor{quotation}{} +\setbeamercolor{quote}{parent=quotation} + +\setbeamercolor{page number in head/foot}{fg=fg!50!bg} + +\setbeamercolor{qed symbol}{parent=structure} + +\mode + diff --git a/my_docs/21/lmod_zoom_mtg_2021_12_07/themes/beamerfontthemeTACC16.sty b/my_docs/21/lmod_zoom_mtg_2021_12_07/themes/beamerfontthemeTACC16.sty new file mode 100644 index 000000000..d0fc325cc --- /dev/null +++ b/my_docs/21/lmod_zoom_mtg_2021_12_07/themes/beamerfontthemeTACC16.sty @@ -0,0 +1,21 @@ +% Copyright 2003 by Till Tantau +% +% This program can be redistributed and/or modified under the terms +% of the GNU Public License, version 2. + +\mode +\setbeamerfont{title}{parent=structure,size=\LARGE,series=\bfseries} +\setbeamerfont{author}{parent=structure,size=\large, series=\normalfont} +\setbeamerfont{frametitle}{parent=structure,size=\LARGE,series=\bfseries} +\setbeamerfont{framesubtitle}{parent=frametitle,size=\small} + +%\usefonttheme{professionalfonts} % using non standard fonts for beamer +%\usefonttheme{serif} % default family is serif +%\usepackage{fontspec} +%\setmainfont{Century Gothic} + +%\usepackage{fontspec} +\usepackage{libertine} + +\mode + diff --git a/my_docs/21/lmod_zoom_mtg_2021_12_07/themes/beamerinnerthemeTACC16.sty b/my_docs/21/lmod_zoom_mtg_2021_12_07/themes/beamerinnerthemeTACC16.sty new file mode 100644 index 000000000..f7f454e1d --- /dev/null +++ b/my_docs/21/lmod_zoom_mtg_2021_12_07/themes/beamerinnerthemeTACC16.sty @@ -0,0 +1,11 @@ +\mode + +\setbeamertemplate{itemize item}[triangle] +\setbeamertemplate{itemize subitem}[triangle] +\setbeamertemplate{itemize subsubitem}[triangle] +\setbeamertemplate{section in toc}{$\bullet$\hskip.5em\inserttocsection} +%\setbeamertemplate{subsection in toc}{} +\setbeamertemplate{subsubsection in toc}{} + +\mode + diff --git a/my_docs/21/lmod_zoom_mtg_2021_12_07/themes/beamerouterthemeTACC16-169.sty b/my_docs/21/lmod_zoom_mtg_2021_12_07/themes/beamerouterthemeTACC16-169.sty new file mode 100644 index 000000000..c62f9ed04 --- /dev/null +++ b/my_docs/21/lmod_zoom_mtg_2021_12_07/themes/beamerouterthemeTACC16-169.sty @@ -0,0 +1,247 @@ +% Copyright 2003 by Till Tantau +% +% This program can be redistributed and/or modified under the terms +% of the GNU Public License, version 2. + +\mode + +\usepackage{xcolor} +\usepackage{graphicx} +\usepackage{etoolbox} + +\pgfdeclareimage[width=\paperwidth]{titlebackground}{./figures/master169.png} +\pgfdeclareimage[width=\paperwidth]{background}{./figures/secondary169.png} + +\setbeamertemplate{background canvas}{% + \ifnum\c@framenumber=1% + \begin{picture}(0,0) + \put(-0.15,-250){% + \pgfuseimage{titlebackground} + } + %\put(0,-130.7){% + + %\begin{minipage}[b][45mm][t]{\textwidth}%{226mm} + %\begin{center} + % \usebeamerfont{title}{\MakeTextUppercase{\inserttitle}\par} + %\vspace{2ex} + %\usebeamerfont{author}{\insertauthor} + % \end{center} + %\end{minipage} + %} + \end{picture} + % On title page + \else% + % Other frames background + \begin{picture}(0,0) + \put(-0.15,-255.55){% + \pgfuseimage{background} + } + \end{picture} + \fi% +} + + +\setbeamertemplate{title page}{ +\vspace{40pt} +\begin{center} +\usebeamerfont{title} {\huge \inserttitle}\par +\vspace{4ex} +\usebeamerfont{author} { + \insertauthor +}\par +\vspace{2ex} +\usebeamerfont{institute}{ + \insertinstitute +} \par +\vspace{2ex} +\usebeamerfont{date}{ + \insertdate +} +\end{center} +} + + +\setbeamertemplate{frametitle}[default][center] +\setbeamertemplate{frametitle}{ + \makeatletter + \regexpatchcmd{\insertframetitle} + {(\c{usebeamertemplate}.*)\c{fi}} + {\c{NoCaseChange}\cB\{\1\cE\}\c{fi}} + {}{}% + \makeatother + \vskip1ex + \insertframetitle +} + +% Here we define what appears at the bottom of each slide: the "footline". +\setbeamertemplate{footline}{% + \leavevmode% + + % Horizontal line dividing the rest of the slide from the footer? + % hrule goes all the way across... + % \hrule height.3pt% + % With \rule, you can specify the thickness + % \rule[raise-height]{width}{thickness} + % \hspace{.025\textwidth}\rule{.95\textwidth}{.5pt} + + \hbox{% + \ifnum \thepage>1 + % On the left half of the footer, insert the TACC of + \begin{minipage}{.2\textwidth}% + \hskip .05\textwidth%Give horizontal space else this will set on the left edge of the slide! + % \includegraphics[width=.8\textwidth]{TACC_logo.png} + \end{minipage} + + + \begin{minipage}{\textwidth}% + % \vskip .023\textheight% + \raggedleft% + \setlength{\rightskip}{\textwidth} + \hbox{% + \begin{beamercolorbox}[wd=0.7\textwidth,ht=2.25ex,dp=1ex,left]{author in head/foot}% + \insertshorttitle{} \hskip .01\textwidth | \hskip .01\textwidth \insertdate{} \hskip .01\textwidth | \hskip .01\textwidth \insertframenumber{} + \end{beamercolorbox}% + } + + % + % If we are not on the first page, insert a page number + % For some reason, insertframenumber is buggy when you have fragile + % slides with verbatim environments in them... it tends to skip numbers + % for some reason! On the other hand, the pagenumber is incremented + % for *every* slide, including transition slides... + % \hfill\includegraphics[width=\textwidth]{tacc_ut.png} + \end{minipage}% + \begin{minipage}{.05\textwidth}% + \end{minipage}% + \fi %\thepage>1 + }% + \vskip .023\textheight% + +} + + + + +\ifTACCheadernav + +\usesectionheadtemplate +{\hfill\insertsectionhead} +{\hfill\color{fg!50!bg}\insertsectionhead} + +% Head +\ifbeamer@compress + +% Here we define how the top of the frame looks, the "headline". +\setbeamertemplate{headline} +{% + \ifnum \thepage>1 + \leavevmode% + \begin{beamercolorbox}[wd=.5\paperwidth,ht=2.5ex,dp=1.125ex]{% + section in head/foot}% + \insertsectionnavigationhorizontal{.5\paperwidth}{\hskip0pt plus1filll}{}% + \end{beamercolorbox}% + \begin{beamercolorbox}[wd=.5\paperwidth,ht=2.5ex,dp=1.125ex]{% + subsection in head/foot}% + \insertsubsectionnavigationhorizontal{% + .5\paperwidth}{}{\hskip0pt plus1filll}% + \end{beamercolorbox}% + \fi %\thepage>1 +} + +\else% Not compressed + +\setbeamertemplate{headline} +{% + \ifnum \thepage>1 + \leavevmode% + \@tempdimb=2.4375ex% + \ifnum\beamer@subsectionmax<\beamer@sectionmax% + \multiply\@tempdimb by\beamer@sectionmax% + \else% + \multiply\@tempdimb by\beamer@subsectionmax% + \fi% + \ifdim\@tempdimb>0pt% + \advance\@tempdimb by 1.125ex% + \begin{beamercolorbox}[wd=.5\paperwidth,ht=\@tempdimb]{% + section in head/foot}% + \vbox to\@tempdimb{\vfil\insertsectionnavigation{.5\paperwidth}\vfil}% + \end{beamercolorbox}% + \begin{beamercolorbox}[wd=.5\paperwidth,ht=\@tempdimb]{% + subsection in head/foot}% + \vbox to\@tempdimb{\vfil\insertsubsectionnavigation{.5\paperwidth}\vfil}% + \end{beamercolorbox}% + \fi% + \fi % \thepage>1 +} + +\fi % end if compressed +\fi % TACCheadernav + + +\ifTACCheadertree + +\setbeamertemplate{headline} +{ + \begin{beamercolorbox}[wd=\paperwidth,colsep=1.5pt]{upper separation line head} + \end{beamercolorbox} + % + % Place short title + % + \begin{beamercolorbox}[wd=\paperwidth,ht=2.5ex,dp=1.125ex,% + leftskip=.3cm,rightskip=.3cm plus1fil]{title in head/foot} + \usebeamerfont{title in head/foot}\insertshorttitle + \end{beamercolorbox} + + % + % Place section + % + \begin{beamercolorbox}[wd=\paperwidth,ht=2.5ex,dp=1.125ex,% + leftskip=.3cm,rightskip=.3cm plus1fil]{section in head/foot} + \usebeamerfont{section in head/foot}% + %\ifbeamer@tree@showhooks + \setbox\beamer@tempbox=\hbox{\insertsectionhead}% + \ifdim\wd\beamer@tempbox>1pt% + \hskip2pt\raise1.9pt\hbox{\vrule width0.4pt height1.875ex\vrule width 5pt height0.4pt}% + \hskip1pt% + \fi + \insertsectionhead + \end{beamercolorbox} + +% +% Place subsection +% +\begin{beamercolorbox}[wd=\paperwidth,ht=2.5ex,dp=1.125ex,% + leftskip=.3cm,rightskip=.3cm plus1fil]{subsection in head/foot} + \usebeamerfont{subsection in head/foot}% + %\ifbeamer@tree@showhooks + \setbox\beamer@tempbox=\hbox{\insertsubsectionhead}% + \ifdim\wd\beamer@tempbox>1pt% + \hskip9.4pt\raise1.9pt\hbox{\vrule width0.4pt height1.875ex\vrule width 5pt height0.4pt}% + \hskip1pt% + \fi + \insertsubsectionhead +\end{beamercolorbox} + +% +% Place final separation box +% + \begin{beamercolorbox}[wd=\paperwidth,colsep=1.5pt + ]{lower separation line head} + \end{beamercolorbox} + + % + % Another matching rule which helps to frame the content + % + \hspace{.025\textwidth}\rule{.95\textwidth}{.5pt} +} +\fi % TACCheadertree + + +% The following command suppresses all navigation symbols. This is +% necessary in the TACC theme, since it overlaps where we want the +% logo to be. +\setbeamertemplate{navigation symbols}{} + + +\mode + diff --git a/my_docs/21/lmod_zoom_mtg_2021_12_07/themes/beamerouterthemeTACC16.sty b/my_docs/21/lmod_zoom_mtg_2021_12_07/themes/beamerouterthemeTACC16.sty new file mode 100644 index 000000000..c5b178018 --- /dev/null +++ b/my_docs/21/lmod_zoom_mtg_2021_12_07/themes/beamerouterthemeTACC16.sty @@ -0,0 +1,247 @@ +% Copyright 2003 by Till Tantau +% +% This program can be redistributed and/or modified under the terms +% of the GNU Public License, version 2. + +\mode + +\usepackage{xcolor} +\usepackage{graphicx} +\usepackage{etoolbox} + +\pgfdeclareimage[width=\paperwidth]{titlebackground}{master.jpg} +\pgfdeclareimage[width=\paperwidth]{background}{secondary.jpg} + +\setbeamertemplate{background canvas}{% + \ifnum\c@framenumber=1% + \begin{picture}(0,0) + \put(0,-273){% + \pgfuseimage{titlebackground} + } + %\put(0,-130.7){% + + %\begin{minipage}[b][45mm][t]{\textwidth}%{226mm} + %\begin{center} + % \usebeamerfont{title}{\MakeTextUppercase{\inserttitle}\par} + %\vspace{2ex} + %\usebeamerfont{author}{\insertauthor} + % \end{center} + %\end{minipage} + %} + \end{picture} + % On title page + \else% + % Other frames background + \begin{picture}(0,0) + \put(0,-273){% + \pgfuseimage{background} + } + \end{picture} + \fi% +} + + +\setbeamertemplate{title page}{ +\vspace{40pt} +\begin{center} +\usebeamerfont{title} {\huge \inserttitle}\par +\vspace{4ex} +\usebeamerfont{author} { + \insertauthor +}\par +\vspace{2ex} +\usebeamerfont{institute}{ + \insertinstitute +} \par +\vspace{2ex} +\usebeamerfont{date}{ + \insertdate +} +\end{center} +} + + +\setbeamertemplate{frametitle}[default][center] +\setbeamertemplate{frametitle}{ + \makeatletter + \regexpatchcmd{\insertframetitle} + {(\c{usebeamertemplate}.*)\c{fi}} + {\c{NoCaseChange}\cB\{\1\cE\}\c{fi}} + {}{}% + \makeatother + \vskip1ex + \insertframetitle +} + +% Here we define what appears at the bottom of each slide: the "footline". +\setbeamertemplate{footline}{% + \leavevmode% + + % Horizontal line dividing the rest of the slide from the footer? + % hrule goes all the way across... + % \hrule height.3pt% + % With \rule, you can specify the thickness + % \rule[raise-height]{width}{thickness} + % \hspace{.025\textwidth}\rule{.95\textwidth}{.5pt} + + \hbox{% + \ifnum \thepage>1 + % On the left half of the footer, insert the TACC of + \begin{minipage}{.2\textwidth}% + \hskip .05\textwidth%Give horizontal space else this will set on the left edge of the slide! + % \includegraphics[width=.8\textwidth]{figures/TACC_logo.png} + \end{minipage} + + + \begin{minipage}{\textwidth}% + % \vskip .023\textheight% + \raggedleft% + \setlength{\rightskip}{\textwidth} + \hbox{% + \begin{beamercolorbox}[wd=0.7\textwidth,ht=2.25ex,dp=1ex,left]{author in head/foot}% + \insertshorttitle{} \hskip .01\textwidth | \hskip .01\textwidth \insertdate{} \hskip .01\textwidth | \hskip .01\textwidth \insertframenumber{} + \end{beamercolorbox}% + } + + % + % If we are not on the first page, insert a page number + % For some reason, insertframenumber is buggy when you have fragile + % slides with verbatim environments in them... it tends to skip numbers + % for some reason! On the other hand, the pagenumber is incremented + % for *every* slide, including transition slides... + % \hfill\includegraphics[width=\textwidth]{figures/tacc_ut.png} + \end{minipage}% + \begin{minipage}{.05\textwidth}% + \end{minipage}% + \fi %\thepage>1 + }% + \vskip .023\textheight% + +} + + + + +\ifTACCheadernav + +\usesectionheadtemplate +{\hfill\insertsectionhead} +{\hfill\color{fg!50!bg}\insertsectionhead} + +% Head +\ifbeamer@compress + +% Here we define how the top of the frame looks, the "headline". +\setbeamertemplate{headline} +{% + \ifnum \thepage>1 + \leavevmode% + \begin{beamercolorbox}[wd=.5\paperwidth,ht=2.5ex,dp=1.125ex]{% + section in head/foot}% + \insertsectionnavigationhorizontal{.5\paperwidth}{\hskip0pt plus1filll}{}% + \end{beamercolorbox}% + \begin{beamercolorbox}[wd=.5\paperwidth,ht=2.5ex,dp=1.125ex]{% + subsection in head/foot}% + \insertsubsectionnavigationhorizontal{% + .5\paperwidth}{}{\hskip0pt plus1filll}% + \end{beamercolorbox}% + \fi %\thepage>1 +} + +\else% Not compressed + +\setbeamertemplate{headline} +{% + \ifnum \thepage>1 + \leavevmode% + \@tempdimb=2.4375ex% + \ifnum\beamer@subsectionmax<\beamer@sectionmax% + \multiply\@tempdimb by\beamer@sectionmax% + \else% + \multiply\@tempdimb by\beamer@subsectionmax% + \fi% + \ifdim\@tempdimb>0pt% + \advance\@tempdimb by 1.125ex% + \begin{beamercolorbox}[wd=.5\paperwidth,ht=\@tempdimb]{% + section in head/foot}% + \vbox to\@tempdimb{\vfil\insertsectionnavigation{.5\paperwidth}\vfil}% + \end{beamercolorbox}% + \begin{beamercolorbox}[wd=.5\paperwidth,ht=\@tempdimb]{% + subsection in head/foot}% + \vbox to\@tempdimb{\vfil\insertsubsectionnavigation{.5\paperwidth}\vfil}% + \end{beamercolorbox}% + \fi% + \fi % \thepage>1 +} + +\fi % end if compressed +\fi % TACCheadernav + + +\ifTACCheadertree + +\setbeamertemplate{headline} +{ + \begin{beamercolorbox}[wd=\paperwidth,colsep=1.5pt]{upper separation line head} + \end{beamercolorbox} + % + % Place short title + % + \begin{beamercolorbox}[wd=\paperwidth,ht=2.5ex,dp=1.125ex,% + leftskip=.3cm,rightskip=.3cm plus1fil]{title in head/foot} + \usebeamerfont{title in head/foot}\insertshorttitle + \end{beamercolorbox} + + % + % Place section + % + \begin{beamercolorbox}[wd=\paperwidth,ht=2.5ex,dp=1.125ex,% + leftskip=.3cm,rightskip=.3cm plus1fil]{section in head/foot} + \usebeamerfont{section in head/foot}% + %\ifbeamer@tree@showhooks + \setbox\beamer@tempbox=\hbox{\insertsectionhead}% + \ifdim\wd\beamer@tempbox>1pt% + \hskip2pt\raise1.9pt\hbox{\vrule width0.4pt height1.875ex\vrule width 5pt height0.4pt}% + \hskip1pt% + \fi + \insertsectionhead + \end{beamercolorbox} + +% +% Place subsection +% +\begin{beamercolorbox}[wd=\paperwidth,ht=2.5ex,dp=1.125ex,% + leftskip=.3cm,rightskip=.3cm plus1fil]{subsection in head/foot} + \usebeamerfont{subsection in head/foot}% + %\ifbeamer@tree@showhooks + \setbox\beamer@tempbox=\hbox{\insertsubsectionhead}% + \ifdim\wd\beamer@tempbox>1pt% + \hskip9.4pt\raise1.9pt\hbox{\vrule width0.4pt height1.875ex\vrule width 5pt height0.4pt}% + \hskip1pt% + \fi + \insertsubsectionhead +\end{beamercolorbox} + +% +% Place final separation box +% + \begin{beamercolorbox}[wd=\paperwidth,colsep=1.5pt + ]{lower separation line head} + \end{beamercolorbox} + + % + % Another matching rule which helps to frame the content + % + \hspace{.025\textwidth}\rule{.95\textwidth}{.5pt} +} +\fi % TACCheadertree + + +% The following command suppresses all navigation symbols. This is +% necessary in the TACC theme, since it overlaps where we want the +% logo to be. +\setbeamertemplate{navigation symbols}{} + + +\mode + diff --git a/my_docs/21/lmod_zoom_mtg_2021_12_07/themes/beamerthemeTACC16-169.sty b/my_docs/21/lmod_zoom_mtg_2021_12_07/themes/beamerthemeTACC16-169.sty new file mode 100644 index 000000000..22caf9a05 --- /dev/null +++ b/my_docs/21/lmod_zoom_mtg_2021_12_07/themes/beamerthemeTACC16-169.sty @@ -0,0 +1,38 @@ +%% TACC theme for beamer + +\newif\ifTACCheadernav +\DeclareOption{headernav}{\global\TACCheadernavtrue} + +\newif\ifTACCheadertree +\DeclareOption{headertree}{\global\TACCheadertreetrue} +\ProcessOptions + +\mode + +\makeatletter + \def\beamer@calltheme#1#2#3{% + \def\beamer@themelist{#2} + \@for\beamer@themename:=\beamer@themelist\do + {\usepackage[{#1}]{\beamer@themelocation/#3\beamer@themename}}} + + \def\usefolder#1{ + \def\beamer@themelocation{#1} + } + \def\beamer@themelocation{} + +\usefolder{themes} +\usefonttheme{TACC16} +\useinnertheme{TACC16} +\useoutertheme{TACC16-169} +\usecolortheme{TACC16} + +\mode + + +\newcommand{\event}[1]{% + \makeatletter% + \def\TACC@eventname{#1}% + \makeatother} + +\newcommand{\sectionframe}[1]{\section{#1}\frame{\Large\textbf{#1}}} +\newcommand{\subsectionframe}[1]{\subsection{#1}\frame{\large\textbf{#1}}} diff --git a/my_docs/21/lmod_zoom_mtg_2021_12_07/themes/beamerthemeTACC16.sty b/my_docs/21/lmod_zoom_mtg_2021_12_07/themes/beamerthemeTACC16.sty new file mode 100644 index 000000000..750bdd388 --- /dev/null +++ b/my_docs/21/lmod_zoom_mtg_2021_12_07/themes/beamerthemeTACC16.sty @@ -0,0 +1,26 @@ +%% TACC theme for beamer + +\newif\ifTACCheadernav +\DeclareOption{headernav}{\global\TACCheadernavtrue} + +\newif\ifTACCheadertree +\DeclareOption{headertree}{\global\TACCheadertreetrue} +\ProcessOptions + +\mode + +\usefonttheme{TACC16} +\useinnertheme{TACC16} +\useoutertheme{TACC16} +\usecolortheme{TACC16} + +\mode + + +\newcommand{\event}[1]{% + \makeatletter% + \def\TACC@eventname{#1}% + \makeatother} + +\newcommand{\sectionframe}[1]{\section{#1}\frame{\Large\textbf{#1}}} +\newcommand{\subsectionframe}[1]{\subsection{#1}\frame{\large\textbf{#1}}} diff --git a/my_docs/21/lmod_zoom_mtg_2021_12_07/themes/example.pdf b/my_docs/21/lmod_zoom_mtg_2021_12_07/themes/example.pdf new file mode 100644 index 000000000..add373eee Binary files /dev/null and b/my_docs/21/lmod_zoom_mtg_2021_12_07/themes/example.pdf differ diff --git a/my_docs/21/lmod_zoom_mtg_2021_12_07/themes/license.tex b/my_docs/21/lmod_zoom_mtg_2021_12_07/themes/license.tex new file mode 100644 index 000000000..74ff86759 --- /dev/null +++ b/my_docs/21/lmod_zoom_mtg_2021_12_07/themes/license.tex @@ -0,0 +1,14 @@ + +\begin{frame}{License} +\footnotesize +\textcopyright The University of Texas at Austin, \the\year\\ +\vspace{0.5 cm} +This work is licensed under the Creative Commons Attribution Non-Commercial 3.0 Unported License. To view a copy of this license, +visit http://creativecommons.org/licenses/by-nc/3.0/\\ +\vspace{0.5 cm} +When attributing this work, please use the following text: +"Designing and Administering Large-scale Systems", Texas Advanced Computing Center, \the\year. Available under a Creative Commons Attribution Non-Commercial 3.0 Unported License. +\newline +\newline +\includegraphics[width=1cm]{./figures/cc.png} +\end{frame} \ No newline at end of file diff --git a/my_docs/22/eb_user_22/Lmod-4color@2x.png b/my_docs/22/eb_user_22/Lmod-4color@2x.png deleted file mode 120000 index 47d505dbf..000000000 --- a/my_docs/22/eb_user_22/Lmod-4color@2x.png +++ /dev/null @@ -1 +0,0 @@ -../../beamer/Lmod-4color@2x.png \ No newline at end of file diff --git a/my_docs/22/eb_user_22/Lmod-4color@2x.png b/my_docs/22/eb_user_22/Lmod-4color@2x.png new file mode 100644 index 000000000..4810d74c3 Binary files /dev/null and b/my_docs/22/eb_user_22/Lmod-4color@2x.png differ diff --git a/my_docs/22/eb_user_22/beamercolorthemeTACC.sty b/my_docs/22/eb_user_22/beamercolorthemeTACC.sty deleted file mode 120000 index 8d27e673a..000000000 --- a/my_docs/22/eb_user_22/beamercolorthemeTACC.sty +++ /dev/null @@ -1 +0,0 @@ -../../beamer/beamercolorthemeTACC.sty \ No newline at end of file diff --git a/my_docs/22/eb_user_22/beamercolorthemeTACC.sty b/my_docs/22/eb_user_22/beamercolorthemeTACC.sty new file mode 100755 index 000000000..78beb6a4a --- /dev/null +++ b/my_docs/22/eb_user_22/beamercolorthemeTACC.sty @@ -0,0 +1,323 @@ +% Copyright 2003 by Till Tantau . +% +% This program can be redistributed and/or modified under the terms +% of the GNU Public License, version 2. + +\mode + +% I downloaded a gimp color palette from +% http://maururu.net/2007/latex-beamer-color-palette/ +% Which provides rgb values (I think) for several of the +% default beamer themes. You can open this in gimp by +% opening the Palettes dialog, right-clicking anywhere and choosing +% 'Import Palette'. A color in there called 'default added blue' +% appeared to be approximately what I wanted. It had the triple +% of values 141 145 208. If you double-click on this in the +% palette editor it gives you a bunch of information. You can't +% use these values directly to set a color...it just comes out white. +% I think definecolor is expecting something normalized by 255. Yes! + + +% bluish colors +\definecolor{defaddedblue}{rgb}{0.5529,.5686,.8157} % 141,145,208 +\definecolor{defblockheader}{rgb}{.1921,.2235,.6824} % 49,57,174 +\definecolor{flyaddedblue}{rgb}{.5961,.6118,.8431} % 152,156,215 + +% bluish-greys +\definecolor{beetleaddedblue1}{rgb}{.3333,.4039,.6196} % 85 103 158, dark +\definecolor{beetleaddedblue2}{rgb}{.4510,.5098,.7020} % 115 130 179, medium +\definecolor{beetleaddedblue3}{rgb}{.7059,.7255,.7961} % 180 185 203, light (greyest) + +% very light blue-greys +\definecolor{deflightouter1}{rgb}{.7608,.7647,.9020} % 194 195 230, dark +\definecolor{deflightouter2}{rgb}{.8 ,.8039,.9176} % 204 205 234, medium +\definecolor{deflightouter3}{rgb}{.8392,.8431,.9373} % 214 215 239, light + +% reddish colors +\definecolor{flyalertblockheader}{rgb}{.7373,.1294,.1333} % 188 33 34 +\definecolor{flyaddedred}{rgb}{.8667,.5647,.5647}% 221 144 144 +\definecolor{beaverouterframe}{rgb}{.5529,.0980,.0980}% 141 25 25 + +% greens (green is used for 'examples' in beamer) +\definecolor{defexblock}{rgb}{.9098,.9333,.9020} % 232 238 230, light +\definecolor{defaddedgreen}{rgb}{.5412,.6510,.4706} % 138 166 120, medium +\definecolor{defexblockheader}{rgb}{.1686,.3647,.0392} % 43 93 10, dark + +\definecolor{lightexblock}{rgb}{.9137,.9451,.9020} % 233 241 230, light +\definecolor{lightexblockheader}{rgb}{.8235,.8980,.8} % 210 229 204, medium +\definecolor{lightexblockheadertext}{rgb}{.2431,.5098,.0745} % 62 130 19, dark + + +%%% +% Set the normal text color +%%% +\setbeamercolor{normal text}{fg=black,bg=white} + +%%% +% Set the alerted text color +%%% +% \setbeamercolor{alerted text}{fg=red} +\setbeamercolor{alerted text}{fg=red!50!black} % half black/half red for green bg +% \setbeamercolor{alerted text}{fg=beaverouterframe} +% \setbeamercolor{alerted text}{fg=defblockheader} % doesn't stand out enough + + +% Set the 'example' text +\setbeamercolor{example text}{fg=green!50!black} + +\setbeamercolor{structure}{fg=black} + +\setbeamercolor{background canvas}{parent=normal text} +\setbeamercolor{background}{parent=background canvas} + +\setbeamercolor{palette primary}{use=structure,fg=structure.fg} +\setbeamercolor{palette secondary}{use=structure,fg=structure.fg!75!black} +\setbeamercolor{palette tertiary}{use=structure,fg=structure.fg!50!black} +\setbeamercolor{palette quaternary}{fg=black} + +\setbeamercolor{palette sidebar primary}{use=normal text,fg=normal text.fg} +\setbeamercolor{palette sidebar secondary}{use=structure,fg=structure.fg} +\setbeamercolor{palette sidebar tertiary}{use=normal text,fg=normal text.fg} +\setbeamercolor{palette sidebar quaternary}{use=structure,fg=structure.fg} + +\setbeamercolor{math text}{} +\setbeamercolor{math text inlined}{parent=math text} +\setbeamercolor{math text displayed}{parent=math text} + +\setbeamercolor{normal text in math text}{} + +\setbeamercolor{local structure}{parent=structure} + +\setbeamercolor{titlelike}{parent=structure} + +\setbeamercolor{title}{parent=titlelike} +\setbeamercolor{title in head/foot}{parent=palette quaternary} +\setbeamercolor{title in sidebar}{parent=palette sidebar quaternary} + +\setbeamercolor{subtitle}{parent=title} + +\setbeamercolor{author}{} +\setbeamercolor{author in head/foot}{parent=palette primary} +\setbeamercolor{author in sidebar}{use=palette sidebar tertiary,fg=palette sidebar tertiary.fg} + +\setbeamercolor{institute}{} +\setbeamercolor{institute in head/foot}{parent=palette tertiary} +\setbeamercolor{institute in sidebar}{use=palette sidebar tertiary,fg=palette sidebar tertiary.fg} + +\setbeamercolor{date}{} +\setbeamercolor{date in head/foot}{parent=palette secondary} +\setbeamercolor{date in sidebar}{use=palette sidebar tertiary,fg=palette sidebar tertiary.fg} + +\setbeamercolor{titlegraphic}{} + +\setbeamercolor{part name}{} +\setbeamercolor{part title}{parent=titlelike} + +\setbeamercolor{section in toc}{parent=structure} +\setbeamercolor{section in toc shaded}{parent=section in toc} +\setbeamercolor{section in head/foot}{parent=palette tertiary} +\setbeamercolor{section in sidebar}{parent=palette sidebar secondary} +\setbeamercolor{section in sidebar shaded}{use=section in sidebar,fg=section in sidebar.fg!40!bg} +\setbeamercolor{section number projected}{parent=item projected} + +\setbeamercolor{subsection in toc}{} +\setbeamercolor{subsection in toc shaded}{parent=subsection in toc} +\setbeamercolor{subsection in head/foot}{parent=palette secondary} +\setbeamercolor{subsection in sidebar}{parent=palette sidebar primary} +\setbeamercolor{subsection in sidebar shaded}{use=subsection in sidebar,fg=subsection in sidebar.fg!40!bg} +\setbeamercolor{subsection number projected}{parent={subitem projected}} + +\setbeamercolor{subsubsection in toc}{parent=subsection in toc} +\setbeamercolor{subsubsection in toc shaded}{parent=subsubsection in toc} +\setbeamercolor{subsubsection in head/foot}{parent=subsection in head/foot} +\setbeamercolor{subsubsection in sidebar}{parent=subsection in sidebar} +\setbeamercolor{subsubsection in sidebar shaded}{parent=subsection in sidebar shaded} +\setbeamercolor{subsubsection number projected}{parent=subsubitem projected} + +\setbeamercolor{headline}{} +\setbeamercolor{footline}{} + +\setbeamercolor{sidebar}{} +\setbeamercolor{sidebar left}{parent=sidebar} +\setbeamercolor{sidebar right}{parent=sidebar} + +\setbeamercolor{logo}{parent=palette secondary} + +\setbeamercolor{frametitle}{parent=titlelike} +\setbeamercolor{framesubtitle}{parent=frametitle} + +\setbeamercolor{frametitle right}{parent=frametitle} + +\setbeamercolor{caption}{} +\setbeamercolor{caption name}{parent=structure} + +\setbeamercolor{button}{use=local structure,bg=local structure.fg!50!bg,fg=white} +\setbeamercolor{button border}{use=button,fg=button.bg} +\setbeamercolor{navigation symbols}{use=structure,fg=structure.fg!40!bg} +\setbeamercolor{navigation symbols dimmed}{use=structure,fg=structure.fg!20!bg} +\setbeamercolor{mini frame}{parent=section in head/foot} + +% Color expressions are defined in the xcolor package +% +% Ex: Mixture of 40% green, 60% yellow: green!40!yellow +% +% The complement of any color can be obtained by prepending +% a minus sign: -green!40!yellow +% +% One can also combine up to three colors (in differing proportions) +% using the rgb command. For example, the following command combines +% 3 parts of the first color, with 2 parts of the second, and one part +% "red" +% +%\color{rgb:-green!40!yellow,3;green!40!yellow,2;red,1} +% Unfortunately, I don't think this works as an argument to setbeamercolor... +% "Orange" bg=green!30!yellow!30!red +% close to burnt orange: red!75!green +% lightgray is a color, but gray!25!white looks better +% +% A nice pair of greens +% (dark, a little too dark to be under black text...) -red!75!green!50!blue!25 +% (light) -red!75!green!50!blue!25!gray +% +% Some colors are only available via options to the xcolor package, eg. +% x11names,DarkOliveGreen4 +% svgnames, Chartreuse +% dvipsnames, ForestGreen +% +% but beamer does not seem to have any of these. +% +% The base color names which are always available are: +% black +% blue +% brown +% cyan +% darkgray +% gray +% green +% lightgray +% lime +% magenta +% olive +% orange +% pink +% purple +% red +% teal +% violet +% white +% yellow + +% From the beamer user guide, pg. 167 +% Inner color themes only specify the colors of elements used in inner +% themes. Most noticably, they specify the colors used for blocks. +% ... + +% Example color definition +% beamercolorthemedefault.sty:\definecolor{beamer@blendedblue}{rgb}{0.2,0.2,0.7} +% beamercolorthemedefault.sty:\setbeamercolor{structure}{fg=beamer@blendedblue} + +% The greens +% \setbeamercolor{block body}{bg=-red!75!green!50!blue!25!gray} +% \setbeamercolor{block title}{parent=structure,bg=-red!75!green!50!blue!25,fg=-red!75!green!50!blue!25!gray} + +%%% +% Set the block body and title background/foreground colors +%%% +% \setbeamercolor{block body}{bg=flyaddedblue} +% \setbeamercolor{block title}{bg=defblockheader,fg=flyaddedblue} + +% Purplish blues, too dark overall +% \setbeamercolor{block body}{bg=beetleaddedblue3} +% \setbeamercolor{block title}{bg=beetleaddedblue2,fg=beetleaddedblue3} + +% Very light blue greys +% 1. Not enough contrast +% \setbeamercolor{block body}{bg=deflightouter3} +% \setbeamercolor{block title}{bg=deflightouter2,fg=deflightouter3} + +% 2. Not enough contrast +% \setbeamercolor{block body}{bg=deflightouter3} +% \setbeamercolor{block title}{bg=deflightouter1,fg=deflightouter3} + +% 3. Combination of deflightouter and fly. The block bg is +% lighter than the all-beetle color scheme I previously thought was best. +% Currently I like this one the best +\setbeamercolor{block body}{bg=deflightouter3} +\setbeamercolor{block title}{bg=beetleaddedblue2,fg=deflightouter3} + +% 4. Greens. Looks like a highlighter. I don't really trust greens +% on projectors... It's almost too bright/hurts your eyes. +% \setbeamercolor{block body}{bg=defexblock} +% \setbeamercolor{block title}{bg=defaddedgreen,fg=defexblock} + +% This looks pretty good ... it's similar to the greens we had before +% but should be lighter. The blocks are just a little too "mint" colored +% though... +% \setbeamercolor{block body}{bg=defexblock} +% \setbeamercolor{block title}{bg=defexblockheader,fg=defexblock} + +% Pea Soup! +%\setbeamercolor{block body}{bg=defaddedgreen} +%\setbeamercolor{block title}{bg=defexblockheader,fg=defaddedgreen} + + +% Changing these didn't seem to do anything...I had to change the +% 'alerted text' color instead +\setbeamercolor{block body alerted}{} +\setbeamercolor{block body example}{} +\setbeamercolor{block title alerted}{parent=alerted text} +\setbeamercolor{block title example}{parent=example text} + +\setbeamercolor{item}{parent=local structure} +\setbeamercolor{subitem}{parent=item} +\setbeamercolor{subsubitem}{parent=subitem} + +\setbeamercolor{item projected}{parent=item,use=item,fg=white,bg=item.fg} +\setbeamercolor{subitem projected}{parent=item projected} +\setbeamercolor{subsubitem projected}{parent=subitem projected} + +\setbeamercolor{enumerate item}{parent=item} +\setbeamercolor{enumerate subitem}{parent=subitem} +\setbeamercolor{enumerate subsubitem}{parent=subsubitem} + +\setbeamercolor{itemize item}{parent=item} +\setbeamercolor{itemize subitem}{parent=subitem} +\setbeamercolor{itemize subsubitem}{parent=subsubitem} + +\setbeamercolor{itemize/enumerate body}{} +\setbeamercolor{itemize/enumerate subbody}{} +\setbeamercolor{itemize/enumerate subsubbody}{} + +\setbeamercolor{description item}{parent=item} + +\setbeamercolor{bibliography item}{parent=item} + +\setbeamercolor{bibliography entry author}{use=structure,fg=structure.fg} +\setbeamercolor{bibliography entry title}{use=normal text,fg=normal text.fg} +\setbeamercolor{bibliography entry location}{use=structure,fg=structure.fg!65!bg} +\setbeamercolor{bibliography entry note}{use=structure,fg=structure.fg!65!bg} + +\setbeamercolor{separation line}{} + +\setbeamercolor{upper separation line head}{parent=separation line} +\setbeamercolor{middle separation line head}{parent=separation line} +\setbeamercolor{lower separation line head}{parent=separation line} + +\setbeamercolor{upper separation line foot}{parent=separation line} +\setbeamercolor{middle separation line foot}{parent=separation line} +\setbeamercolor{lower separation line foot}{parent=separation line} + +\setbeamercolor{abstract}{} +\setbeamercolor{abstract title}{parent=structure} + +\setbeamercolor{verse}{} + +\setbeamercolor{quotation}{} +\setbeamercolor{quote}{parent=quotation} + +\setbeamercolor{page number in head/foot}{fg=fg!50!bg} + +\setbeamercolor{qed symbol}{parent=structure} + +\mode + diff --git a/my_docs/22/eb_user_22/beamercolorthemeTACC16.sty b/my_docs/22/eb_user_22/beamercolorthemeTACC16.sty deleted file mode 120000 index 58415801b..000000000 --- a/my_docs/22/eb_user_22/beamercolorthemeTACC16.sty +++ /dev/null @@ -1 +0,0 @@ -../../beamer/beamercolorthemeTACC16.sty \ No newline at end of file diff --git a/my_docs/22/eb_user_22/beamercolorthemeTACC16.sty b/my_docs/22/eb_user_22/beamercolorthemeTACC16.sty new file mode 100755 index 000000000..779dde91f --- /dev/null +++ b/my_docs/22/eb_user_22/beamercolorthemeTACC16.sty @@ -0,0 +1,192 @@ +% Copyright 2003 by Till Tantau . +% +% This program can be redistributed and/or modified under the terms +% of the GNU Public License, version 2. + +\mode + +\usepackage{textcase,regexpatch} + +\setbeamertemplate{blocks}[rounded][shadow=true] + + +\definecolor{TACCred}{RGB}{180,13,29} +\definecolor{TACCorange}{RGB}{210,104,43} +\definecolor{TACCblue}{RGB}{108, 134, 191} +\definecolor{TACCgreen}{RGB}{23,106,70} + +% I downloaded a gimp color palette from +% http://maururu.net/2007/latex-beamer-color-palette/ +% Which provides rgb values (I think) for several of the +% default beamer themes. You can open this in gimp by +% opening the Palettes dialog, right-clicking anywhere and choosing +% 'Import Palette'. A color in there called 'default added blue' +% appeared to be approximately what I wanted. It had the triple +% of values 141 145 208. If you double-click on this in the +% palette editor it gives you a bunch of information. You can't +% use these values directly to set a color...it just comes out white. +% I think definecolor is expecting something normalized by 255. Yes! + + +%%% +% Set the normal text color +%%% +\setbeamercolor{normal text}{fg=black} %,bg=white} +\setbeamercolor{example text}{fg=TACCgreen} +\setbeamercolor{alerted text}{fg=TACCorange} + + +\setbeamercolor{structure}{fg=black} +%\setbeamercolor{structure}{fg=black} + +\setbeamercolor{background canvas}{parent=normal text} +\setbeamercolor{background}{parent=background canvas} + +\setbeamercolor{palette primary}{use=structure,fg=structure.fg} +\setbeamercolor{palette secondary}{use=structure,fg=structure.fg!75!black} +\setbeamercolor{palette tertiary}{use=structure,fg=structure.fg!50!black} +\setbeamercolor{palette quaternary}{fg=black} + +\setbeamercolor{palette sidebar primary}{use=normal text,fg=normal text.fg} +\setbeamercolor{palette sidebar secondary}{use=structure,fg=structure.fg} +\setbeamercolor{palette sidebar tertiary}{use=normal text,fg=normal text.fg} +\setbeamercolor{palette sidebar quaternary}{use=structure,fg=structure.fg} + +\setbeamercolor{math text}{} +\setbeamercolor{math text inlined}{parent=math text} +\setbeamercolor{math text displayed}{parent=math text} + +\setbeamercolor{normal text in math text}{} + +\setbeamercolor{local structure}{parent=structure} + +\setbeamercolor{titlelike}{parent=structure} + +\setbeamercolor{title}{parent=titlelike} +\setbeamercolor{title in head/foot}{parent=palette quaternary} +\setbeamercolor{title in sidebar}{parent=palette sidebar quaternary} + +\setbeamercolor{subtitle}{parent=title} + +\setbeamercolor{author}{} +\setbeamercolor{author in head/foot}{parent=palette primary} +\setbeamercolor{author in sidebar}{use=palette sidebar tertiary,fg=palette sidebar tertiary.fg} + +\setbeamercolor{institute}{} +\setbeamercolor{institute in head/foot}{parent=palette tertiary} +\setbeamercolor{institute in sidebar}{use=palette sidebar tertiary,fg=palette sidebar tertiary.fg} + +\setbeamercolor{date}{} +\setbeamercolor{date in head/foot}{parent=palette secondary} +\setbeamercolor{date in sidebar}{use=palette sidebar tertiary,fg=palette sidebar tertiary.fg} + +\setbeamercolor{titlegraphic}{} + +\setbeamercolor{part name}{} +\setbeamercolor{part title}{parent=titlelike} + +\setbeamercolor{section in toc}{parent=structure} +\setbeamercolor{section in toc shaded}{parent=section in toc} +\setbeamercolor{section in head/foot}{parent=palette tertiary} +\setbeamercolor{section in sidebar}{parent=palette sidebar secondary} +\setbeamercolor{section in sidebar shaded}{use=section in sidebar,fg=section in sidebar.fg!40!bg} +\setbeamercolor{section number projected}{parent=item projected} + +\setbeamercolor{subsection in toc}{} +\setbeamercolor{subsection in toc shaded}{parent=subsection in toc} +\setbeamercolor{subsection in head/foot}{parent=palette secondary} +\setbeamercolor{subsection in sidebar}{parent=palette sidebar primary} +\setbeamercolor{subsection in sidebar shaded}{use=subsection in sidebar,fg=subsection in sidebar.fg!40!bg} +\setbeamercolor{subsection number projected}{parent={subitem projected}} + +\setbeamercolor{subsubsection in toc}{parent=subsection in toc} +\setbeamercolor{subsubsection in toc shaded}{parent=subsubsection in toc} +\setbeamercolor{subsubsection in head/foot}{parent=subsection in head/foot} +\setbeamercolor{subsubsection in sidebar}{parent=subsection in sidebar} +\setbeamercolor{subsubsection in sidebar shaded}{parent=subsection in sidebar shaded} +\setbeamercolor{subsubsection number projected}{parent=subsubitem projected} + +\setbeamercolor{headline}{} +\setbeamercolor{footline}{} + +\setbeamercolor{sidebar}{} +\setbeamercolor{sidebar left}{parent=sidebar} +\setbeamercolor{sidebar right}{parent=sidebar} + +\setbeamercolor{logo}{parent=palette secondary} + +\setbeamercolor{frametitle}{parent=titlelike} +\setbeamercolor{framesubtitle}{parent=frametitle} + +\setbeamercolor{frametitle right}{parent=frametitle} + +\setbeamercolor{caption}{} +\setbeamercolor{caption name}{parent=structure} + +\setbeamercolor{button}{use=local structure,bg=local structure.fg!50!bg,fg=white} +\setbeamercolor{button border}{use=button,fg=button.bg} +\setbeamercolor{navigation symbols}{use=structure,fg=structure.fg!40!bg} +\setbeamercolor{navigation symbols dimmed}{use=structure,fg=structure.fg!20!bg} +\setbeamercolor{mini frame}{parent=section in head/foot} + +\setbeamercolor{block body}{fg=black} +\setbeamercolor{block body alerted}{fg=black} +\setbeamercolor{block body example}{fg=black} + +\setbeamercolor{block title}{bg=TACCblue,fg=white} +\setbeamercolor{block title alerted}{bg=TACCred,fg=white} +\setbeamercolor{block title example}{bg=TACCgreen,fg=white} + +\setbeamercolor{item}{parent=local structure} +\setbeamercolor{subitem}{parent=item} +\setbeamercolor{subsubitem}{parent=subitem} + +\setbeamercolor{item projected}{parent=item,use=item,fg=black,bg=item.fg} +\setbeamercolor{subitem projected}{parent=item projected} +\setbeamercolor{subsubitem projected}{parent=subitem projected} + +\setbeamercolor{enumerate item}{parent=item} +\setbeamercolor{enumerate subitem}{parent=subitem} +\setbeamercolor{enumerate subsubitem}{parent=subsubitem} + +\setbeamercolor{itemize item}{parent=item} +\setbeamercolor{itemize subitem}{parent=subitem} +\setbeamercolor{itemize subsubitem}{parent=subsubitem} + +\setbeamercolor{itemize/enumerate body}{} +\setbeamercolor{itemize/enumerate subbody}{} +\setbeamercolor{itemize/enumerate subsubbody}{} + +\setbeamercolor{description item}{parent=item} + +\setbeamercolor{bibliography item}{parent=item} + +\setbeamercolor{bibliography entry author}{use=structure,fg=structure.fg} +\setbeamercolor{bibliography entry title}{use=normal text,fg=normal text.fg} +\setbeamercolor{bibliography entry location}{use=structure,fg=structure.fg!65!bg} +\setbeamercolor{bibliography entry note}{use=structure,fg=structure.fg!65!bg} + +\setbeamercolor{separation line}{} + +\setbeamercolor{upper separation line head}{parent=separation line} +\setbeamercolor{middle separation line head}{parent=separation line} +\setbeamercolor{lower separation line head}{parent=separation line} + +\setbeamercolor{upper separation line foot}{parent=separation line} +\setbeamercolor{middle separation line foot}{parent=separation line} +\setbeamercolor{lower separation line foot}{parent=separation line} + +\setbeamercolor{abstract}{} +\setbeamercolor{abstract title}{parent=structure} + +\setbeamercolor{verse}{} + +\setbeamercolor{quotation}{} +\setbeamercolor{quote}{parent=quotation} + +\setbeamercolor{page number in head/foot}{fg=fg!50!bg} + +\setbeamercolor{qed symbol}{parent=structure} + +\mode + diff --git a/my_docs/22/eb_user_22/beamerfontthemeTACC.sty b/my_docs/22/eb_user_22/beamerfontthemeTACC.sty deleted file mode 120000 index 78e971fb8..000000000 --- a/my_docs/22/eb_user_22/beamerfontthemeTACC.sty +++ /dev/null @@ -1 +0,0 @@ -../../beamer/beamerfontthemeTACC.sty \ No newline at end of file diff --git a/my_docs/22/eb_user_22/beamerfontthemeTACC.sty b/my_docs/22/eb_user_22/beamerfontthemeTACC.sty new file mode 100755 index 000000000..ef9ce1e5e --- /dev/null +++ b/my_docs/22/eb_user_22/beamerfontthemeTACC.sty @@ -0,0 +1,12 @@ +% Copyright 2003 by Till Tantau +% +% This program can be redistributed and/or modified under the terms +% of the GNU Public License, version 2. + +\mode + +\setbeamerfont{frametitle}{parent=structure,size=\LARGE,series=\bfseries} +\setbeamerfont{framesubtitle}{parent=frametitle,size=\small} + +\mode + \ No newline at end of file diff --git a/my_docs/22/eb_user_22/beamerfontthemeTACC16.sty b/my_docs/22/eb_user_22/beamerfontthemeTACC16.sty deleted file mode 120000 index a1f2fa5f9..000000000 --- a/my_docs/22/eb_user_22/beamerfontthemeTACC16.sty +++ /dev/null @@ -1 +0,0 @@ -../../beamer/beamerfontthemeTACC16.sty \ No newline at end of file diff --git a/my_docs/22/eb_user_22/beamerfontthemeTACC16.sty b/my_docs/22/eb_user_22/beamerfontthemeTACC16.sty new file mode 100755 index 000000000..b65271835 --- /dev/null +++ b/my_docs/22/eb_user_22/beamerfontthemeTACC16.sty @@ -0,0 +1,21 @@ +% Copyright 2003 by Till Tantau +% +% This program can be redistributed and/or modified under the terms +% of the GNU Public License, version 2. + +\mode +\setbeamerfont{title}{parent=structure,size=\LARGE,series=\bfseries} +\setbeamerfont{author}{parent=structure,size=\large, series=\normalfont} +\setbeamerfont{frametitle}{parent=structure,size=\LARGE,series=\bfseries} +\setbeamerfont{framesubtitle}{parent=frametitle,size=\small} + +%\usefonttheme{professionalfonts} % using non standard fonts for beamer +%\usefonttheme{serif} % default family is serif +%\usepackage{fontspec} +%\setmainfont{Century Gothic} + +\usepackage{fontspec} +\usepackage{libertine} + +\mode + diff --git a/my_docs/22/eb_user_22/beamerinnerthemeTACC.sty b/my_docs/22/eb_user_22/beamerinnerthemeTACC.sty deleted file mode 120000 index 8d5ae3921..000000000 --- a/my_docs/22/eb_user_22/beamerinnerthemeTACC.sty +++ /dev/null @@ -1 +0,0 @@ -../../beamer/beamerinnerthemeTACC.sty \ No newline at end of file diff --git a/my_docs/22/eb_user_22/beamerinnerthemeTACC.sty b/my_docs/22/eb_user_22/beamerinnerthemeTACC.sty new file mode 100755 index 000000000..29e2bce81 --- /dev/null +++ b/my_docs/22/eb_user_22/beamerinnerthemeTACC.sty @@ -0,0 +1,11 @@ +\mode + +\setbeamertemplate{itemize item}[circle] +\setbeamertemplate{itemize subitem}{{}--{}} +\setbeamertemplate{itemize subsubitem}[circle] +\setbeamertemplate{section in toc}{$\bullet$\hskip.5em\inserttocsection} +%\setbeamertemplate{subsection in toc}{} +\setbeamertemplate{subsubsection in toc}{} + +\mode + diff --git a/my_docs/22/eb_user_22/beamerinnerthemeTACC16.sty b/my_docs/22/eb_user_22/beamerinnerthemeTACC16.sty deleted file mode 120000 index 5955acc99..000000000 --- a/my_docs/22/eb_user_22/beamerinnerthemeTACC16.sty +++ /dev/null @@ -1 +0,0 @@ -../../beamer/beamerinnerthemeTACC16.sty \ No newline at end of file diff --git a/my_docs/22/eb_user_22/beamerinnerthemeTACC16.sty b/my_docs/22/eb_user_22/beamerinnerthemeTACC16.sty new file mode 100755 index 000000000..f7f454e1d --- /dev/null +++ b/my_docs/22/eb_user_22/beamerinnerthemeTACC16.sty @@ -0,0 +1,11 @@ +\mode + +\setbeamertemplate{itemize item}[triangle] +\setbeamertemplate{itemize subitem}[triangle] +\setbeamertemplate{itemize subsubitem}[triangle] +\setbeamertemplate{section in toc}{$\bullet$\hskip.5em\inserttocsection} +%\setbeamertemplate{subsection in toc}{} +\setbeamertemplate{subsubsection in toc}{} + +\mode + diff --git a/my_docs/22/eb_user_22/beamerouterthemeTACC.sty b/my_docs/22/eb_user_22/beamerouterthemeTACC.sty deleted file mode 120000 index da0a45d33..000000000 --- a/my_docs/22/eb_user_22/beamerouterthemeTACC.sty +++ /dev/null @@ -1 +0,0 @@ -../../beamer/beamerouterthemeTACC.sty \ No newline at end of file diff --git a/my_docs/22/eb_user_22/beamerouterthemeTACC.sty b/my_docs/22/eb_user_22/beamerouterthemeTACC.sty new file mode 100755 index 000000000..038580303 --- /dev/null +++ b/my_docs/22/eb_user_22/beamerouterthemeTACC.sty @@ -0,0 +1,196 @@ +% Copyright 2003 by Till Tantau +% +% This program can be redistributed and/or modified under the terms +% of the GNU Public License, version 2. + +\mode + +\setbeamertemplate{frametitle}[default][center] +\addtobeamertemplate{frametitle}{\vskip 4ex minus 4ex}{} + +% Here we define what appears at the bottom of each slide: the "footline". +\setbeamertemplate{footline}{% + \leavevmode% + + % Horizontal line dividing the rest of the slide from the footer? + % hrule goes all the way across... + % \hrule height.3pt% + % With \rule, you can specify the thickness + % \rule[raise-height]{width}{thickness} + \hspace{.025\textwidth}\rule{.95\textwidth}{.5pt} + + \hbox{% + % On the left half of the footer, insert the TACC logo + \begin{minipage}{.5\textwidth}% + \hskip .033\textwidth%Give horizontal space else this will set on the left edge of the slide! + % TACC logo with custom viewport! + \includegraphics[viewport=1 -1 135 35, clip=true, width=.4\textwidth]{figures/TACC_logo} + \end{minipage} + % + \begin{minipage}{.5\textwidth}% + \vskip .023\textheight% + \raggedleft% + \setlength{\rightskip}{.033\textwidth} + % + % If we are not on the first page, insert a page number + % For some reason, insertframenumber is buggy when you have fragile + % slides with verbatim environments in them... it tends to skip numbers + % for some reason! On the other hand, the pagenumber is incremented + % for *every* slide, including transition slides... + \ifnum \thepage>1 + % \insertshorttitle + \insertframenumber + % \insertframenumber/\inserttotalframenumber + % \insertpagenumber + \else % Do a phantom of whatever you do on other pages, so spacing matches + %$\phantom{\insertshorttitle}$ + $\phantom{\insertframenumber}$ + %$\phantom{\insertframenumber/\inserttotalframenumber}$ + %$\phantom{\insertpagenumber}$ + \fi + \hfill\includegraphics[width=.5\textwidth]{figures/UT_logo}% + \end{minipage}% + }% + \vskip .023\textheight% +} + + + + +\ifTACCheadernav + +\usesectionheadtemplate +{\hfill\insertsectionhead} +{\hfill\color{fg!50!bg}\insertsectionhead} + +% Head +\ifbeamer@compress + +% Here we define how the top of the frame looks, the "headline". +\setbeamertemplate{headline} +{% + \ifnum \thepage>1 + \leavevmode% + \begin{beamercolorbox}[wd=.5\paperwidth,ht=2.5ex,dp=1.125ex]{% + section in head/foot}% + \insertsectionnavigationhorizontal{.5\paperwidth}{\hskip0pt plus1filll}{}% + \end{beamercolorbox}% + \begin{beamercolorbox}[wd=.5\paperwidth,ht=2.5ex,dp=1.125ex]{% + subsection in head/foot}% + \insertsubsectionnavigationhorizontal{% + .5\paperwidth}{}{\hskip0pt plus1filll}% + \end{beamercolorbox}% + \fi %\thepage>1 +} + +\else% Not compressed + +\setbeamertemplate{headline} +{% + \ifnum \thepage>1 + \leavevmode% + \@tempdimb=2.4375ex% + \ifnum\beamer@subsectionmax<\beamer@sectionmax% + \multiply\@tempdimb by\beamer@sectionmax% + \else% + \multiply\@tempdimb by\beamer@subsectionmax% + \fi% + \ifdim\@tempdimb>0pt% + \advance\@tempdimb by 1.125ex% + \begin{beamercolorbox}[wd=.5\paperwidth,ht=\@tempdimb]{% + section in head/foot}% + \vbox to\@tempdimb{\vfil\insertsectionnavigation{.5\paperwidth}\vfil}% + \end{beamercolorbox}% + \begin{beamercolorbox}[wd=.5\paperwidth,ht=\@tempdimb]{% + subsection in head/foot}% + \vbox to\@tempdimb{\vfil\insertsubsectionnavigation{.5\paperwidth}\vfil}% + \end{beamercolorbox}% + \fi% + \fi % \thepage>1 +} + +\fi % end if compressed +\fi % TACCheadernav + + +\ifTACCheadertree + +\setbeamertemplate{headline} +{ + \begin{beamercolorbox}[wd=\paperwidth,colsep=1.5pt + ]{upper separation line head} + \end{beamercolorbox} + % + % Place short title + % + \begin{beamercolorbox}[wd=\paperwidth,ht=2.5ex,dp=1.125ex,% + leftskip=.3cm,rightskip=.3cm plus1fil]{title in head/foot} + \usebeamerfont{title in head/foot}\insertshorttitle + \end{beamercolorbox} + + % + % Place section + % + \begin{beamercolorbox}[wd=\paperwidth,ht=2.5ex,dp=1.125ex,% + leftskip=.3cm,rightskip=.3cm plus1fil]{section in head/foot} + \usebeamerfont{section in head/foot}% + %\ifbeamer@tree@showhooks + \setbox\beamer@tempbox=\hbox{\insertsectionhead}% + \ifdim\wd\beamer@tempbox>1pt% + \hskip2pt\raise1.9pt\hbox{\vrule width0.4pt height1.875ex\vrule width 5pt height0.4pt}% + \hskip1pt% + \fi% \ifdim + %\else% + %\hskip6pt% + %\fi% \ifbeamer + \insertsectionhead + \end{beamercolorbox} + +% +% Place subsection +% +\begin{beamercolorbox}[wd=\paperwidth,ht=2.5ex,dp=1.125ex,% + leftskip=.3cm,rightskip=.3cm plus1fil]{subsection in head/foot} + \usebeamerfont{subsection in head/foot}% + %\ifbeamer@tree@showhooks + \setbox\beamer@tempbox=\hbox{\insertsubsectionhead}% + \ifdim\wd\beamer@tempbox>1pt% + \hskip9.4pt\raise1.9pt\hbox{\vrule width0.4pt height1.875ex\vrule width 5pt height0.4pt}% + \hskip1pt% + \fi% \ifdim + %\else% + %\hskip12pt% + %\fi% \ifbeamer + \insertsubsectionhead +\end{beamercolorbox} + +% +% Place final separation box +% + \begin{beamercolorbox}[wd=\paperwidth,colsep=1.5pt + ]{lower separation line head} + \end{beamercolorbox} + + % + % Another matching rule which helps to frame the content + % + \hspace{.025\textwidth}\rule{.95\textwidth}{.5pt} +} +\fi % TACCheadertree + + +% The following command suppresses all navigation symbols. This is +% necessary in the TACC theme, since it overlaps where we want the +% logo to be. +\setbeamertemplate{navigation symbols}{} + +% Align the navigation symbols vertically (still overlaps our logo!) +%\setbeamertemplate{navigation symbols}[vertical]{} + +% Only places the slide-forward and slide-back symbol, but yes, +% this still overlaps our logo! +%\setbeamertemplate{navigation symbols}[only frame symbol]{} + + +\mode + diff --git a/my_docs/22/eb_user_22/beamerouterthemeTACC16.sty b/my_docs/22/eb_user_22/beamerouterthemeTACC16.sty deleted file mode 120000 index 54bd09537..000000000 --- a/my_docs/22/eb_user_22/beamerouterthemeTACC16.sty +++ /dev/null @@ -1 +0,0 @@ -../../beamer/beamerouterthemeTACC16.sty \ No newline at end of file diff --git a/my_docs/22/eb_user_22/beamerouterthemeTACC16.sty b/my_docs/22/eb_user_22/beamerouterthemeTACC16.sty new file mode 100755 index 000000000..d5e6388c7 --- /dev/null +++ b/my_docs/22/eb_user_22/beamerouterthemeTACC16.sty @@ -0,0 +1,312 @@ +% Antonio Gomez (agomez@tacc.utexas.edu) +% 4-20-17. Added option to put the footer on the right side + + + +\mode + +\usepackage{xcolor} +\usepackage{graphicx} +\usepackage{etoolbox} + + + +% This theme accepts the "rightfooter" option +% When used, it will put the TACC logo at the bottom of the slide on the right side +% By default, it goes to the left + +\xifaspectratio{ + {169} { + \pgfdeclareimage[width=\paperwidth]{titlebackground}{./figures/master169.jpg} + \if@rightfooterOption + \pgfdeclareimage[width=\paperwidth]{background}{./figures/secondary_right169.jpg} +\else + \pgfdeclareimage[width=\paperwidth]{background}{./figures/secondary169.jpg} +\fi +} +}[ +\pgfdeclareimage[width=\paperwidth]{titlebackground}{./figures/master.jpg} + \if@rightfooterOption + \pgfdeclareimage[width=\paperwidth]{background}{./figures/secondary_right.jpg} +\else + \pgfdeclareimage[width=\paperwidth]{background}{./figures/secondary.jpg} +\fi +] + +\setbeamertemplate{background canvas}{% +\xifaspectratio{ + {169} { + \ifnum\c@framenumber=1 % + \begin{picture}(0,0) + \put(-3,-256){% + \pgfuseimage{titlebackground} + } + \end{picture} + \else% + \begin{picture}(0,0) + \put(-3,-260){% + \pgfuseimage{background} + } + \end{picture} + \fi + } + {43} { + \ifnum\c@framenumber=1 % + \begin{picture}(0,0) + \put(-4,-274){% + \pgfuseimage{titlebackground} + } + \end{picture} + \else% + \begin{picture}(0,0) + \put(-4,-274){% + \pgfuseimage{background} + } + \end{picture} + \fi + } +} +} + + + +%\setbeamertemplate{background canvas}{% +% % On title page +% \ifnum\c@framenumber=1 % +% \begin{picture}(0,0) +% \put(0,-253){% +% \pgfuseimage{titlebackground} +% } +% \end{picture} +% +% \else% +% \xifaspectratio{ +% {169} { +% % Other frames background +% \begin{picture}(0,0) +% \put(-4,-260){% +% \pgfuseimage{background} +% } +% \end{picture} +% } +% }[ +% % Other frames background +% \begin{picture}(0,0) +% \put(-4,-274){% +% \pgfuseimage{background} +% } +% \end{picture} +% ] +% \fi% +%} + + +\setbeamertemplate{title page}{ +\vspace{40pt} +\begin{center} +\usebeamerfont{title} {\huge \inserttitle}\par +\vspace{4ex} +\usebeamerfont{author} { + \insertauthor +}\par +\vspace{2ex} +\usebeamerfont{institute}{ + \insertinstitute +} \par +\vspace{2ex} +\usebeamerfont{date}{ + \insertdate +} +\end{center} +} + + +\setbeamertemplate{frametitle}[default][center] +\setbeamertemplate{frametitle}{ + \makeatletter + \regexpatchcmd{\insertframetitle} + {(\c{usebeamertemplate}.*)\c{fi}} + {\c{NoCaseChange}\cB\{\1\cE\}\c{fi}} + {}{}% + \makeatother + \vskip1ex + \insertframetitle +} + +% Here we define what appears at the bottom of each slide: the "footline". +\setbeamertemplate{footline}{% + \leavevmode% + + % Horizontal line dividing the rest of the slide from the footer? + % hrule goes all the way across... + % \hrule height.3pt% + % With \rule, you can specify the thickness + % \rule[raise-height]{width}{thickness} + % \hspace{.025\textwidth}\rule{.95\textwidth}{.5pt} + + \hbox{% + \ifnum \thepage>1 + \if@rightfooterOption + \begin{minipage}{.2\textwidth}% + \hskip .05\textwidth%Give horizontal space else this will set on the left edge of the slide! + \end{minipage} + \else + \begin{minipage}{.4\textwidth}% + \hskip .05\textwidth%Give horizontal space else this will set on the left edge of the slide! + \end{minipage} + \fi + + + \begin{minipage}{\textwidth}% + % \vskip .023\textheight% + \raggedleft% + \setlength{\rightskip}{\textwidth} + \if@rightfooterOption + \hbox{% + \begin{beamercolorbox}[wd=0.7\textwidth,ht=2.25ex,dp=1ex,left]{author in head/foot}% + \insertshorttitle{} \hskip .01\textwidth | \hskip .01\textwidth \insertdate{} \hskip .01\textwidth | \hskip .01\textwidth \insertframenumber{} + \end{beamercolorbox}% + } + \else + \hbox{% + \begin{beamercolorbox}[wd=0.5\textwidth,ht=2.25ex,dp=1ex,left]{author in head/foot}% + \insertshorttitle{} \hskip .01\textwidth | \hskip .01\textwidth \insertdate{} \hskip .01\textwidth | \hskip .01\textwidth \insertframenumber{} + \end{beamercolorbox}% + } + \fi + + \end{minipage}% + \begin{minipage}{.05\textwidth}% + \end{minipage}% + \fi %\thepage>1 + }% + \vskip .023\textheight% + +} + + + + +\ifTACCheadernav + +\usesectionheadtemplate +{\hfill\insertsectionhead} +{\hfill\color{fg!50!bg}\insertsectionhead} + +% Head +\ifbeamer@compress + +% Here we define how the top of the frame looks, the "headline". +\setbeamertemplate{headline} +{% + \ifnum \thepage>1 + \leavevmode% + \begin{beamercolorbox}[wd=.5\paperwidth,ht=2.5ex,dp=1.125ex]{% + section in head/foot}% + \insertsectionnavigationhorizontal{.5\paperwidth}{\hskip0pt plus1filll}{}% + \end{beamercolorbox}% + \begin{beamercolorbox}[wd=.5\paperwidth,ht=2.5ex,dp=1.125ex]{% + subsection in head/foot}% + \insertsubsectionnavigationhorizontal{% + .5\paperwidth}{}{\hskip0pt plus1filll}% + \end{beamercolorbox}% + \fi %\thepage>1 +} + +\else% Not compressed + +\setbeamertemplate{headline} +{% + \ifnum \thepage>1 + \leavevmode% + \@tempdimb=2.4375ex% + \ifnum\beamer@subsectionmax<\beamer@sectionmax% + \multiply\@tempdimb by\beamer@sectionmax% + \else% + \multiply\@tempdimb by\beamer@subsectionmax% + \fi% + \ifdim\@tempdimb>0pt% + \advance\@tempdimb by 1.125ex% + \begin{beamercolorbox}[wd=.5\paperwidth,ht=\@tempdimb]{% + section in head/foot}% + \vbox to\@tempdimb{\vfil\insertsectionnavigation{.5\paperwidth}\vfil}% + \end{beamercolorbox}% + \begin{beamercolorbox}[wd=.5\paperwidth,ht=\@tempdimb]{% + subsection in head/foot}% + \vbox to\@tempdimb{\vfil\insertsubsectionnavigation{.5\paperwidth}\vfil}% + \end{beamercolorbox}% + \fi% + \fi % \thepage>1 +} + +\fi % end if compressed +\fi % TACCheadernav + + +\ifTACCheadertree + +\setbeamertemplate{headline} +{ + \begin{beamercolorbox}[wd=\paperwidth,colsep=1.5pt]{upper separation line head} + \end{beamercolorbox} + % + % Place short title + % + \begin{beamercolorbox}[wd=\paperwidth,ht=2.5ex,dp=1.125ex,% + leftskip=.3cm,rightskip=.3cm plus1fil]{title in head/foot} + \usebeamerfont{title in head/foot}\insertshorttitle + \end{beamercolorbox} + + % + % Place section + % + \begin{beamercolorbox}[wd=\paperwidth,ht=2.5ex,dp=1.125ex,% + leftskip=.3cm,rightskip=.3cm plus1fil]{section in head/foot} + \usebeamerfont{section in head/foot}% + %\ifbeamer@tree@showhooks + \setbox\beamer@tempbox=\hbox{\insertsectionhead}% + \ifdim\wd\beamer@tempbox>1pt% + \hskip2pt\raise1.9pt\hbox{\vrule width0.4pt height1.875ex\vrule width 5pt height0.4pt}% + \hskip1pt% + \fi + \insertsectionhead + \end{beamercolorbox} + +% +% Place subsection +% +\begin{beamercolorbox}[wd=\paperwidth,ht=2.5ex,dp=1.125ex,% + leftskip=.3cm,rightskip=.3cm plus1fil]{subsection in head/foot} + \usebeamerfont{subsection in head/foot}% + %\ifbeamer@tree@showhooks + \setbox\beamer@tempbox=\hbox{\insertsubsectionhead}% + \ifdim\wd\beamer@tempbox>1pt% + \hskip9.4pt\raise1.9pt\hbox{\vrule width0.4pt height1.875ex\vrule width 5pt height0.4pt}% + \hskip1pt% + \fi + \insertsubsectionhead +\end{beamercolorbox} + +% +% Place final separation box +% + \begin{beamercolorbox}[wd=\paperwidth,colsep=1.5pt + ]{lower separation line head} + \end{beamercolorbox} + + % + % Another matching rule which helps to frame the content + % + \hspace{.025\textwidth}\rule{.95\textwidth}{.5pt} +} +\fi % TACCheadertree + + +% The following command suppresses all navigation symbols. This is +% necessary in the TACC theme, since it overlaps where we want the +% logo to be. +\setbeamertemplate{navigation symbols}{} + + +\mode + diff --git a/my_docs/22/eb_user_22/beamerthemeTACC.sty b/my_docs/22/eb_user_22/beamerthemeTACC.sty deleted file mode 120000 index 5c339abd4..000000000 --- a/my_docs/22/eb_user_22/beamerthemeTACC.sty +++ /dev/null @@ -1 +0,0 @@ -../../beamer/beamerthemeTACC.sty \ No newline at end of file diff --git a/my_docs/22/eb_user_22/beamerthemeTACC.sty b/my_docs/22/eb_user_22/beamerthemeTACC.sty new file mode 100755 index 000000000..c6a1b1269 --- /dev/null +++ b/my_docs/22/eb_user_22/beamerthemeTACC.sty @@ -0,0 +1,26 @@ +%% TACC theme for beamer + +\newif\ifTACCheadernav +\DeclareOption{headernav}{\global\TACCheadernavtrue} + +\newif\ifTACCheadertree +\DeclareOption{headertree}{\global\TACCheadertreetrue} +\ProcessOptions + +\mode + +\usefonttheme{TACC} +\usecolortheme{TACC} +\useinnertheme{TACC} +\useoutertheme{TACC} + +\mode + + +\newcommand{\event}[1]{% + \makeatletter% + \def\TACC@eventname{#1}% + \makeatother} + +\newcommand{\sectionframe}[1]{\section{#1}\frame{\Large\textbf{#1}}} +\newcommand{\subsectionframe}[1]{\subsection{#1}\frame{\large\textbf{#1}}} diff --git a/my_docs/22/eb_user_22/beamerthemeTACC16.sty b/my_docs/22/eb_user_22/beamerthemeTACC16.sty deleted file mode 120000 index 7a9d4d296..000000000 --- a/my_docs/22/eb_user_22/beamerthemeTACC16.sty +++ /dev/null @@ -1 +0,0 @@ -../../beamer/beamerthemeTACC16.sty \ No newline at end of file diff --git a/my_docs/22/eb_user_22/beamerthemeTACC16.sty b/my_docs/22/eb_user_22/beamerthemeTACC16.sty new file mode 100755 index 000000000..b522d0207 --- /dev/null +++ b/my_docs/22/eb_user_22/beamerthemeTACC16.sty @@ -0,0 +1,61 @@ +%% TACC theme for beamer + + +\newif\if@rightfooterOption +\@rightfooterOptionfalse +\DeclareOption{rightfooter}{\@rightfooterOptiontrue} +\ProcessOptions + + +\newif\ifTACCheadernav +\DeclareOption{headernav}{\global\TACCheadernavtrue} + +\newif\ifTACCheadertree +\DeclareOption{headertree}{\global\TACCheadertreetrue} +\ProcessOptions + +\usepackage{xparse} +\ExplSyntaxOn +\NewDocumentCommand{\ifaspectratio}{mmm} + { + % Recover the option from those passed to the class + \keys_set:nf { zunbeltz/beameroptions } { \use:c { opt@beamer.cls } } + \str_if_eq:nVTF { #1 } \l_zunbeltz_aspectratio_tl { #2 } { #3 } + } +\NewDocumentCommand{\xifaspectratio}{mO{}} + { + % Recover the option from those passed to the class + \keys_set:nf { zunbeltz/beameroptions } { \use:c { opt@beamer.cls } } + \str_case:VnF \l_zunbeltz_aspectratio_tl { #1 } { #2 } + } +% We need to define only one key, the other are treated as `unknown' +\keys_define:nn { zunbeltz/beameroptions } + { + aspectratio .tl_set:N = \l_zunbeltz_aspectratio_tl, + aspectratio .initial:n = 43, + unknown .code:n = {}, + } + +% Generate the variants we need +\cs_generate_variant:Nn \keys_set:nn { nf } +\cs_generate_variant:Nn \str_if_eq:nnTF { nV } +\cs_generate_variant:Nn \str_case:nnF { V } +\ExplSyntaxOff + +\mode + +\usefonttheme{TACC16} +\useinnertheme{TACC16} +\useoutertheme{TACC16} +\usecolortheme{TACC16} + +\mode + + +\newcommand{\event}[1]{% + \makeatletter% + \def\TACC@eventname{#1}% + \makeatother} + +\newcommand{\sectionframe}[1]{\section{#1}\frame{\Large\textbf{#1}}} +\newcommand{\subsectionframe}[1]{\subsection{#1}\frame{\large\textbf{#1}}} diff --git a/my_docs/22/eb_user_22/figures b/my_docs/22/eb_user_22/figures deleted file mode 120000 index ddafd8974..000000000 --- a/my_docs/22/eb_user_22/figures +++ /dev/null @@ -1 +0,0 @@ -../../beamer/figures \ No newline at end of file diff --git a/my_docs/22/eb_user_22/figures/TACC_logo.pdf b/my_docs/22/eb_user_22/figures/TACC_logo.pdf new file mode 100755 index 000000000..c018a20cb Binary files /dev/null and b/my_docs/22/eb_user_22/figures/TACC_logo.pdf differ diff --git a/my_docs/22/eb_user_22/figures/UT_logo.pdf b/my_docs/22/eb_user_22/figures/UT_logo.pdf new file mode 100755 index 000000000..d5b42e752 Binary files /dev/null and b/my_docs/22/eb_user_22/figures/UT_logo.pdf differ diff --git a/my_docs/22/eb_user_22/figures/cc.png b/my_docs/22/eb_user_22/figures/cc.png new file mode 100644 index 000000000..8a532ff8f Binary files /dev/null and b/my_docs/22/eb_user_22/figures/cc.png differ diff --git a/my_docs/22/eb_user_22/figures/isa.png b/my_docs/22/eb_user_22/figures/isa.png new file mode 100644 index 000000000..f95d985e7 Binary files /dev/null and b/my_docs/22/eb_user_22/figures/isa.png differ diff --git a/my_docs/22/eb_user_22/figures/master.jpg b/my_docs/22/eb_user_22/figures/master.jpg new file mode 100644 index 000000000..f5c56c04a Binary files /dev/null and b/my_docs/22/eb_user_22/figures/master.jpg differ diff --git a/my_docs/22/eb_user_22/figures/master169.jpg b/my_docs/22/eb_user_22/figures/master169.jpg new file mode 100644 index 000000000..b215776eb Binary files /dev/null and b/my_docs/22/eb_user_22/figures/master169.jpg differ diff --git a/my_docs/22/eb_user_22/figures/master169.png b/my_docs/22/eb_user_22/figures/master169.png new file mode 100644 index 000000000..bc5c0ed12 Binary files /dev/null and b/my_docs/22/eb_user_22/figures/master169.png differ diff --git a/my_docs/22/eb_user_22/figures/secondary.jpg b/my_docs/22/eb_user_22/figures/secondary.jpg new file mode 100644 index 000000000..d905a95c9 Binary files /dev/null and b/my_docs/22/eb_user_22/figures/secondary.jpg differ diff --git a/my_docs/22/eb_user_22/figures/secondary169.jpg b/my_docs/22/eb_user_22/figures/secondary169.jpg new file mode 100644 index 000000000..4eb017957 Binary files /dev/null and b/my_docs/22/eb_user_22/figures/secondary169.jpg differ diff --git a/my_docs/22/eb_user_22/figures/secondary169.png b/my_docs/22/eb_user_22/figures/secondary169.png new file mode 100644 index 000000000..cb9060a56 Binary files /dev/null and b/my_docs/22/eb_user_22/figures/secondary169.png differ diff --git a/my_docs/22/eb_user_22/figures/secondary_right.jpg b/my_docs/22/eb_user_22/figures/secondary_right.jpg new file mode 100644 index 000000000..f25f93a58 Binary files /dev/null and b/my_docs/22/eb_user_22/figures/secondary_right.jpg differ diff --git a/my_docs/22/eb_user_22/figures/secondary_right169.jpg b/my_docs/22/eb_user_22/figures/secondary_right169.jpg new file mode 100644 index 000000000..567a1078f Binary files /dev/null and b/my_docs/22/eb_user_22/figures/secondary_right169.jpg differ diff --git a/my_docs/22/eb_user_22/themes b/my_docs/22/eb_user_22/themes deleted file mode 120000 index a98530730..000000000 --- a/my_docs/22/eb_user_22/themes +++ /dev/null @@ -1 +0,0 @@ -../../beamer/themes \ No newline at end of file diff --git a/my_docs/22/eb_user_22/themes/beamercolorthemeTACC16.sty b/my_docs/22/eb_user_22/themes/beamercolorthemeTACC16.sty new file mode 100644 index 000000000..248ae8cb6 --- /dev/null +++ b/my_docs/22/eb_user_22/themes/beamercolorthemeTACC16.sty @@ -0,0 +1,193 @@ +% Copyright 2003 by Till Tantau . +% +% This program can be redistributed and/or modified under the terms +% of the GNU Public License, version 2. + +\mode + +\usepackage{textcase,regexpatch} + +\setbeamertemplate{blocks}[rounded][shadow=true] + + +\definecolor{TACCred}{RGB}{180,13,29} +\definecolor{TACCorange}{RGB}{210,104,43} +\definecolor{TACCblue}{RGB}{21,77,122} +%\definecolor{TACCgreen}{RGB}{30,134,104} +\definecolor{TACCgreen}{RGB}{49,168,51} + +% I downloaded a gimp color palette from +% http://maururu.net/2007/latex-beamer-color-palette/ +% Which provides rgb values (I think) for several of the +% default beamer themes. You can open this in gimp by +% opening the Palettes dialog, right-clicking anywhere and choosing +% 'Import Palette'. A color in there called 'default added blue' +% appeared to be approximately what I wanted. It had the triple +% of values 141 145 208. If you double-click on this in the +% palette editor it gives you a bunch of information. You can't +% use these values directly to set a color...it just comes out white. +% I think definecolor is expecting something normalized by 255. Yes! + + +%%% +% Set the normal text color +%%% +\setbeamercolor{normal text}{fg=black} %,bg=white} +\setbeamercolor{example text}{fg=TACCgreen} +\setbeamercolor{alerted text}{fg=TACCorange} + + +\setbeamercolor{structure}{fg=black} +%\setbeamercolor{structure}{fg=black} + +\setbeamercolor{background canvas}{parent=normal text} +\setbeamercolor{background}{parent=background canvas} + +\setbeamercolor{palette primary}{use=structure,fg=structure.fg} +\setbeamercolor{palette secondary}{use=structure,fg=structure.fg!75!black} +\setbeamercolor{palette tertiary}{use=structure,fg=structure.fg!50!black} +\setbeamercolor{palette quaternary}{fg=black} + +\setbeamercolor{palette sidebar primary}{use=normal text,fg=normal text.fg} +\setbeamercolor{palette sidebar secondary}{use=structure,fg=structure.fg} +\setbeamercolor{palette sidebar tertiary}{use=normal text,fg=normal text.fg} +\setbeamercolor{palette sidebar quaternary}{use=structure,fg=structure.fg} + +\setbeamercolor{math text}{} +\setbeamercolor{math text inlined}{parent=math text} +\setbeamercolor{math text displayed}{parent=math text} + +\setbeamercolor{normal text in math text}{} + +\setbeamercolor{local structure}{parent=structure} + +\setbeamercolor{titlelike}{parent=structure} + +\setbeamercolor{title}{parent=titlelike} +\setbeamercolor{title in head/foot}{parent=palette quaternary} +\setbeamercolor{title in sidebar}{parent=palette sidebar quaternary} + +\setbeamercolor{subtitle}{parent=title} + +\setbeamercolor{author}{} +\setbeamercolor{author in head/foot}{parent=palette primary} +\setbeamercolor{author in sidebar}{use=palette sidebar tertiary,fg=palette sidebar tertiary.fg} + +\setbeamercolor{institute}{} +\setbeamercolor{institute in head/foot}{parent=palette tertiary} +\setbeamercolor{institute in sidebar}{use=palette sidebar tertiary,fg=palette sidebar tertiary.fg} + +\setbeamercolor{date}{} +\setbeamercolor{date in head/foot}{parent=palette secondary} +\setbeamercolor{date in sidebar}{use=palette sidebar tertiary,fg=palette sidebar tertiary.fg} + +\setbeamercolor{titlegraphic}{} + +\setbeamercolor{part name}{} +\setbeamercolor{part title}{parent=titlelike} + +\setbeamercolor{section in toc}{parent=structure} +\setbeamercolor{section in toc shaded}{parent=section in toc} +\setbeamercolor{section in head/foot}{parent=palette tertiary} +\setbeamercolor{section in sidebar}{parent=palette sidebar secondary} +\setbeamercolor{section in sidebar shaded}{use=section in sidebar,fg=section in sidebar.fg!40!bg} +\setbeamercolor{section number projected}{parent=item projected} + +\setbeamercolor{subsection in toc}{} +\setbeamercolor{subsection in toc shaded}{parent=subsection in toc} +\setbeamercolor{subsection in head/foot}{parent=palette secondary} +\setbeamercolor{subsection in sidebar}{parent=palette sidebar primary} +\setbeamercolor{subsection in sidebar shaded}{use=subsection in sidebar,fg=subsection in sidebar.fg!40!bg} +\setbeamercolor{subsection number projected}{parent={subitem projected}} + +\setbeamercolor{subsubsection in toc}{parent=subsection in toc} +\setbeamercolor{subsubsection in toc shaded}{parent=subsubsection in toc} +\setbeamercolor{subsubsection in head/foot}{parent=subsection in head/foot} +\setbeamercolor{subsubsection in sidebar}{parent=subsection in sidebar} +\setbeamercolor{subsubsection in sidebar shaded}{parent=subsection in sidebar shaded} +\setbeamercolor{subsubsection number projected}{parent=subsubitem projected} + +\setbeamercolor{headline}{} +\setbeamercolor{footline}{} + +\setbeamercolor{sidebar}{} +\setbeamercolor{sidebar left}{parent=sidebar} +\setbeamercolor{sidebar right}{parent=sidebar} + +\setbeamercolor{logo}{parent=palette secondary} + +\setbeamercolor{frametitle}{parent=titlelike} +\setbeamercolor{framesubtitle}{parent=frametitle} + +\setbeamercolor{frametitle right}{parent=frametitle} + +\setbeamercolor{caption}{} +\setbeamercolor{caption name}{parent=structure} + +\setbeamercolor{button}{use=local structure,bg=local structure.fg!50!bg,fg=white} +\setbeamercolor{button border}{use=button,fg=button.bg} +\setbeamercolor{navigation symbols}{use=structure,fg=structure.fg!40!bg} +\setbeamercolor{navigation symbols dimmed}{use=structure,fg=structure.fg!20!bg} +\setbeamercolor{mini frame}{parent=section in head/foot} + +\setbeamercolor{block body}{fg=black} +\setbeamercolor{block body alerted}{fg=black} +\setbeamercolor{block body example}{fg=black} + +\setbeamercolor{block title}{bg=TACCblue,fg=white} +\setbeamercolor{block title alerted}{bg=TACCred,fg=white} +\setbeamercolor{block title example}{bg=TACCgreen,fg=white} + +\setbeamercolor{item}{parent=local structure} +\setbeamercolor{subitem}{parent=item} +\setbeamercolor{subsubitem}{parent=subitem} + +\setbeamercolor{item projected}{parent=item,use=item,fg=black,bg=item.fg} +\setbeamercolor{subitem projected}{parent=item projected} +\setbeamercolor{subsubitem projected}{parent=subitem projected} + +\setbeamercolor{enumerate item}{parent=item} +\setbeamercolor{enumerate subitem}{parent=subitem} +\setbeamercolor{enumerate subsubitem}{parent=subsubitem} + +\setbeamercolor{itemize item}{parent=item} +\setbeamercolor{itemize subitem}{parent=subitem} +\setbeamercolor{itemize subsubitem}{parent=subsubitem} + +\setbeamercolor{itemize/enumerate body}{} +\setbeamercolor{itemize/enumerate subbody}{} +\setbeamercolor{itemize/enumerate subsubbody}{} + +\setbeamercolor{description item}{parent=item} + +\setbeamercolor{bibliography item}{parent=item} + +\setbeamercolor{bibliography entry author}{use=structure,fg=structure.fg} +\setbeamercolor{bibliography entry title}{use=normal text,fg=normal text.fg} +\setbeamercolor{bibliography entry location}{use=structure,fg=structure.fg!65!bg} +\setbeamercolor{bibliography entry note}{use=structure,fg=structure.fg!65!bg} + +\setbeamercolor{separation line}{} + +\setbeamercolor{upper separation line head}{parent=separation line} +\setbeamercolor{middle separation line head}{parent=separation line} +\setbeamercolor{lower separation line head}{parent=separation line} + +\setbeamercolor{upper separation line foot}{parent=separation line} +\setbeamercolor{middle separation line foot}{parent=separation line} +\setbeamercolor{lower separation line foot}{parent=separation line} + +\setbeamercolor{abstract}{} +\setbeamercolor{abstract title}{parent=structure} + +\setbeamercolor{verse}{} + +\setbeamercolor{quotation}{} +\setbeamercolor{quote}{parent=quotation} + +\setbeamercolor{page number in head/foot}{fg=fg!50!bg} + +\setbeamercolor{qed symbol}{parent=structure} + +\mode + diff --git a/my_docs/22/eb_user_22/themes/beamerfontthemeTACC16.sty b/my_docs/22/eb_user_22/themes/beamerfontthemeTACC16.sty new file mode 100644 index 000000000..d0fc325cc --- /dev/null +++ b/my_docs/22/eb_user_22/themes/beamerfontthemeTACC16.sty @@ -0,0 +1,21 @@ +% Copyright 2003 by Till Tantau +% +% This program can be redistributed and/or modified under the terms +% of the GNU Public License, version 2. + +\mode +\setbeamerfont{title}{parent=structure,size=\LARGE,series=\bfseries} +\setbeamerfont{author}{parent=structure,size=\large, series=\normalfont} +\setbeamerfont{frametitle}{parent=structure,size=\LARGE,series=\bfseries} +\setbeamerfont{framesubtitle}{parent=frametitle,size=\small} + +%\usefonttheme{professionalfonts} % using non standard fonts for beamer +%\usefonttheme{serif} % default family is serif +%\usepackage{fontspec} +%\setmainfont{Century Gothic} + +%\usepackage{fontspec} +\usepackage{libertine} + +\mode + diff --git a/my_docs/22/eb_user_22/themes/beamerinnerthemeTACC16.sty b/my_docs/22/eb_user_22/themes/beamerinnerthemeTACC16.sty new file mode 100644 index 000000000..f7f454e1d --- /dev/null +++ b/my_docs/22/eb_user_22/themes/beamerinnerthemeTACC16.sty @@ -0,0 +1,11 @@ +\mode + +\setbeamertemplate{itemize item}[triangle] +\setbeamertemplate{itemize subitem}[triangle] +\setbeamertemplate{itemize subsubitem}[triangle] +\setbeamertemplate{section in toc}{$\bullet$\hskip.5em\inserttocsection} +%\setbeamertemplate{subsection in toc}{} +\setbeamertemplate{subsubsection in toc}{} + +\mode + diff --git a/my_docs/22/eb_user_22/themes/beamerouterthemeTACC16-169.sty b/my_docs/22/eb_user_22/themes/beamerouterthemeTACC16-169.sty new file mode 100644 index 000000000..c62f9ed04 --- /dev/null +++ b/my_docs/22/eb_user_22/themes/beamerouterthemeTACC16-169.sty @@ -0,0 +1,247 @@ +% Copyright 2003 by Till Tantau +% +% This program can be redistributed and/or modified under the terms +% of the GNU Public License, version 2. + +\mode + +\usepackage{xcolor} +\usepackage{graphicx} +\usepackage{etoolbox} + +\pgfdeclareimage[width=\paperwidth]{titlebackground}{./figures/master169.png} +\pgfdeclareimage[width=\paperwidth]{background}{./figures/secondary169.png} + +\setbeamertemplate{background canvas}{% + \ifnum\c@framenumber=1% + \begin{picture}(0,0) + \put(-0.15,-250){% + \pgfuseimage{titlebackground} + } + %\put(0,-130.7){% + + %\begin{minipage}[b][45mm][t]{\textwidth}%{226mm} + %\begin{center} + % \usebeamerfont{title}{\MakeTextUppercase{\inserttitle}\par} + %\vspace{2ex} + %\usebeamerfont{author}{\insertauthor} + % \end{center} + %\end{minipage} + %} + \end{picture} + % On title page + \else% + % Other frames background + \begin{picture}(0,0) + \put(-0.15,-255.55){% + \pgfuseimage{background} + } + \end{picture} + \fi% +} + + +\setbeamertemplate{title page}{ +\vspace{40pt} +\begin{center} +\usebeamerfont{title} {\huge \inserttitle}\par +\vspace{4ex} +\usebeamerfont{author} { + \insertauthor +}\par +\vspace{2ex} +\usebeamerfont{institute}{ + \insertinstitute +} \par +\vspace{2ex} +\usebeamerfont{date}{ + \insertdate +} +\end{center} +} + + +\setbeamertemplate{frametitle}[default][center] +\setbeamertemplate{frametitle}{ + \makeatletter + \regexpatchcmd{\insertframetitle} + {(\c{usebeamertemplate}.*)\c{fi}} + {\c{NoCaseChange}\cB\{\1\cE\}\c{fi}} + {}{}% + \makeatother + \vskip1ex + \insertframetitle +} + +% Here we define what appears at the bottom of each slide: the "footline". +\setbeamertemplate{footline}{% + \leavevmode% + + % Horizontal line dividing the rest of the slide from the footer? + % hrule goes all the way across... + % \hrule height.3pt% + % With \rule, you can specify the thickness + % \rule[raise-height]{width}{thickness} + % \hspace{.025\textwidth}\rule{.95\textwidth}{.5pt} + + \hbox{% + \ifnum \thepage>1 + % On the left half of the footer, insert the TACC of + \begin{minipage}{.2\textwidth}% + \hskip .05\textwidth%Give horizontal space else this will set on the left edge of the slide! + % \includegraphics[width=.8\textwidth]{TACC_logo.png} + \end{minipage} + + + \begin{minipage}{\textwidth}% + % \vskip .023\textheight% + \raggedleft% + \setlength{\rightskip}{\textwidth} + \hbox{% + \begin{beamercolorbox}[wd=0.7\textwidth,ht=2.25ex,dp=1ex,left]{author in head/foot}% + \insertshorttitle{} \hskip .01\textwidth | \hskip .01\textwidth \insertdate{} \hskip .01\textwidth | \hskip .01\textwidth \insertframenumber{} + \end{beamercolorbox}% + } + + % + % If we are not on the first page, insert a page number + % For some reason, insertframenumber is buggy when you have fragile + % slides with verbatim environments in them... it tends to skip numbers + % for some reason! On the other hand, the pagenumber is incremented + % for *every* slide, including transition slides... + % \hfill\includegraphics[width=\textwidth]{tacc_ut.png} + \end{minipage}% + \begin{minipage}{.05\textwidth}% + \end{minipage}% + \fi %\thepage>1 + }% + \vskip .023\textheight% + +} + + + + +\ifTACCheadernav + +\usesectionheadtemplate +{\hfill\insertsectionhead} +{\hfill\color{fg!50!bg}\insertsectionhead} + +% Head +\ifbeamer@compress + +% Here we define how the top of the frame looks, the "headline". +\setbeamertemplate{headline} +{% + \ifnum \thepage>1 + \leavevmode% + \begin{beamercolorbox}[wd=.5\paperwidth,ht=2.5ex,dp=1.125ex]{% + section in head/foot}% + \insertsectionnavigationhorizontal{.5\paperwidth}{\hskip0pt plus1filll}{}% + \end{beamercolorbox}% + \begin{beamercolorbox}[wd=.5\paperwidth,ht=2.5ex,dp=1.125ex]{% + subsection in head/foot}% + \insertsubsectionnavigationhorizontal{% + .5\paperwidth}{}{\hskip0pt plus1filll}% + \end{beamercolorbox}% + \fi %\thepage>1 +} + +\else% Not compressed + +\setbeamertemplate{headline} +{% + \ifnum \thepage>1 + \leavevmode% + \@tempdimb=2.4375ex% + \ifnum\beamer@subsectionmax<\beamer@sectionmax% + \multiply\@tempdimb by\beamer@sectionmax% + \else% + \multiply\@tempdimb by\beamer@subsectionmax% + \fi% + \ifdim\@tempdimb>0pt% + \advance\@tempdimb by 1.125ex% + \begin{beamercolorbox}[wd=.5\paperwidth,ht=\@tempdimb]{% + section in head/foot}% + \vbox to\@tempdimb{\vfil\insertsectionnavigation{.5\paperwidth}\vfil}% + \end{beamercolorbox}% + \begin{beamercolorbox}[wd=.5\paperwidth,ht=\@tempdimb]{% + subsection in head/foot}% + \vbox to\@tempdimb{\vfil\insertsubsectionnavigation{.5\paperwidth}\vfil}% + \end{beamercolorbox}% + \fi% + \fi % \thepage>1 +} + +\fi % end if compressed +\fi % TACCheadernav + + +\ifTACCheadertree + +\setbeamertemplate{headline} +{ + \begin{beamercolorbox}[wd=\paperwidth,colsep=1.5pt]{upper separation line head} + \end{beamercolorbox} + % + % Place short title + % + \begin{beamercolorbox}[wd=\paperwidth,ht=2.5ex,dp=1.125ex,% + leftskip=.3cm,rightskip=.3cm plus1fil]{title in head/foot} + \usebeamerfont{title in head/foot}\insertshorttitle + \end{beamercolorbox} + + % + % Place section + % + \begin{beamercolorbox}[wd=\paperwidth,ht=2.5ex,dp=1.125ex,% + leftskip=.3cm,rightskip=.3cm plus1fil]{section in head/foot} + \usebeamerfont{section in head/foot}% + %\ifbeamer@tree@showhooks + \setbox\beamer@tempbox=\hbox{\insertsectionhead}% + \ifdim\wd\beamer@tempbox>1pt% + \hskip2pt\raise1.9pt\hbox{\vrule width0.4pt height1.875ex\vrule width 5pt height0.4pt}% + \hskip1pt% + \fi + \insertsectionhead + \end{beamercolorbox} + +% +% Place subsection +% +\begin{beamercolorbox}[wd=\paperwidth,ht=2.5ex,dp=1.125ex,% + leftskip=.3cm,rightskip=.3cm plus1fil]{subsection in head/foot} + \usebeamerfont{subsection in head/foot}% + %\ifbeamer@tree@showhooks + \setbox\beamer@tempbox=\hbox{\insertsubsectionhead}% + \ifdim\wd\beamer@tempbox>1pt% + \hskip9.4pt\raise1.9pt\hbox{\vrule width0.4pt height1.875ex\vrule width 5pt height0.4pt}% + \hskip1pt% + \fi + \insertsubsectionhead +\end{beamercolorbox} + +% +% Place final separation box +% + \begin{beamercolorbox}[wd=\paperwidth,colsep=1.5pt + ]{lower separation line head} + \end{beamercolorbox} + + % + % Another matching rule which helps to frame the content + % + \hspace{.025\textwidth}\rule{.95\textwidth}{.5pt} +} +\fi % TACCheadertree + + +% The following command suppresses all navigation symbols. This is +% necessary in the TACC theme, since it overlaps where we want the +% logo to be. +\setbeamertemplate{navigation symbols}{} + + +\mode + diff --git a/my_docs/22/eb_user_22/themes/beamerouterthemeTACC16.sty b/my_docs/22/eb_user_22/themes/beamerouterthemeTACC16.sty new file mode 100644 index 000000000..c5b178018 --- /dev/null +++ b/my_docs/22/eb_user_22/themes/beamerouterthemeTACC16.sty @@ -0,0 +1,247 @@ +% Copyright 2003 by Till Tantau +% +% This program can be redistributed and/or modified under the terms +% of the GNU Public License, version 2. + +\mode + +\usepackage{xcolor} +\usepackage{graphicx} +\usepackage{etoolbox} + +\pgfdeclareimage[width=\paperwidth]{titlebackground}{master.jpg} +\pgfdeclareimage[width=\paperwidth]{background}{secondary.jpg} + +\setbeamertemplate{background canvas}{% + \ifnum\c@framenumber=1% + \begin{picture}(0,0) + \put(0,-273){% + \pgfuseimage{titlebackground} + } + %\put(0,-130.7){% + + %\begin{minipage}[b][45mm][t]{\textwidth}%{226mm} + %\begin{center} + % \usebeamerfont{title}{\MakeTextUppercase{\inserttitle}\par} + %\vspace{2ex} + %\usebeamerfont{author}{\insertauthor} + % \end{center} + %\end{minipage} + %} + \end{picture} + % On title page + \else% + % Other frames background + \begin{picture}(0,0) + \put(0,-273){% + \pgfuseimage{background} + } + \end{picture} + \fi% +} + + +\setbeamertemplate{title page}{ +\vspace{40pt} +\begin{center} +\usebeamerfont{title} {\huge \inserttitle}\par +\vspace{4ex} +\usebeamerfont{author} { + \insertauthor +}\par +\vspace{2ex} +\usebeamerfont{institute}{ + \insertinstitute +} \par +\vspace{2ex} +\usebeamerfont{date}{ + \insertdate +} +\end{center} +} + + +\setbeamertemplate{frametitle}[default][center] +\setbeamertemplate{frametitle}{ + \makeatletter + \regexpatchcmd{\insertframetitle} + {(\c{usebeamertemplate}.*)\c{fi}} + {\c{NoCaseChange}\cB\{\1\cE\}\c{fi}} + {}{}% + \makeatother + \vskip1ex + \insertframetitle +} + +% Here we define what appears at the bottom of each slide: the "footline". +\setbeamertemplate{footline}{% + \leavevmode% + + % Horizontal line dividing the rest of the slide from the footer? + % hrule goes all the way across... + % \hrule height.3pt% + % With \rule, you can specify the thickness + % \rule[raise-height]{width}{thickness} + % \hspace{.025\textwidth}\rule{.95\textwidth}{.5pt} + + \hbox{% + \ifnum \thepage>1 + % On the left half of the footer, insert the TACC of + \begin{minipage}{.2\textwidth}% + \hskip .05\textwidth%Give horizontal space else this will set on the left edge of the slide! + % \includegraphics[width=.8\textwidth]{figures/TACC_logo.png} + \end{minipage} + + + \begin{minipage}{\textwidth}% + % \vskip .023\textheight% + \raggedleft% + \setlength{\rightskip}{\textwidth} + \hbox{% + \begin{beamercolorbox}[wd=0.7\textwidth,ht=2.25ex,dp=1ex,left]{author in head/foot}% + \insertshorttitle{} \hskip .01\textwidth | \hskip .01\textwidth \insertdate{} \hskip .01\textwidth | \hskip .01\textwidth \insertframenumber{} + \end{beamercolorbox}% + } + + % + % If we are not on the first page, insert a page number + % For some reason, insertframenumber is buggy when you have fragile + % slides with verbatim environments in them... it tends to skip numbers + % for some reason! On the other hand, the pagenumber is incremented + % for *every* slide, including transition slides... + % \hfill\includegraphics[width=\textwidth]{figures/tacc_ut.png} + \end{minipage}% + \begin{minipage}{.05\textwidth}% + \end{minipage}% + \fi %\thepage>1 + }% + \vskip .023\textheight% + +} + + + + +\ifTACCheadernav + +\usesectionheadtemplate +{\hfill\insertsectionhead} +{\hfill\color{fg!50!bg}\insertsectionhead} + +% Head +\ifbeamer@compress + +% Here we define how the top of the frame looks, the "headline". +\setbeamertemplate{headline} +{% + \ifnum \thepage>1 + \leavevmode% + \begin{beamercolorbox}[wd=.5\paperwidth,ht=2.5ex,dp=1.125ex]{% + section in head/foot}% + \insertsectionnavigationhorizontal{.5\paperwidth}{\hskip0pt plus1filll}{}% + \end{beamercolorbox}% + \begin{beamercolorbox}[wd=.5\paperwidth,ht=2.5ex,dp=1.125ex]{% + subsection in head/foot}% + \insertsubsectionnavigationhorizontal{% + .5\paperwidth}{}{\hskip0pt plus1filll}% + \end{beamercolorbox}% + \fi %\thepage>1 +} + +\else% Not compressed + +\setbeamertemplate{headline} +{% + \ifnum \thepage>1 + \leavevmode% + \@tempdimb=2.4375ex% + \ifnum\beamer@subsectionmax<\beamer@sectionmax% + \multiply\@tempdimb by\beamer@sectionmax% + \else% + \multiply\@tempdimb by\beamer@subsectionmax% + \fi% + \ifdim\@tempdimb>0pt% + \advance\@tempdimb by 1.125ex% + \begin{beamercolorbox}[wd=.5\paperwidth,ht=\@tempdimb]{% + section in head/foot}% + \vbox to\@tempdimb{\vfil\insertsectionnavigation{.5\paperwidth}\vfil}% + \end{beamercolorbox}% + \begin{beamercolorbox}[wd=.5\paperwidth,ht=\@tempdimb]{% + subsection in head/foot}% + \vbox to\@tempdimb{\vfil\insertsubsectionnavigation{.5\paperwidth}\vfil}% + \end{beamercolorbox}% + \fi% + \fi % \thepage>1 +} + +\fi % end if compressed +\fi % TACCheadernav + + +\ifTACCheadertree + +\setbeamertemplate{headline} +{ + \begin{beamercolorbox}[wd=\paperwidth,colsep=1.5pt]{upper separation line head} + \end{beamercolorbox} + % + % Place short title + % + \begin{beamercolorbox}[wd=\paperwidth,ht=2.5ex,dp=1.125ex,% + leftskip=.3cm,rightskip=.3cm plus1fil]{title in head/foot} + \usebeamerfont{title in head/foot}\insertshorttitle + \end{beamercolorbox} + + % + % Place section + % + \begin{beamercolorbox}[wd=\paperwidth,ht=2.5ex,dp=1.125ex,% + leftskip=.3cm,rightskip=.3cm plus1fil]{section in head/foot} + \usebeamerfont{section in head/foot}% + %\ifbeamer@tree@showhooks + \setbox\beamer@tempbox=\hbox{\insertsectionhead}% + \ifdim\wd\beamer@tempbox>1pt% + \hskip2pt\raise1.9pt\hbox{\vrule width0.4pt height1.875ex\vrule width 5pt height0.4pt}% + \hskip1pt% + \fi + \insertsectionhead + \end{beamercolorbox} + +% +% Place subsection +% +\begin{beamercolorbox}[wd=\paperwidth,ht=2.5ex,dp=1.125ex,% + leftskip=.3cm,rightskip=.3cm plus1fil]{subsection in head/foot} + \usebeamerfont{subsection in head/foot}% + %\ifbeamer@tree@showhooks + \setbox\beamer@tempbox=\hbox{\insertsubsectionhead}% + \ifdim\wd\beamer@tempbox>1pt% + \hskip9.4pt\raise1.9pt\hbox{\vrule width0.4pt height1.875ex\vrule width 5pt height0.4pt}% + \hskip1pt% + \fi + \insertsubsectionhead +\end{beamercolorbox} + +% +% Place final separation box +% + \begin{beamercolorbox}[wd=\paperwidth,colsep=1.5pt + ]{lower separation line head} + \end{beamercolorbox} + + % + % Another matching rule which helps to frame the content + % + \hspace{.025\textwidth}\rule{.95\textwidth}{.5pt} +} +\fi % TACCheadertree + + +% The following command suppresses all navigation symbols. This is +% necessary in the TACC theme, since it overlaps where we want the +% logo to be. +\setbeamertemplate{navigation symbols}{} + + +\mode + diff --git a/my_docs/22/eb_user_22/themes/beamerthemeTACC16-169.sty b/my_docs/22/eb_user_22/themes/beamerthemeTACC16-169.sty new file mode 100644 index 000000000..22caf9a05 --- /dev/null +++ b/my_docs/22/eb_user_22/themes/beamerthemeTACC16-169.sty @@ -0,0 +1,38 @@ +%% TACC theme for beamer + +\newif\ifTACCheadernav +\DeclareOption{headernav}{\global\TACCheadernavtrue} + +\newif\ifTACCheadertree +\DeclareOption{headertree}{\global\TACCheadertreetrue} +\ProcessOptions + +\mode + +\makeatletter + \def\beamer@calltheme#1#2#3{% + \def\beamer@themelist{#2} + \@for\beamer@themename:=\beamer@themelist\do + {\usepackage[{#1}]{\beamer@themelocation/#3\beamer@themename}}} + + \def\usefolder#1{ + \def\beamer@themelocation{#1} + } + \def\beamer@themelocation{} + +\usefolder{themes} +\usefonttheme{TACC16} +\useinnertheme{TACC16} +\useoutertheme{TACC16-169} +\usecolortheme{TACC16} + +\mode + + +\newcommand{\event}[1]{% + \makeatletter% + \def\TACC@eventname{#1}% + \makeatother} + +\newcommand{\sectionframe}[1]{\section{#1}\frame{\Large\textbf{#1}}} +\newcommand{\subsectionframe}[1]{\subsection{#1}\frame{\large\textbf{#1}}} diff --git a/my_docs/22/eb_user_22/themes/beamerthemeTACC16.sty b/my_docs/22/eb_user_22/themes/beamerthemeTACC16.sty new file mode 100644 index 000000000..750bdd388 --- /dev/null +++ b/my_docs/22/eb_user_22/themes/beamerthemeTACC16.sty @@ -0,0 +1,26 @@ +%% TACC theme for beamer + +\newif\ifTACCheadernav +\DeclareOption{headernav}{\global\TACCheadernavtrue} + +\newif\ifTACCheadertree +\DeclareOption{headertree}{\global\TACCheadertreetrue} +\ProcessOptions + +\mode + +\usefonttheme{TACC16} +\useinnertheme{TACC16} +\useoutertheme{TACC16} +\usecolortheme{TACC16} + +\mode + + +\newcommand{\event}[1]{% + \makeatletter% + \def\TACC@eventname{#1}% + \makeatother} + +\newcommand{\sectionframe}[1]{\section{#1}\frame{\Large\textbf{#1}}} +\newcommand{\subsectionframe}[1]{\subsection{#1}\frame{\large\textbf{#1}}} diff --git a/my_docs/22/eb_user_22/themes/example.pdf b/my_docs/22/eb_user_22/themes/example.pdf new file mode 100644 index 000000000..add373eee Binary files /dev/null and b/my_docs/22/eb_user_22/themes/example.pdf differ diff --git a/my_docs/22/eb_user_22/themes/license.tex b/my_docs/22/eb_user_22/themes/license.tex new file mode 100644 index 000000000..74ff86759 --- /dev/null +++ b/my_docs/22/eb_user_22/themes/license.tex @@ -0,0 +1,14 @@ + +\begin{frame}{License} +\footnotesize +\textcopyright The University of Texas at Austin, \the\year\\ +\vspace{0.5 cm} +This work is licensed under the Creative Commons Attribution Non-Commercial 3.0 Unported License. To view a copy of this license, +visit http://creativecommons.org/licenses/by-nc/3.0/\\ +\vspace{0.5 cm} +When attributing this work, please use the following text: +"Designing and Administering Large-scale Systems", Texas Advanced Computing Center, \the\year. Available under a Creative Commons Attribution Non-Commercial 3.0 Unported License. +\newline +\newline +\includegraphics[width=1cm]{./figures/cc.png} +\end{frame} \ No newline at end of file diff --git a/my_docs/22/lmod_zoom_mtg_2022_01_11/Lmod-4color@2x.png b/my_docs/22/lmod_zoom_mtg_2022_01_11/Lmod-4color@2x.png deleted file mode 120000 index 47d505dbf..000000000 --- a/my_docs/22/lmod_zoom_mtg_2022_01_11/Lmod-4color@2x.png +++ /dev/null @@ -1 +0,0 @@ -../../beamer/Lmod-4color@2x.png \ No newline at end of file diff --git a/my_docs/22/lmod_zoom_mtg_2022_01_11/Lmod-4color@2x.png b/my_docs/22/lmod_zoom_mtg_2022_01_11/Lmod-4color@2x.png new file mode 100644 index 000000000..4810d74c3 Binary files /dev/null and b/my_docs/22/lmod_zoom_mtg_2022_01_11/Lmod-4color@2x.png differ diff --git a/my_docs/22/lmod_zoom_mtg_2022_01_11/beamercolorthemeTACC.sty b/my_docs/22/lmod_zoom_mtg_2022_01_11/beamercolorthemeTACC.sty deleted file mode 120000 index 8d27e673a..000000000 --- a/my_docs/22/lmod_zoom_mtg_2022_01_11/beamercolorthemeTACC.sty +++ /dev/null @@ -1 +0,0 @@ -../../beamer/beamercolorthemeTACC.sty \ No newline at end of file diff --git a/my_docs/22/lmod_zoom_mtg_2022_01_11/beamercolorthemeTACC.sty b/my_docs/22/lmod_zoom_mtg_2022_01_11/beamercolorthemeTACC.sty new file mode 100755 index 000000000..78beb6a4a --- /dev/null +++ b/my_docs/22/lmod_zoom_mtg_2022_01_11/beamercolorthemeTACC.sty @@ -0,0 +1,323 @@ +% Copyright 2003 by Till Tantau . +% +% This program can be redistributed and/or modified under the terms +% of the GNU Public License, version 2. + +\mode + +% I downloaded a gimp color palette from +% http://maururu.net/2007/latex-beamer-color-palette/ +% Which provides rgb values (I think) for several of the +% default beamer themes. You can open this in gimp by +% opening the Palettes dialog, right-clicking anywhere and choosing +% 'Import Palette'. A color in there called 'default added blue' +% appeared to be approximately what I wanted. It had the triple +% of values 141 145 208. If you double-click on this in the +% palette editor it gives you a bunch of information. You can't +% use these values directly to set a color...it just comes out white. +% I think definecolor is expecting something normalized by 255. Yes! + + +% bluish colors +\definecolor{defaddedblue}{rgb}{0.5529,.5686,.8157} % 141,145,208 +\definecolor{defblockheader}{rgb}{.1921,.2235,.6824} % 49,57,174 +\definecolor{flyaddedblue}{rgb}{.5961,.6118,.8431} % 152,156,215 + +% bluish-greys +\definecolor{beetleaddedblue1}{rgb}{.3333,.4039,.6196} % 85 103 158, dark +\definecolor{beetleaddedblue2}{rgb}{.4510,.5098,.7020} % 115 130 179, medium +\definecolor{beetleaddedblue3}{rgb}{.7059,.7255,.7961} % 180 185 203, light (greyest) + +% very light blue-greys +\definecolor{deflightouter1}{rgb}{.7608,.7647,.9020} % 194 195 230, dark +\definecolor{deflightouter2}{rgb}{.8 ,.8039,.9176} % 204 205 234, medium +\definecolor{deflightouter3}{rgb}{.8392,.8431,.9373} % 214 215 239, light + +% reddish colors +\definecolor{flyalertblockheader}{rgb}{.7373,.1294,.1333} % 188 33 34 +\definecolor{flyaddedred}{rgb}{.8667,.5647,.5647}% 221 144 144 +\definecolor{beaverouterframe}{rgb}{.5529,.0980,.0980}% 141 25 25 + +% greens (green is used for 'examples' in beamer) +\definecolor{defexblock}{rgb}{.9098,.9333,.9020} % 232 238 230, light +\definecolor{defaddedgreen}{rgb}{.5412,.6510,.4706} % 138 166 120, medium +\definecolor{defexblockheader}{rgb}{.1686,.3647,.0392} % 43 93 10, dark + +\definecolor{lightexblock}{rgb}{.9137,.9451,.9020} % 233 241 230, light +\definecolor{lightexblockheader}{rgb}{.8235,.8980,.8} % 210 229 204, medium +\definecolor{lightexblockheadertext}{rgb}{.2431,.5098,.0745} % 62 130 19, dark + + +%%% +% Set the normal text color +%%% +\setbeamercolor{normal text}{fg=black,bg=white} + +%%% +% Set the alerted text color +%%% +% \setbeamercolor{alerted text}{fg=red} +\setbeamercolor{alerted text}{fg=red!50!black} % half black/half red for green bg +% \setbeamercolor{alerted text}{fg=beaverouterframe} +% \setbeamercolor{alerted text}{fg=defblockheader} % doesn't stand out enough + + +% Set the 'example' text +\setbeamercolor{example text}{fg=green!50!black} + +\setbeamercolor{structure}{fg=black} + +\setbeamercolor{background canvas}{parent=normal text} +\setbeamercolor{background}{parent=background canvas} + +\setbeamercolor{palette primary}{use=structure,fg=structure.fg} +\setbeamercolor{palette secondary}{use=structure,fg=structure.fg!75!black} +\setbeamercolor{palette tertiary}{use=structure,fg=structure.fg!50!black} +\setbeamercolor{palette quaternary}{fg=black} + +\setbeamercolor{palette sidebar primary}{use=normal text,fg=normal text.fg} +\setbeamercolor{palette sidebar secondary}{use=structure,fg=structure.fg} +\setbeamercolor{palette sidebar tertiary}{use=normal text,fg=normal text.fg} +\setbeamercolor{palette sidebar quaternary}{use=structure,fg=structure.fg} + +\setbeamercolor{math text}{} +\setbeamercolor{math text inlined}{parent=math text} +\setbeamercolor{math text displayed}{parent=math text} + +\setbeamercolor{normal text in math text}{} + +\setbeamercolor{local structure}{parent=structure} + +\setbeamercolor{titlelike}{parent=structure} + +\setbeamercolor{title}{parent=titlelike} +\setbeamercolor{title in head/foot}{parent=palette quaternary} +\setbeamercolor{title in sidebar}{parent=palette sidebar quaternary} + +\setbeamercolor{subtitle}{parent=title} + +\setbeamercolor{author}{} +\setbeamercolor{author in head/foot}{parent=palette primary} +\setbeamercolor{author in sidebar}{use=palette sidebar tertiary,fg=palette sidebar tertiary.fg} + +\setbeamercolor{institute}{} +\setbeamercolor{institute in head/foot}{parent=palette tertiary} +\setbeamercolor{institute in sidebar}{use=palette sidebar tertiary,fg=palette sidebar tertiary.fg} + +\setbeamercolor{date}{} +\setbeamercolor{date in head/foot}{parent=palette secondary} +\setbeamercolor{date in sidebar}{use=palette sidebar tertiary,fg=palette sidebar tertiary.fg} + +\setbeamercolor{titlegraphic}{} + +\setbeamercolor{part name}{} +\setbeamercolor{part title}{parent=titlelike} + +\setbeamercolor{section in toc}{parent=structure} +\setbeamercolor{section in toc shaded}{parent=section in toc} +\setbeamercolor{section in head/foot}{parent=palette tertiary} +\setbeamercolor{section in sidebar}{parent=palette sidebar secondary} +\setbeamercolor{section in sidebar shaded}{use=section in sidebar,fg=section in sidebar.fg!40!bg} +\setbeamercolor{section number projected}{parent=item projected} + +\setbeamercolor{subsection in toc}{} +\setbeamercolor{subsection in toc shaded}{parent=subsection in toc} +\setbeamercolor{subsection in head/foot}{parent=palette secondary} +\setbeamercolor{subsection in sidebar}{parent=palette sidebar primary} +\setbeamercolor{subsection in sidebar shaded}{use=subsection in sidebar,fg=subsection in sidebar.fg!40!bg} +\setbeamercolor{subsection number projected}{parent={subitem projected}} + +\setbeamercolor{subsubsection in toc}{parent=subsection in toc} +\setbeamercolor{subsubsection in toc shaded}{parent=subsubsection in toc} +\setbeamercolor{subsubsection in head/foot}{parent=subsection in head/foot} +\setbeamercolor{subsubsection in sidebar}{parent=subsection in sidebar} +\setbeamercolor{subsubsection in sidebar shaded}{parent=subsection in sidebar shaded} +\setbeamercolor{subsubsection number projected}{parent=subsubitem projected} + +\setbeamercolor{headline}{} +\setbeamercolor{footline}{} + +\setbeamercolor{sidebar}{} +\setbeamercolor{sidebar left}{parent=sidebar} +\setbeamercolor{sidebar right}{parent=sidebar} + +\setbeamercolor{logo}{parent=palette secondary} + +\setbeamercolor{frametitle}{parent=titlelike} +\setbeamercolor{framesubtitle}{parent=frametitle} + +\setbeamercolor{frametitle right}{parent=frametitle} + +\setbeamercolor{caption}{} +\setbeamercolor{caption name}{parent=structure} + +\setbeamercolor{button}{use=local structure,bg=local structure.fg!50!bg,fg=white} +\setbeamercolor{button border}{use=button,fg=button.bg} +\setbeamercolor{navigation symbols}{use=structure,fg=structure.fg!40!bg} +\setbeamercolor{navigation symbols dimmed}{use=structure,fg=structure.fg!20!bg} +\setbeamercolor{mini frame}{parent=section in head/foot} + +% Color expressions are defined in the xcolor package +% +% Ex: Mixture of 40% green, 60% yellow: green!40!yellow +% +% The complement of any color can be obtained by prepending +% a minus sign: -green!40!yellow +% +% One can also combine up to three colors (in differing proportions) +% using the rgb command. For example, the following command combines +% 3 parts of the first color, with 2 parts of the second, and one part +% "red" +% +%\color{rgb:-green!40!yellow,3;green!40!yellow,2;red,1} +% Unfortunately, I don't think this works as an argument to setbeamercolor... +% "Orange" bg=green!30!yellow!30!red +% close to burnt orange: red!75!green +% lightgray is a color, but gray!25!white looks better +% +% A nice pair of greens +% (dark, a little too dark to be under black text...) -red!75!green!50!blue!25 +% (light) -red!75!green!50!blue!25!gray +% +% Some colors are only available via options to the xcolor package, eg. +% x11names,DarkOliveGreen4 +% svgnames, Chartreuse +% dvipsnames, ForestGreen +% +% but beamer does not seem to have any of these. +% +% The base color names which are always available are: +% black +% blue +% brown +% cyan +% darkgray +% gray +% green +% lightgray +% lime +% magenta +% olive +% orange +% pink +% purple +% red +% teal +% violet +% white +% yellow + +% From the beamer user guide, pg. 167 +% Inner color themes only specify the colors of elements used in inner +% themes. Most noticably, they specify the colors used for blocks. +% ... + +% Example color definition +% beamercolorthemedefault.sty:\definecolor{beamer@blendedblue}{rgb}{0.2,0.2,0.7} +% beamercolorthemedefault.sty:\setbeamercolor{structure}{fg=beamer@blendedblue} + +% The greens +% \setbeamercolor{block body}{bg=-red!75!green!50!blue!25!gray} +% \setbeamercolor{block title}{parent=structure,bg=-red!75!green!50!blue!25,fg=-red!75!green!50!blue!25!gray} + +%%% +% Set the block body and title background/foreground colors +%%% +% \setbeamercolor{block body}{bg=flyaddedblue} +% \setbeamercolor{block title}{bg=defblockheader,fg=flyaddedblue} + +% Purplish blues, too dark overall +% \setbeamercolor{block body}{bg=beetleaddedblue3} +% \setbeamercolor{block title}{bg=beetleaddedblue2,fg=beetleaddedblue3} + +% Very light blue greys +% 1. Not enough contrast +% \setbeamercolor{block body}{bg=deflightouter3} +% \setbeamercolor{block title}{bg=deflightouter2,fg=deflightouter3} + +% 2. Not enough contrast +% \setbeamercolor{block body}{bg=deflightouter3} +% \setbeamercolor{block title}{bg=deflightouter1,fg=deflightouter3} + +% 3. Combination of deflightouter and fly. The block bg is +% lighter than the all-beetle color scheme I previously thought was best. +% Currently I like this one the best +\setbeamercolor{block body}{bg=deflightouter3} +\setbeamercolor{block title}{bg=beetleaddedblue2,fg=deflightouter3} + +% 4. Greens. Looks like a highlighter. I don't really trust greens +% on projectors... It's almost too bright/hurts your eyes. +% \setbeamercolor{block body}{bg=defexblock} +% \setbeamercolor{block title}{bg=defaddedgreen,fg=defexblock} + +% This looks pretty good ... it's similar to the greens we had before +% but should be lighter. The blocks are just a little too "mint" colored +% though... +% \setbeamercolor{block body}{bg=defexblock} +% \setbeamercolor{block title}{bg=defexblockheader,fg=defexblock} + +% Pea Soup! +%\setbeamercolor{block body}{bg=defaddedgreen} +%\setbeamercolor{block title}{bg=defexblockheader,fg=defaddedgreen} + + +% Changing these didn't seem to do anything...I had to change the +% 'alerted text' color instead +\setbeamercolor{block body alerted}{} +\setbeamercolor{block body example}{} +\setbeamercolor{block title alerted}{parent=alerted text} +\setbeamercolor{block title example}{parent=example text} + +\setbeamercolor{item}{parent=local structure} +\setbeamercolor{subitem}{parent=item} +\setbeamercolor{subsubitem}{parent=subitem} + +\setbeamercolor{item projected}{parent=item,use=item,fg=white,bg=item.fg} +\setbeamercolor{subitem projected}{parent=item projected} +\setbeamercolor{subsubitem projected}{parent=subitem projected} + +\setbeamercolor{enumerate item}{parent=item} +\setbeamercolor{enumerate subitem}{parent=subitem} +\setbeamercolor{enumerate subsubitem}{parent=subsubitem} + +\setbeamercolor{itemize item}{parent=item} +\setbeamercolor{itemize subitem}{parent=subitem} +\setbeamercolor{itemize subsubitem}{parent=subsubitem} + +\setbeamercolor{itemize/enumerate body}{} +\setbeamercolor{itemize/enumerate subbody}{} +\setbeamercolor{itemize/enumerate subsubbody}{} + +\setbeamercolor{description item}{parent=item} + +\setbeamercolor{bibliography item}{parent=item} + +\setbeamercolor{bibliography entry author}{use=structure,fg=structure.fg} +\setbeamercolor{bibliography entry title}{use=normal text,fg=normal text.fg} +\setbeamercolor{bibliography entry location}{use=structure,fg=structure.fg!65!bg} +\setbeamercolor{bibliography entry note}{use=structure,fg=structure.fg!65!bg} + +\setbeamercolor{separation line}{} + +\setbeamercolor{upper separation line head}{parent=separation line} +\setbeamercolor{middle separation line head}{parent=separation line} +\setbeamercolor{lower separation line head}{parent=separation line} + +\setbeamercolor{upper separation line foot}{parent=separation line} +\setbeamercolor{middle separation line foot}{parent=separation line} +\setbeamercolor{lower separation line foot}{parent=separation line} + +\setbeamercolor{abstract}{} +\setbeamercolor{abstract title}{parent=structure} + +\setbeamercolor{verse}{} + +\setbeamercolor{quotation}{} +\setbeamercolor{quote}{parent=quotation} + +\setbeamercolor{page number in head/foot}{fg=fg!50!bg} + +\setbeamercolor{qed symbol}{parent=structure} + +\mode + diff --git a/my_docs/22/lmod_zoom_mtg_2022_01_11/beamercolorthemeTACC16.sty b/my_docs/22/lmod_zoom_mtg_2022_01_11/beamercolorthemeTACC16.sty deleted file mode 120000 index 58415801b..000000000 --- a/my_docs/22/lmod_zoom_mtg_2022_01_11/beamercolorthemeTACC16.sty +++ /dev/null @@ -1 +0,0 @@ -../../beamer/beamercolorthemeTACC16.sty \ No newline at end of file diff --git a/my_docs/22/lmod_zoom_mtg_2022_01_11/beamercolorthemeTACC16.sty b/my_docs/22/lmod_zoom_mtg_2022_01_11/beamercolorthemeTACC16.sty new file mode 100755 index 000000000..779dde91f --- /dev/null +++ b/my_docs/22/lmod_zoom_mtg_2022_01_11/beamercolorthemeTACC16.sty @@ -0,0 +1,192 @@ +% Copyright 2003 by Till Tantau . +% +% This program can be redistributed and/or modified under the terms +% of the GNU Public License, version 2. + +\mode + +\usepackage{textcase,regexpatch} + +\setbeamertemplate{blocks}[rounded][shadow=true] + + +\definecolor{TACCred}{RGB}{180,13,29} +\definecolor{TACCorange}{RGB}{210,104,43} +\definecolor{TACCblue}{RGB}{108, 134, 191} +\definecolor{TACCgreen}{RGB}{23,106,70} + +% I downloaded a gimp color palette from +% http://maururu.net/2007/latex-beamer-color-palette/ +% Which provides rgb values (I think) for several of the +% default beamer themes. You can open this in gimp by +% opening the Palettes dialog, right-clicking anywhere and choosing +% 'Import Palette'. A color in there called 'default added blue' +% appeared to be approximately what I wanted. It had the triple +% of values 141 145 208. If you double-click on this in the +% palette editor it gives you a bunch of information. You can't +% use these values directly to set a color...it just comes out white. +% I think definecolor is expecting something normalized by 255. Yes! + + +%%% +% Set the normal text color +%%% +\setbeamercolor{normal text}{fg=black} %,bg=white} +\setbeamercolor{example text}{fg=TACCgreen} +\setbeamercolor{alerted text}{fg=TACCorange} + + +\setbeamercolor{structure}{fg=black} +%\setbeamercolor{structure}{fg=black} + +\setbeamercolor{background canvas}{parent=normal text} +\setbeamercolor{background}{parent=background canvas} + +\setbeamercolor{palette primary}{use=structure,fg=structure.fg} +\setbeamercolor{palette secondary}{use=structure,fg=structure.fg!75!black} +\setbeamercolor{palette tertiary}{use=structure,fg=structure.fg!50!black} +\setbeamercolor{palette quaternary}{fg=black} + +\setbeamercolor{palette sidebar primary}{use=normal text,fg=normal text.fg} +\setbeamercolor{palette sidebar secondary}{use=structure,fg=structure.fg} +\setbeamercolor{palette sidebar tertiary}{use=normal text,fg=normal text.fg} +\setbeamercolor{palette sidebar quaternary}{use=structure,fg=structure.fg} + +\setbeamercolor{math text}{} +\setbeamercolor{math text inlined}{parent=math text} +\setbeamercolor{math text displayed}{parent=math text} + +\setbeamercolor{normal text in math text}{} + +\setbeamercolor{local structure}{parent=structure} + +\setbeamercolor{titlelike}{parent=structure} + +\setbeamercolor{title}{parent=titlelike} +\setbeamercolor{title in head/foot}{parent=palette quaternary} +\setbeamercolor{title in sidebar}{parent=palette sidebar quaternary} + +\setbeamercolor{subtitle}{parent=title} + +\setbeamercolor{author}{} +\setbeamercolor{author in head/foot}{parent=palette primary} +\setbeamercolor{author in sidebar}{use=palette sidebar tertiary,fg=palette sidebar tertiary.fg} + +\setbeamercolor{institute}{} +\setbeamercolor{institute in head/foot}{parent=palette tertiary} +\setbeamercolor{institute in sidebar}{use=palette sidebar tertiary,fg=palette sidebar tertiary.fg} + +\setbeamercolor{date}{} +\setbeamercolor{date in head/foot}{parent=palette secondary} +\setbeamercolor{date in sidebar}{use=palette sidebar tertiary,fg=palette sidebar tertiary.fg} + +\setbeamercolor{titlegraphic}{} + +\setbeamercolor{part name}{} +\setbeamercolor{part title}{parent=titlelike} + +\setbeamercolor{section in toc}{parent=structure} +\setbeamercolor{section in toc shaded}{parent=section in toc} +\setbeamercolor{section in head/foot}{parent=palette tertiary} +\setbeamercolor{section in sidebar}{parent=palette sidebar secondary} +\setbeamercolor{section in sidebar shaded}{use=section in sidebar,fg=section in sidebar.fg!40!bg} +\setbeamercolor{section number projected}{parent=item projected} + +\setbeamercolor{subsection in toc}{} +\setbeamercolor{subsection in toc shaded}{parent=subsection in toc} +\setbeamercolor{subsection in head/foot}{parent=palette secondary} +\setbeamercolor{subsection in sidebar}{parent=palette sidebar primary} +\setbeamercolor{subsection in sidebar shaded}{use=subsection in sidebar,fg=subsection in sidebar.fg!40!bg} +\setbeamercolor{subsection number projected}{parent={subitem projected}} + +\setbeamercolor{subsubsection in toc}{parent=subsection in toc} +\setbeamercolor{subsubsection in toc shaded}{parent=subsubsection in toc} +\setbeamercolor{subsubsection in head/foot}{parent=subsection in head/foot} +\setbeamercolor{subsubsection in sidebar}{parent=subsection in sidebar} +\setbeamercolor{subsubsection in sidebar shaded}{parent=subsection in sidebar shaded} +\setbeamercolor{subsubsection number projected}{parent=subsubitem projected} + +\setbeamercolor{headline}{} +\setbeamercolor{footline}{} + +\setbeamercolor{sidebar}{} +\setbeamercolor{sidebar left}{parent=sidebar} +\setbeamercolor{sidebar right}{parent=sidebar} + +\setbeamercolor{logo}{parent=palette secondary} + +\setbeamercolor{frametitle}{parent=titlelike} +\setbeamercolor{framesubtitle}{parent=frametitle} + +\setbeamercolor{frametitle right}{parent=frametitle} + +\setbeamercolor{caption}{} +\setbeamercolor{caption name}{parent=structure} + +\setbeamercolor{button}{use=local structure,bg=local structure.fg!50!bg,fg=white} +\setbeamercolor{button border}{use=button,fg=button.bg} +\setbeamercolor{navigation symbols}{use=structure,fg=structure.fg!40!bg} +\setbeamercolor{navigation symbols dimmed}{use=structure,fg=structure.fg!20!bg} +\setbeamercolor{mini frame}{parent=section in head/foot} + +\setbeamercolor{block body}{fg=black} +\setbeamercolor{block body alerted}{fg=black} +\setbeamercolor{block body example}{fg=black} + +\setbeamercolor{block title}{bg=TACCblue,fg=white} +\setbeamercolor{block title alerted}{bg=TACCred,fg=white} +\setbeamercolor{block title example}{bg=TACCgreen,fg=white} + +\setbeamercolor{item}{parent=local structure} +\setbeamercolor{subitem}{parent=item} +\setbeamercolor{subsubitem}{parent=subitem} + +\setbeamercolor{item projected}{parent=item,use=item,fg=black,bg=item.fg} +\setbeamercolor{subitem projected}{parent=item projected} +\setbeamercolor{subsubitem projected}{parent=subitem projected} + +\setbeamercolor{enumerate item}{parent=item} +\setbeamercolor{enumerate subitem}{parent=subitem} +\setbeamercolor{enumerate subsubitem}{parent=subsubitem} + +\setbeamercolor{itemize item}{parent=item} +\setbeamercolor{itemize subitem}{parent=subitem} +\setbeamercolor{itemize subsubitem}{parent=subsubitem} + +\setbeamercolor{itemize/enumerate body}{} +\setbeamercolor{itemize/enumerate subbody}{} +\setbeamercolor{itemize/enumerate subsubbody}{} + +\setbeamercolor{description item}{parent=item} + +\setbeamercolor{bibliography item}{parent=item} + +\setbeamercolor{bibliography entry author}{use=structure,fg=structure.fg} +\setbeamercolor{bibliography entry title}{use=normal text,fg=normal text.fg} +\setbeamercolor{bibliography entry location}{use=structure,fg=structure.fg!65!bg} +\setbeamercolor{bibliography entry note}{use=structure,fg=structure.fg!65!bg} + +\setbeamercolor{separation line}{} + +\setbeamercolor{upper separation line head}{parent=separation line} +\setbeamercolor{middle separation line head}{parent=separation line} +\setbeamercolor{lower separation line head}{parent=separation line} + +\setbeamercolor{upper separation line foot}{parent=separation line} +\setbeamercolor{middle separation line foot}{parent=separation line} +\setbeamercolor{lower separation line foot}{parent=separation line} + +\setbeamercolor{abstract}{} +\setbeamercolor{abstract title}{parent=structure} + +\setbeamercolor{verse}{} + +\setbeamercolor{quotation}{} +\setbeamercolor{quote}{parent=quotation} + +\setbeamercolor{page number in head/foot}{fg=fg!50!bg} + +\setbeamercolor{qed symbol}{parent=structure} + +\mode + diff --git a/my_docs/22/lmod_zoom_mtg_2022_01_11/beamerfontthemeTACC.sty b/my_docs/22/lmod_zoom_mtg_2022_01_11/beamerfontthemeTACC.sty deleted file mode 120000 index 78e971fb8..000000000 --- a/my_docs/22/lmod_zoom_mtg_2022_01_11/beamerfontthemeTACC.sty +++ /dev/null @@ -1 +0,0 @@ -../../beamer/beamerfontthemeTACC.sty \ No newline at end of file diff --git a/my_docs/22/lmod_zoom_mtg_2022_01_11/beamerfontthemeTACC.sty b/my_docs/22/lmod_zoom_mtg_2022_01_11/beamerfontthemeTACC.sty new file mode 100755 index 000000000..ef9ce1e5e --- /dev/null +++ b/my_docs/22/lmod_zoom_mtg_2022_01_11/beamerfontthemeTACC.sty @@ -0,0 +1,12 @@ +% Copyright 2003 by Till Tantau +% +% This program can be redistributed and/or modified under the terms +% of the GNU Public License, version 2. + +\mode + +\setbeamerfont{frametitle}{parent=structure,size=\LARGE,series=\bfseries} +\setbeamerfont{framesubtitle}{parent=frametitle,size=\small} + +\mode + \ No newline at end of file diff --git a/my_docs/22/lmod_zoom_mtg_2022_01_11/beamerfontthemeTACC16.sty b/my_docs/22/lmod_zoom_mtg_2022_01_11/beamerfontthemeTACC16.sty deleted file mode 120000 index a1f2fa5f9..000000000 --- a/my_docs/22/lmod_zoom_mtg_2022_01_11/beamerfontthemeTACC16.sty +++ /dev/null @@ -1 +0,0 @@ -../../beamer/beamerfontthemeTACC16.sty \ No newline at end of file diff --git a/my_docs/22/lmod_zoom_mtg_2022_01_11/beamerfontthemeTACC16.sty b/my_docs/22/lmod_zoom_mtg_2022_01_11/beamerfontthemeTACC16.sty new file mode 100755 index 000000000..b65271835 --- /dev/null +++ b/my_docs/22/lmod_zoom_mtg_2022_01_11/beamerfontthemeTACC16.sty @@ -0,0 +1,21 @@ +% Copyright 2003 by Till Tantau +% +% This program can be redistributed and/or modified under the terms +% of the GNU Public License, version 2. + +\mode +\setbeamerfont{title}{parent=structure,size=\LARGE,series=\bfseries} +\setbeamerfont{author}{parent=structure,size=\large, series=\normalfont} +\setbeamerfont{frametitle}{parent=structure,size=\LARGE,series=\bfseries} +\setbeamerfont{framesubtitle}{parent=frametitle,size=\small} + +%\usefonttheme{professionalfonts} % using non standard fonts for beamer +%\usefonttheme{serif} % default family is serif +%\usepackage{fontspec} +%\setmainfont{Century Gothic} + +\usepackage{fontspec} +\usepackage{libertine} + +\mode + diff --git a/my_docs/22/lmod_zoom_mtg_2022_01_11/beamerinnerthemeTACC.sty b/my_docs/22/lmod_zoom_mtg_2022_01_11/beamerinnerthemeTACC.sty deleted file mode 120000 index 8d5ae3921..000000000 --- a/my_docs/22/lmod_zoom_mtg_2022_01_11/beamerinnerthemeTACC.sty +++ /dev/null @@ -1 +0,0 @@ -../../beamer/beamerinnerthemeTACC.sty \ No newline at end of file diff --git a/my_docs/22/lmod_zoom_mtg_2022_01_11/beamerinnerthemeTACC.sty b/my_docs/22/lmod_zoom_mtg_2022_01_11/beamerinnerthemeTACC.sty new file mode 100755 index 000000000..29e2bce81 --- /dev/null +++ b/my_docs/22/lmod_zoom_mtg_2022_01_11/beamerinnerthemeTACC.sty @@ -0,0 +1,11 @@ +\mode + +\setbeamertemplate{itemize item}[circle] +\setbeamertemplate{itemize subitem}{{}--{}} +\setbeamertemplate{itemize subsubitem}[circle] +\setbeamertemplate{section in toc}{$\bullet$\hskip.5em\inserttocsection} +%\setbeamertemplate{subsection in toc}{} +\setbeamertemplate{subsubsection in toc}{} + +\mode + diff --git a/my_docs/22/lmod_zoom_mtg_2022_01_11/beamerinnerthemeTACC16.sty b/my_docs/22/lmod_zoom_mtg_2022_01_11/beamerinnerthemeTACC16.sty deleted file mode 120000 index 5955acc99..000000000 --- a/my_docs/22/lmod_zoom_mtg_2022_01_11/beamerinnerthemeTACC16.sty +++ /dev/null @@ -1 +0,0 @@ -../../beamer/beamerinnerthemeTACC16.sty \ No newline at end of file diff --git a/my_docs/22/lmod_zoom_mtg_2022_01_11/beamerinnerthemeTACC16.sty b/my_docs/22/lmod_zoom_mtg_2022_01_11/beamerinnerthemeTACC16.sty new file mode 100755 index 000000000..f7f454e1d --- /dev/null +++ b/my_docs/22/lmod_zoom_mtg_2022_01_11/beamerinnerthemeTACC16.sty @@ -0,0 +1,11 @@ +\mode + +\setbeamertemplate{itemize item}[triangle] +\setbeamertemplate{itemize subitem}[triangle] +\setbeamertemplate{itemize subsubitem}[triangle] +\setbeamertemplate{section in toc}{$\bullet$\hskip.5em\inserttocsection} +%\setbeamertemplate{subsection in toc}{} +\setbeamertemplate{subsubsection in toc}{} + +\mode + diff --git a/my_docs/22/lmod_zoom_mtg_2022_01_11/beamerouterthemeTACC.sty b/my_docs/22/lmod_zoom_mtg_2022_01_11/beamerouterthemeTACC.sty deleted file mode 120000 index da0a45d33..000000000 --- a/my_docs/22/lmod_zoom_mtg_2022_01_11/beamerouterthemeTACC.sty +++ /dev/null @@ -1 +0,0 @@ -../../beamer/beamerouterthemeTACC.sty \ No newline at end of file diff --git a/my_docs/22/lmod_zoom_mtg_2022_01_11/beamerouterthemeTACC.sty b/my_docs/22/lmod_zoom_mtg_2022_01_11/beamerouterthemeTACC.sty new file mode 100755 index 000000000..038580303 --- /dev/null +++ b/my_docs/22/lmod_zoom_mtg_2022_01_11/beamerouterthemeTACC.sty @@ -0,0 +1,196 @@ +% Copyright 2003 by Till Tantau +% +% This program can be redistributed and/or modified under the terms +% of the GNU Public License, version 2. + +\mode + +\setbeamertemplate{frametitle}[default][center] +\addtobeamertemplate{frametitle}{\vskip 4ex minus 4ex}{} + +% Here we define what appears at the bottom of each slide: the "footline". +\setbeamertemplate{footline}{% + \leavevmode% + + % Horizontal line dividing the rest of the slide from the footer? + % hrule goes all the way across... + % \hrule height.3pt% + % With \rule, you can specify the thickness + % \rule[raise-height]{width}{thickness} + \hspace{.025\textwidth}\rule{.95\textwidth}{.5pt} + + \hbox{% + % On the left half of the footer, insert the TACC logo + \begin{minipage}{.5\textwidth}% + \hskip .033\textwidth%Give horizontal space else this will set on the left edge of the slide! + % TACC logo with custom viewport! + \includegraphics[viewport=1 -1 135 35, clip=true, width=.4\textwidth]{figures/TACC_logo} + \end{minipage} + % + \begin{minipage}{.5\textwidth}% + \vskip .023\textheight% + \raggedleft% + \setlength{\rightskip}{.033\textwidth} + % + % If we are not on the first page, insert a page number + % For some reason, insertframenumber is buggy when you have fragile + % slides with verbatim environments in them... it tends to skip numbers + % for some reason! On the other hand, the pagenumber is incremented + % for *every* slide, including transition slides... + \ifnum \thepage>1 + % \insertshorttitle + \insertframenumber + % \insertframenumber/\inserttotalframenumber + % \insertpagenumber + \else % Do a phantom of whatever you do on other pages, so spacing matches + %$\phantom{\insertshorttitle}$ + $\phantom{\insertframenumber}$ + %$\phantom{\insertframenumber/\inserttotalframenumber}$ + %$\phantom{\insertpagenumber}$ + \fi + \hfill\includegraphics[width=.5\textwidth]{figures/UT_logo}% + \end{minipage}% + }% + \vskip .023\textheight% +} + + + + +\ifTACCheadernav + +\usesectionheadtemplate +{\hfill\insertsectionhead} +{\hfill\color{fg!50!bg}\insertsectionhead} + +% Head +\ifbeamer@compress + +% Here we define how the top of the frame looks, the "headline". +\setbeamertemplate{headline} +{% + \ifnum \thepage>1 + \leavevmode% + \begin{beamercolorbox}[wd=.5\paperwidth,ht=2.5ex,dp=1.125ex]{% + section in head/foot}% + \insertsectionnavigationhorizontal{.5\paperwidth}{\hskip0pt plus1filll}{}% + \end{beamercolorbox}% + \begin{beamercolorbox}[wd=.5\paperwidth,ht=2.5ex,dp=1.125ex]{% + subsection in head/foot}% + \insertsubsectionnavigationhorizontal{% + .5\paperwidth}{}{\hskip0pt plus1filll}% + \end{beamercolorbox}% + \fi %\thepage>1 +} + +\else% Not compressed + +\setbeamertemplate{headline} +{% + \ifnum \thepage>1 + \leavevmode% + \@tempdimb=2.4375ex% + \ifnum\beamer@subsectionmax<\beamer@sectionmax% + \multiply\@tempdimb by\beamer@sectionmax% + \else% + \multiply\@tempdimb by\beamer@subsectionmax% + \fi% + \ifdim\@tempdimb>0pt% + \advance\@tempdimb by 1.125ex% + \begin{beamercolorbox}[wd=.5\paperwidth,ht=\@tempdimb]{% + section in head/foot}% + \vbox to\@tempdimb{\vfil\insertsectionnavigation{.5\paperwidth}\vfil}% + \end{beamercolorbox}% + \begin{beamercolorbox}[wd=.5\paperwidth,ht=\@tempdimb]{% + subsection in head/foot}% + \vbox to\@tempdimb{\vfil\insertsubsectionnavigation{.5\paperwidth}\vfil}% + \end{beamercolorbox}% + \fi% + \fi % \thepage>1 +} + +\fi % end if compressed +\fi % TACCheadernav + + +\ifTACCheadertree + +\setbeamertemplate{headline} +{ + \begin{beamercolorbox}[wd=\paperwidth,colsep=1.5pt + ]{upper separation line head} + \end{beamercolorbox} + % + % Place short title + % + \begin{beamercolorbox}[wd=\paperwidth,ht=2.5ex,dp=1.125ex,% + leftskip=.3cm,rightskip=.3cm plus1fil]{title in head/foot} + \usebeamerfont{title in head/foot}\insertshorttitle + \end{beamercolorbox} + + % + % Place section + % + \begin{beamercolorbox}[wd=\paperwidth,ht=2.5ex,dp=1.125ex,% + leftskip=.3cm,rightskip=.3cm plus1fil]{section in head/foot} + \usebeamerfont{section in head/foot}% + %\ifbeamer@tree@showhooks + \setbox\beamer@tempbox=\hbox{\insertsectionhead}% + \ifdim\wd\beamer@tempbox>1pt% + \hskip2pt\raise1.9pt\hbox{\vrule width0.4pt height1.875ex\vrule width 5pt height0.4pt}% + \hskip1pt% + \fi% \ifdim + %\else% + %\hskip6pt% + %\fi% \ifbeamer + \insertsectionhead + \end{beamercolorbox} + +% +% Place subsection +% +\begin{beamercolorbox}[wd=\paperwidth,ht=2.5ex,dp=1.125ex,% + leftskip=.3cm,rightskip=.3cm plus1fil]{subsection in head/foot} + \usebeamerfont{subsection in head/foot}% + %\ifbeamer@tree@showhooks + \setbox\beamer@tempbox=\hbox{\insertsubsectionhead}% + \ifdim\wd\beamer@tempbox>1pt% + \hskip9.4pt\raise1.9pt\hbox{\vrule width0.4pt height1.875ex\vrule width 5pt height0.4pt}% + \hskip1pt% + \fi% \ifdim + %\else% + %\hskip12pt% + %\fi% \ifbeamer + \insertsubsectionhead +\end{beamercolorbox} + +% +% Place final separation box +% + \begin{beamercolorbox}[wd=\paperwidth,colsep=1.5pt + ]{lower separation line head} + \end{beamercolorbox} + + % + % Another matching rule which helps to frame the content + % + \hspace{.025\textwidth}\rule{.95\textwidth}{.5pt} +} +\fi % TACCheadertree + + +% The following command suppresses all navigation symbols. This is +% necessary in the TACC theme, since it overlaps where we want the +% logo to be. +\setbeamertemplate{navigation symbols}{} + +% Align the navigation symbols vertically (still overlaps our logo!) +%\setbeamertemplate{navigation symbols}[vertical]{} + +% Only places the slide-forward and slide-back symbol, but yes, +% this still overlaps our logo! +%\setbeamertemplate{navigation symbols}[only frame symbol]{} + + +\mode + diff --git a/my_docs/22/lmod_zoom_mtg_2022_01_11/beamerouterthemeTACC16.sty b/my_docs/22/lmod_zoom_mtg_2022_01_11/beamerouterthemeTACC16.sty deleted file mode 120000 index 54bd09537..000000000 --- a/my_docs/22/lmod_zoom_mtg_2022_01_11/beamerouterthemeTACC16.sty +++ /dev/null @@ -1 +0,0 @@ -../../beamer/beamerouterthemeTACC16.sty \ No newline at end of file diff --git a/my_docs/22/lmod_zoom_mtg_2022_01_11/beamerouterthemeTACC16.sty b/my_docs/22/lmod_zoom_mtg_2022_01_11/beamerouterthemeTACC16.sty new file mode 100755 index 000000000..d5e6388c7 --- /dev/null +++ b/my_docs/22/lmod_zoom_mtg_2022_01_11/beamerouterthemeTACC16.sty @@ -0,0 +1,312 @@ +% Antonio Gomez (agomez@tacc.utexas.edu) +% 4-20-17. Added option to put the footer on the right side + + + +\mode + +\usepackage{xcolor} +\usepackage{graphicx} +\usepackage{etoolbox} + + + +% This theme accepts the "rightfooter" option +% When used, it will put the TACC logo at the bottom of the slide on the right side +% By default, it goes to the left + +\xifaspectratio{ + {169} { + \pgfdeclareimage[width=\paperwidth]{titlebackground}{./figures/master169.jpg} + \if@rightfooterOption + \pgfdeclareimage[width=\paperwidth]{background}{./figures/secondary_right169.jpg} +\else + \pgfdeclareimage[width=\paperwidth]{background}{./figures/secondary169.jpg} +\fi +} +}[ +\pgfdeclareimage[width=\paperwidth]{titlebackground}{./figures/master.jpg} + \if@rightfooterOption + \pgfdeclareimage[width=\paperwidth]{background}{./figures/secondary_right.jpg} +\else + \pgfdeclareimage[width=\paperwidth]{background}{./figures/secondary.jpg} +\fi +] + +\setbeamertemplate{background canvas}{% +\xifaspectratio{ + {169} { + \ifnum\c@framenumber=1 % + \begin{picture}(0,0) + \put(-3,-256){% + \pgfuseimage{titlebackground} + } + \end{picture} + \else% + \begin{picture}(0,0) + \put(-3,-260){% + \pgfuseimage{background} + } + \end{picture} + \fi + } + {43} { + \ifnum\c@framenumber=1 % + \begin{picture}(0,0) + \put(-4,-274){% + \pgfuseimage{titlebackground} + } + \end{picture} + \else% + \begin{picture}(0,0) + \put(-4,-274){% + \pgfuseimage{background} + } + \end{picture} + \fi + } +} +} + + + +%\setbeamertemplate{background canvas}{% +% % On title page +% \ifnum\c@framenumber=1 % +% \begin{picture}(0,0) +% \put(0,-253){% +% \pgfuseimage{titlebackground} +% } +% \end{picture} +% +% \else% +% \xifaspectratio{ +% {169} { +% % Other frames background +% \begin{picture}(0,0) +% \put(-4,-260){% +% \pgfuseimage{background} +% } +% \end{picture} +% } +% }[ +% % Other frames background +% \begin{picture}(0,0) +% \put(-4,-274){% +% \pgfuseimage{background} +% } +% \end{picture} +% ] +% \fi% +%} + + +\setbeamertemplate{title page}{ +\vspace{40pt} +\begin{center} +\usebeamerfont{title} {\huge \inserttitle}\par +\vspace{4ex} +\usebeamerfont{author} { + \insertauthor +}\par +\vspace{2ex} +\usebeamerfont{institute}{ + \insertinstitute +} \par +\vspace{2ex} +\usebeamerfont{date}{ + \insertdate +} +\end{center} +} + + +\setbeamertemplate{frametitle}[default][center] +\setbeamertemplate{frametitle}{ + \makeatletter + \regexpatchcmd{\insertframetitle} + {(\c{usebeamertemplate}.*)\c{fi}} + {\c{NoCaseChange}\cB\{\1\cE\}\c{fi}} + {}{}% + \makeatother + \vskip1ex + \insertframetitle +} + +% Here we define what appears at the bottom of each slide: the "footline". +\setbeamertemplate{footline}{% + \leavevmode% + + % Horizontal line dividing the rest of the slide from the footer? + % hrule goes all the way across... + % \hrule height.3pt% + % With \rule, you can specify the thickness + % \rule[raise-height]{width}{thickness} + % \hspace{.025\textwidth}\rule{.95\textwidth}{.5pt} + + \hbox{% + \ifnum \thepage>1 + \if@rightfooterOption + \begin{minipage}{.2\textwidth}% + \hskip .05\textwidth%Give horizontal space else this will set on the left edge of the slide! + \end{minipage} + \else + \begin{minipage}{.4\textwidth}% + \hskip .05\textwidth%Give horizontal space else this will set on the left edge of the slide! + \end{minipage} + \fi + + + \begin{minipage}{\textwidth}% + % \vskip .023\textheight% + \raggedleft% + \setlength{\rightskip}{\textwidth} + \if@rightfooterOption + \hbox{% + \begin{beamercolorbox}[wd=0.7\textwidth,ht=2.25ex,dp=1ex,left]{author in head/foot}% + \insertshorttitle{} \hskip .01\textwidth | \hskip .01\textwidth \insertdate{} \hskip .01\textwidth | \hskip .01\textwidth \insertframenumber{} + \end{beamercolorbox}% + } + \else + \hbox{% + \begin{beamercolorbox}[wd=0.5\textwidth,ht=2.25ex,dp=1ex,left]{author in head/foot}% + \insertshorttitle{} \hskip .01\textwidth | \hskip .01\textwidth \insertdate{} \hskip .01\textwidth | \hskip .01\textwidth \insertframenumber{} + \end{beamercolorbox}% + } + \fi + + \end{minipage}% + \begin{minipage}{.05\textwidth}% + \end{minipage}% + \fi %\thepage>1 + }% + \vskip .023\textheight% + +} + + + + +\ifTACCheadernav + +\usesectionheadtemplate +{\hfill\insertsectionhead} +{\hfill\color{fg!50!bg}\insertsectionhead} + +% Head +\ifbeamer@compress + +% Here we define how the top of the frame looks, the "headline". +\setbeamertemplate{headline} +{% + \ifnum \thepage>1 + \leavevmode% + \begin{beamercolorbox}[wd=.5\paperwidth,ht=2.5ex,dp=1.125ex]{% + section in head/foot}% + \insertsectionnavigationhorizontal{.5\paperwidth}{\hskip0pt plus1filll}{}% + \end{beamercolorbox}% + \begin{beamercolorbox}[wd=.5\paperwidth,ht=2.5ex,dp=1.125ex]{% + subsection in head/foot}% + \insertsubsectionnavigationhorizontal{% + .5\paperwidth}{}{\hskip0pt plus1filll}% + \end{beamercolorbox}% + \fi %\thepage>1 +} + +\else% Not compressed + +\setbeamertemplate{headline} +{% + \ifnum \thepage>1 + \leavevmode% + \@tempdimb=2.4375ex% + \ifnum\beamer@subsectionmax<\beamer@sectionmax% + \multiply\@tempdimb by\beamer@sectionmax% + \else% + \multiply\@tempdimb by\beamer@subsectionmax% + \fi% + \ifdim\@tempdimb>0pt% + \advance\@tempdimb by 1.125ex% + \begin{beamercolorbox}[wd=.5\paperwidth,ht=\@tempdimb]{% + section in head/foot}% + \vbox to\@tempdimb{\vfil\insertsectionnavigation{.5\paperwidth}\vfil}% + \end{beamercolorbox}% + \begin{beamercolorbox}[wd=.5\paperwidth,ht=\@tempdimb]{% + subsection in head/foot}% + \vbox to\@tempdimb{\vfil\insertsubsectionnavigation{.5\paperwidth}\vfil}% + \end{beamercolorbox}% + \fi% + \fi % \thepage>1 +} + +\fi % end if compressed +\fi % TACCheadernav + + +\ifTACCheadertree + +\setbeamertemplate{headline} +{ + \begin{beamercolorbox}[wd=\paperwidth,colsep=1.5pt]{upper separation line head} + \end{beamercolorbox} + % + % Place short title + % + \begin{beamercolorbox}[wd=\paperwidth,ht=2.5ex,dp=1.125ex,% + leftskip=.3cm,rightskip=.3cm plus1fil]{title in head/foot} + \usebeamerfont{title in head/foot}\insertshorttitle + \end{beamercolorbox} + + % + % Place section + % + \begin{beamercolorbox}[wd=\paperwidth,ht=2.5ex,dp=1.125ex,% + leftskip=.3cm,rightskip=.3cm plus1fil]{section in head/foot} + \usebeamerfont{section in head/foot}% + %\ifbeamer@tree@showhooks + \setbox\beamer@tempbox=\hbox{\insertsectionhead}% + \ifdim\wd\beamer@tempbox>1pt% + \hskip2pt\raise1.9pt\hbox{\vrule width0.4pt height1.875ex\vrule width 5pt height0.4pt}% + \hskip1pt% + \fi + \insertsectionhead + \end{beamercolorbox} + +% +% Place subsection +% +\begin{beamercolorbox}[wd=\paperwidth,ht=2.5ex,dp=1.125ex,% + leftskip=.3cm,rightskip=.3cm plus1fil]{subsection in head/foot} + \usebeamerfont{subsection in head/foot}% + %\ifbeamer@tree@showhooks + \setbox\beamer@tempbox=\hbox{\insertsubsectionhead}% + \ifdim\wd\beamer@tempbox>1pt% + \hskip9.4pt\raise1.9pt\hbox{\vrule width0.4pt height1.875ex\vrule width 5pt height0.4pt}% + \hskip1pt% + \fi + \insertsubsectionhead +\end{beamercolorbox} + +% +% Place final separation box +% + \begin{beamercolorbox}[wd=\paperwidth,colsep=1.5pt + ]{lower separation line head} + \end{beamercolorbox} + + % + % Another matching rule which helps to frame the content + % + \hspace{.025\textwidth}\rule{.95\textwidth}{.5pt} +} +\fi % TACCheadertree + + +% The following command suppresses all navigation symbols. This is +% necessary in the TACC theme, since it overlaps where we want the +% logo to be. +\setbeamertemplate{navigation symbols}{} + + +\mode + diff --git a/my_docs/22/lmod_zoom_mtg_2022_01_11/beamerthemeTACC.sty b/my_docs/22/lmod_zoom_mtg_2022_01_11/beamerthemeTACC.sty deleted file mode 120000 index 5c339abd4..000000000 --- a/my_docs/22/lmod_zoom_mtg_2022_01_11/beamerthemeTACC.sty +++ /dev/null @@ -1 +0,0 @@ -../../beamer/beamerthemeTACC.sty \ No newline at end of file diff --git a/my_docs/22/lmod_zoom_mtg_2022_01_11/beamerthemeTACC.sty b/my_docs/22/lmod_zoom_mtg_2022_01_11/beamerthemeTACC.sty new file mode 100755 index 000000000..c6a1b1269 --- /dev/null +++ b/my_docs/22/lmod_zoom_mtg_2022_01_11/beamerthemeTACC.sty @@ -0,0 +1,26 @@ +%% TACC theme for beamer + +\newif\ifTACCheadernav +\DeclareOption{headernav}{\global\TACCheadernavtrue} + +\newif\ifTACCheadertree +\DeclareOption{headertree}{\global\TACCheadertreetrue} +\ProcessOptions + +\mode + +\usefonttheme{TACC} +\usecolortheme{TACC} +\useinnertheme{TACC} +\useoutertheme{TACC} + +\mode + + +\newcommand{\event}[1]{% + \makeatletter% + \def\TACC@eventname{#1}% + \makeatother} + +\newcommand{\sectionframe}[1]{\section{#1}\frame{\Large\textbf{#1}}} +\newcommand{\subsectionframe}[1]{\subsection{#1}\frame{\large\textbf{#1}}} diff --git a/my_docs/22/lmod_zoom_mtg_2022_01_11/beamerthemeTACC16.sty b/my_docs/22/lmod_zoom_mtg_2022_01_11/beamerthemeTACC16.sty deleted file mode 120000 index 7a9d4d296..000000000 --- a/my_docs/22/lmod_zoom_mtg_2022_01_11/beamerthemeTACC16.sty +++ /dev/null @@ -1 +0,0 @@ -../../beamer/beamerthemeTACC16.sty \ No newline at end of file diff --git a/my_docs/22/lmod_zoom_mtg_2022_01_11/beamerthemeTACC16.sty b/my_docs/22/lmod_zoom_mtg_2022_01_11/beamerthemeTACC16.sty new file mode 100755 index 000000000..b522d0207 --- /dev/null +++ b/my_docs/22/lmod_zoom_mtg_2022_01_11/beamerthemeTACC16.sty @@ -0,0 +1,61 @@ +%% TACC theme for beamer + + +\newif\if@rightfooterOption +\@rightfooterOptionfalse +\DeclareOption{rightfooter}{\@rightfooterOptiontrue} +\ProcessOptions + + +\newif\ifTACCheadernav +\DeclareOption{headernav}{\global\TACCheadernavtrue} + +\newif\ifTACCheadertree +\DeclareOption{headertree}{\global\TACCheadertreetrue} +\ProcessOptions + +\usepackage{xparse} +\ExplSyntaxOn +\NewDocumentCommand{\ifaspectratio}{mmm} + { + % Recover the option from those passed to the class + \keys_set:nf { zunbeltz/beameroptions } { \use:c { opt@beamer.cls } } + \str_if_eq:nVTF { #1 } \l_zunbeltz_aspectratio_tl { #2 } { #3 } + } +\NewDocumentCommand{\xifaspectratio}{mO{}} + { + % Recover the option from those passed to the class + \keys_set:nf { zunbeltz/beameroptions } { \use:c { opt@beamer.cls } } + \str_case:VnF \l_zunbeltz_aspectratio_tl { #1 } { #2 } + } +% We need to define only one key, the other are treated as `unknown' +\keys_define:nn { zunbeltz/beameroptions } + { + aspectratio .tl_set:N = \l_zunbeltz_aspectratio_tl, + aspectratio .initial:n = 43, + unknown .code:n = {}, + } + +% Generate the variants we need +\cs_generate_variant:Nn \keys_set:nn { nf } +\cs_generate_variant:Nn \str_if_eq:nnTF { nV } +\cs_generate_variant:Nn \str_case:nnF { V } +\ExplSyntaxOff + +\mode + +\usefonttheme{TACC16} +\useinnertheme{TACC16} +\useoutertheme{TACC16} +\usecolortheme{TACC16} + +\mode + + +\newcommand{\event}[1]{% + \makeatletter% + \def\TACC@eventname{#1}% + \makeatother} + +\newcommand{\sectionframe}[1]{\section{#1}\frame{\Large\textbf{#1}}} +\newcommand{\subsectionframe}[1]{\subsection{#1}\frame{\large\textbf{#1}}} diff --git a/my_docs/22/lmod_zoom_mtg_2022_01_11/figures b/my_docs/22/lmod_zoom_mtg_2022_01_11/figures deleted file mode 120000 index ddafd8974..000000000 --- a/my_docs/22/lmod_zoom_mtg_2022_01_11/figures +++ /dev/null @@ -1 +0,0 @@ -../../beamer/figures \ No newline at end of file diff --git a/my_docs/22/lmod_zoom_mtg_2022_01_11/figures/TACC_logo.pdf b/my_docs/22/lmod_zoom_mtg_2022_01_11/figures/TACC_logo.pdf new file mode 100755 index 000000000..c018a20cb Binary files /dev/null and b/my_docs/22/lmod_zoom_mtg_2022_01_11/figures/TACC_logo.pdf differ diff --git a/my_docs/22/lmod_zoom_mtg_2022_01_11/figures/UT_logo.pdf b/my_docs/22/lmod_zoom_mtg_2022_01_11/figures/UT_logo.pdf new file mode 100755 index 000000000..d5b42e752 Binary files /dev/null and b/my_docs/22/lmod_zoom_mtg_2022_01_11/figures/UT_logo.pdf differ diff --git a/my_docs/22/lmod_zoom_mtg_2022_01_11/figures/cc.png b/my_docs/22/lmod_zoom_mtg_2022_01_11/figures/cc.png new file mode 100644 index 000000000..8a532ff8f Binary files /dev/null and b/my_docs/22/lmod_zoom_mtg_2022_01_11/figures/cc.png differ diff --git a/my_docs/22/lmod_zoom_mtg_2022_01_11/figures/isa.png b/my_docs/22/lmod_zoom_mtg_2022_01_11/figures/isa.png new file mode 100644 index 000000000..f95d985e7 Binary files /dev/null and b/my_docs/22/lmod_zoom_mtg_2022_01_11/figures/isa.png differ diff --git a/my_docs/22/lmod_zoom_mtg_2022_01_11/figures/master.jpg b/my_docs/22/lmod_zoom_mtg_2022_01_11/figures/master.jpg new file mode 100644 index 000000000..f5c56c04a Binary files /dev/null and b/my_docs/22/lmod_zoom_mtg_2022_01_11/figures/master.jpg differ diff --git a/my_docs/22/lmod_zoom_mtg_2022_01_11/figures/master169.jpg b/my_docs/22/lmod_zoom_mtg_2022_01_11/figures/master169.jpg new file mode 100644 index 000000000..b215776eb Binary files /dev/null and b/my_docs/22/lmod_zoom_mtg_2022_01_11/figures/master169.jpg differ diff --git a/my_docs/22/lmod_zoom_mtg_2022_01_11/figures/master169.png b/my_docs/22/lmod_zoom_mtg_2022_01_11/figures/master169.png new file mode 100644 index 000000000..bc5c0ed12 Binary files /dev/null and b/my_docs/22/lmod_zoom_mtg_2022_01_11/figures/master169.png differ diff --git a/my_docs/22/lmod_zoom_mtg_2022_01_11/figures/secondary.jpg b/my_docs/22/lmod_zoom_mtg_2022_01_11/figures/secondary.jpg new file mode 100644 index 000000000..d905a95c9 Binary files /dev/null and b/my_docs/22/lmod_zoom_mtg_2022_01_11/figures/secondary.jpg differ diff --git a/my_docs/22/lmod_zoom_mtg_2022_01_11/figures/secondary169.jpg b/my_docs/22/lmod_zoom_mtg_2022_01_11/figures/secondary169.jpg new file mode 100644 index 000000000..4eb017957 Binary files /dev/null and b/my_docs/22/lmod_zoom_mtg_2022_01_11/figures/secondary169.jpg differ diff --git a/my_docs/22/lmod_zoom_mtg_2022_01_11/figures/secondary169.png b/my_docs/22/lmod_zoom_mtg_2022_01_11/figures/secondary169.png new file mode 100644 index 000000000..cb9060a56 Binary files /dev/null and b/my_docs/22/lmod_zoom_mtg_2022_01_11/figures/secondary169.png differ diff --git a/my_docs/22/lmod_zoom_mtg_2022_01_11/figures/secondary_right.jpg b/my_docs/22/lmod_zoom_mtg_2022_01_11/figures/secondary_right.jpg new file mode 100644 index 000000000..f25f93a58 Binary files /dev/null and b/my_docs/22/lmod_zoom_mtg_2022_01_11/figures/secondary_right.jpg differ diff --git a/my_docs/22/lmod_zoom_mtg_2022_01_11/figures/secondary_right169.jpg b/my_docs/22/lmod_zoom_mtg_2022_01_11/figures/secondary_right169.jpg new file mode 100644 index 000000000..567a1078f Binary files /dev/null and b/my_docs/22/lmod_zoom_mtg_2022_01_11/figures/secondary_right169.jpg differ diff --git a/my_docs/22/lmod_zoom_mtg_2022_01_11/themes b/my_docs/22/lmod_zoom_mtg_2022_01_11/themes deleted file mode 120000 index a98530730..000000000 --- a/my_docs/22/lmod_zoom_mtg_2022_01_11/themes +++ /dev/null @@ -1 +0,0 @@ -../../beamer/themes \ No newline at end of file diff --git a/my_docs/22/lmod_zoom_mtg_2022_01_11/themes/beamercolorthemeTACC16.sty b/my_docs/22/lmod_zoom_mtg_2022_01_11/themes/beamercolorthemeTACC16.sty new file mode 100644 index 000000000..248ae8cb6 --- /dev/null +++ b/my_docs/22/lmod_zoom_mtg_2022_01_11/themes/beamercolorthemeTACC16.sty @@ -0,0 +1,193 @@ +% Copyright 2003 by Till Tantau . +% +% This program can be redistributed and/or modified under the terms +% of the GNU Public License, version 2. + +\mode + +\usepackage{textcase,regexpatch} + +\setbeamertemplate{blocks}[rounded][shadow=true] + + +\definecolor{TACCred}{RGB}{180,13,29} +\definecolor{TACCorange}{RGB}{210,104,43} +\definecolor{TACCblue}{RGB}{21,77,122} +%\definecolor{TACCgreen}{RGB}{30,134,104} +\definecolor{TACCgreen}{RGB}{49,168,51} + +% I downloaded a gimp color palette from +% http://maururu.net/2007/latex-beamer-color-palette/ +% Which provides rgb values (I think) for several of the +% default beamer themes. You can open this in gimp by +% opening the Palettes dialog, right-clicking anywhere and choosing +% 'Import Palette'. A color in there called 'default added blue' +% appeared to be approximately what I wanted. It had the triple +% of values 141 145 208. If you double-click on this in the +% palette editor it gives you a bunch of information. You can't +% use these values directly to set a color...it just comes out white. +% I think definecolor is expecting something normalized by 255. Yes! + + +%%% +% Set the normal text color +%%% +\setbeamercolor{normal text}{fg=black} %,bg=white} +\setbeamercolor{example text}{fg=TACCgreen} +\setbeamercolor{alerted text}{fg=TACCorange} + + +\setbeamercolor{structure}{fg=black} +%\setbeamercolor{structure}{fg=black} + +\setbeamercolor{background canvas}{parent=normal text} +\setbeamercolor{background}{parent=background canvas} + +\setbeamercolor{palette primary}{use=structure,fg=structure.fg} +\setbeamercolor{palette secondary}{use=structure,fg=structure.fg!75!black} +\setbeamercolor{palette tertiary}{use=structure,fg=structure.fg!50!black} +\setbeamercolor{palette quaternary}{fg=black} + +\setbeamercolor{palette sidebar primary}{use=normal text,fg=normal text.fg} +\setbeamercolor{palette sidebar secondary}{use=structure,fg=structure.fg} +\setbeamercolor{palette sidebar tertiary}{use=normal text,fg=normal text.fg} +\setbeamercolor{palette sidebar quaternary}{use=structure,fg=structure.fg} + +\setbeamercolor{math text}{} +\setbeamercolor{math text inlined}{parent=math text} +\setbeamercolor{math text displayed}{parent=math text} + +\setbeamercolor{normal text in math text}{} + +\setbeamercolor{local structure}{parent=structure} + +\setbeamercolor{titlelike}{parent=structure} + +\setbeamercolor{title}{parent=titlelike} +\setbeamercolor{title in head/foot}{parent=palette quaternary} +\setbeamercolor{title in sidebar}{parent=palette sidebar quaternary} + +\setbeamercolor{subtitle}{parent=title} + +\setbeamercolor{author}{} +\setbeamercolor{author in head/foot}{parent=palette primary} +\setbeamercolor{author in sidebar}{use=palette sidebar tertiary,fg=palette sidebar tertiary.fg} + +\setbeamercolor{institute}{} +\setbeamercolor{institute in head/foot}{parent=palette tertiary} +\setbeamercolor{institute in sidebar}{use=palette sidebar tertiary,fg=palette sidebar tertiary.fg} + +\setbeamercolor{date}{} +\setbeamercolor{date in head/foot}{parent=palette secondary} +\setbeamercolor{date in sidebar}{use=palette sidebar tertiary,fg=palette sidebar tertiary.fg} + +\setbeamercolor{titlegraphic}{} + +\setbeamercolor{part name}{} +\setbeamercolor{part title}{parent=titlelike} + +\setbeamercolor{section in toc}{parent=structure} +\setbeamercolor{section in toc shaded}{parent=section in toc} +\setbeamercolor{section in head/foot}{parent=palette tertiary} +\setbeamercolor{section in sidebar}{parent=palette sidebar secondary} +\setbeamercolor{section in sidebar shaded}{use=section in sidebar,fg=section in sidebar.fg!40!bg} +\setbeamercolor{section number projected}{parent=item projected} + +\setbeamercolor{subsection in toc}{} +\setbeamercolor{subsection in toc shaded}{parent=subsection in toc} +\setbeamercolor{subsection in head/foot}{parent=palette secondary} +\setbeamercolor{subsection in sidebar}{parent=palette sidebar primary} +\setbeamercolor{subsection in sidebar shaded}{use=subsection in sidebar,fg=subsection in sidebar.fg!40!bg} +\setbeamercolor{subsection number projected}{parent={subitem projected}} + +\setbeamercolor{subsubsection in toc}{parent=subsection in toc} +\setbeamercolor{subsubsection in toc shaded}{parent=subsubsection in toc} +\setbeamercolor{subsubsection in head/foot}{parent=subsection in head/foot} +\setbeamercolor{subsubsection in sidebar}{parent=subsection in sidebar} +\setbeamercolor{subsubsection in sidebar shaded}{parent=subsection in sidebar shaded} +\setbeamercolor{subsubsection number projected}{parent=subsubitem projected} + +\setbeamercolor{headline}{} +\setbeamercolor{footline}{} + +\setbeamercolor{sidebar}{} +\setbeamercolor{sidebar left}{parent=sidebar} +\setbeamercolor{sidebar right}{parent=sidebar} + +\setbeamercolor{logo}{parent=palette secondary} + +\setbeamercolor{frametitle}{parent=titlelike} +\setbeamercolor{framesubtitle}{parent=frametitle} + +\setbeamercolor{frametitle right}{parent=frametitle} + +\setbeamercolor{caption}{} +\setbeamercolor{caption name}{parent=structure} + +\setbeamercolor{button}{use=local structure,bg=local structure.fg!50!bg,fg=white} +\setbeamercolor{button border}{use=button,fg=button.bg} +\setbeamercolor{navigation symbols}{use=structure,fg=structure.fg!40!bg} +\setbeamercolor{navigation symbols dimmed}{use=structure,fg=structure.fg!20!bg} +\setbeamercolor{mini frame}{parent=section in head/foot} + +\setbeamercolor{block body}{fg=black} +\setbeamercolor{block body alerted}{fg=black} +\setbeamercolor{block body example}{fg=black} + +\setbeamercolor{block title}{bg=TACCblue,fg=white} +\setbeamercolor{block title alerted}{bg=TACCred,fg=white} +\setbeamercolor{block title example}{bg=TACCgreen,fg=white} + +\setbeamercolor{item}{parent=local structure} +\setbeamercolor{subitem}{parent=item} +\setbeamercolor{subsubitem}{parent=subitem} + +\setbeamercolor{item projected}{parent=item,use=item,fg=black,bg=item.fg} +\setbeamercolor{subitem projected}{parent=item projected} +\setbeamercolor{subsubitem projected}{parent=subitem projected} + +\setbeamercolor{enumerate item}{parent=item} +\setbeamercolor{enumerate subitem}{parent=subitem} +\setbeamercolor{enumerate subsubitem}{parent=subsubitem} + +\setbeamercolor{itemize item}{parent=item} +\setbeamercolor{itemize subitem}{parent=subitem} +\setbeamercolor{itemize subsubitem}{parent=subsubitem} + +\setbeamercolor{itemize/enumerate body}{} +\setbeamercolor{itemize/enumerate subbody}{} +\setbeamercolor{itemize/enumerate subsubbody}{} + +\setbeamercolor{description item}{parent=item} + +\setbeamercolor{bibliography item}{parent=item} + +\setbeamercolor{bibliography entry author}{use=structure,fg=structure.fg} +\setbeamercolor{bibliography entry title}{use=normal text,fg=normal text.fg} +\setbeamercolor{bibliography entry location}{use=structure,fg=structure.fg!65!bg} +\setbeamercolor{bibliography entry note}{use=structure,fg=structure.fg!65!bg} + +\setbeamercolor{separation line}{} + +\setbeamercolor{upper separation line head}{parent=separation line} +\setbeamercolor{middle separation line head}{parent=separation line} +\setbeamercolor{lower separation line head}{parent=separation line} + +\setbeamercolor{upper separation line foot}{parent=separation line} +\setbeamercolor{middle separation line foot}{parent=separation line} +\setbeamercolor{lower separation line foot}{parent=separation line} + +\setbeamercolor{abstract}{} +\setbeamercolor{abstract title}{parent=structure} + +\setbeamercolor{verse}{} + +\setbeamercolor{quotation}{} +\setbeamercolor{quote}{parent=quotation} + +\setbeamercolor{page number in head/foot}{fg=fg!50!bg} + +\setbeamercolor{qed symbol}{parent=structure} + +\mode + diff --git a/my_docs/22/lmod_zoom_mtg_2022_01_11/themes/beamerfontthemeTACC16.sty b/my_docs/22/lmod_zoom_mtg_2022_01_11/themes/beamerfontthemeTACC16.sty new file mode 100644 index 000000000..d0fc325cc --- /dev/null +++ b/my_docs/22/lmod_zoom_mtg_2022_01_11/themes/beamerfontthemeTACC16.sty @@ -0,0 +1,21 @@ +% Copyright 2003 by Till Tantau +% +% This program can be redistributed and/or modified under the terms +% of the GNU Public License, version 2. + +\mode +\setbeamerfont{title}{parent=structure,size=\LARGE,series=\bfseries} +\setbeamerfont{author}{parent=structure,size=\large, series=\normalfont} +\setbeamerfont{frametitle}{parent=structure,size=\LARGE,series=\bfseries} +\setbeamerfont{framesubtitle}{parent=frametitle,size=\small} + +%\usefonttheme{professionalfonts} % using non standard fonts for beamer +%\usefonttheme{serif} % default family is serif +%\usepackage{fontspec} +%\setmainfont{Century Gothic} + +%\usepackage{fontspec} +\usepackage{libertine} + +\mode + diff --git a/my_docs/22/lmod_zoom_mtg_2022_01_11/themes/beamerinnerthemeTACC16.sty b/my_docs/22/lmod_zoom_mtg_2022_01_11/themes/beamerinnerthemeTACC16.sty new file mode 100644 index 000000000..f7f454e1d --- /dev/null +++ b/my_docs/22/lmod_zoom_mtg_2022_01_11/themes/beamerinnerthemeTACC16.sty @@ -0,0 +1,11 @@ +\mode + +\setbeamertemplate{itemize item}[triangle] +\setbeamertemplate{itemize subitem}[triangle] +\setbeamertemplate{itemize subsubitem}[triangle] +\setbeamertemplate{section in toc}{$\bullet$\hskip.5em\inserttocsection} +%\setbeamertemplate{subsection in toc}{} +\setbeamertemplate{subsubsection in toc}{} + +\mode + diff --git a/my_docs/22/lmod_zoom_mtg_2022_01_11/themes/beamerouterthemeTACC16-169.sty b/my_docs/22/lmod_zoom_mtg_2022_01_11/themes/beamerouterthemeTACC16-169.sty new file mode 100644 index 000000000..c62f9ed04 --- /dev/null +++ b/my_docs/22/lmod_zoom_mtg_2022_01_11/themes/beamerouterthemeTACC16-169.sty @@ -0,0 +1,247 @@ +% Copyright 2003 by Till Tantau +% +% This program can be redistributed and/or modified under the terms +% of the GNU Public License, version 2. + +\mode + +\usepackage{xcolor} +\usepackage{graphicx} +\usepackage{etoolbox} + +\pgfdeclareimage[width=\paperwidth]{titlebackground}{./figures/master169.png} +\pgfdeclareimage[width=\paperwidth]{background}{./figures/secondary169.png} + +\setbeamertemplate{background canvas}{% + \ifnum\c@framenumber=1% + \begin{picture}(0,0) + \put(-0.15,-250){% + \pgfuseimage{titlebackground} + } + %\put(0,-130.7){% + + %\begin{minipage}[b][45mm][t]{\textwidth}%{226mm} + %\begin{center} + % \usebeamerfont{title}{\MakeTextUppercase{\inserttitle}\par} + %\vspace{2ex} + %\usebeamerfont{author}{\insertauthor} + % \end{center} + %\end{minipage} + %} + \end{picture} + % On title page + \else% + % Other frames background + \begin{picture}(0,0) + \put(-0.15,-255.55){% + \pgfuseimage{background} + } + \end{picture} + \fi% +} + + +\setbeamertemplate{title page}{ +\vspace{40pt} +\begin{center} +\usebeamerfont{title} {\huge \inserttitle}\par +\vspace{4ex} +\usebeamerfont{author} { + \insertauthor +}\par +\vspace{2ex} +\usebeamerfont{institute}{ + \insertinstitute +} \par +\vspace{2ex} +\usebeamerfont{date}{ + \insertdate +} +\end{center} +} + + +\setbeamertemplate{frametitle}[default][center] +\setbeamertemplate{frametitle}{ + \makeatletter + \regexpatchcmd{\insertframetitle} + {(\c{usebeamertemplate}.*)\c{fi}} + {\c{NoCaseChange}\cB\{\1\cE\}\c{fi}} + {}{}% + \makeatother + \vskip1ex + \insertframetitle +} + +% Here we define what appears at the bottom of each slide: the "footline". +\setbeamertemplate{footline}{% + \leavevmode% + + % Horizontal line dividing the rest of the slide from the footer? + % hrule goes all the way across... + % \hrule height.3pt% + % With \rule, you can specify the thickness + % \rule[raise-height]{width}{thickness} + % \hspace{.025\textwidth}\rule{.95\textwidth}{.5pt} + + \hbox{% + \ifnum \thepage>1 + % On the left half of the footer, insert the TACC of + \begin{minipage}{.2\textwidth}% + \hskip .05\textwidth%Give horizontal space else this will set on the left edge of the slide! + % \includegraphics[width=.8\textwidth]{TACC_logo.png} + \end{minipage} + + + \begin{minipage}{\textwidth}% + % \vskip .023\textheight% + \raggedleft% + \setlength{\rightskip}{\textwidth} + \hbox{% + \begin{beamercolorbox}[wd=0.7\textwidth,ht=2.25ex,dp=1ex,left]{author in head/foot}% + \insertshorttitle{} \hskip .01\textwidth | \hskip .01\textwidth \insertdate{} \hskip .01\textwidth | \hskip .01\textwidth \insertframenumber{} + \end{beamercolorbox}% + } + + % + % If we are not on the first page, insert a page number + % For some reason, insertframenumber is buggy when you have fragile + % slides with verbatim environments in them... it tends to skip numbers + % for some reason! On the other hand, the pagenumber is incremented + % for *every* slide, including transition slides... + % \hfill\includegraphics[width=\textwidth]{tacc_ut.png} + \end{minipage}% + \begin{minipage}{.05\textwidth}% + \end{minipage}% + \fi %\thepage>1 + }% + \vskip .023\textheight% + +} + + + + +\ifTACCheadernav + +\usesectionheadtemplate +{\hfill\insertsectionhead} +{\hfill\color{fg!50!bg}\insertsectionhead} + +% Head +\ifbeamer@compress + +% Here we define how the top of the frame looks, the "headline". +\setbeamertemplate{headline} +{% + \ifnum \thepage>1 + \leavevmode% + \begin{beamercolorbox}[wd=.5\paperwidth,ht=2.5ex,dp=1.125ex]{% + section in head/foot}% + \insertsectionnavigationhorizontal{.5\paperwidth}{\hskip0pt plus1filll}{}% + \end{beamercolorbox}% + \begin{beamercolorbox}[wd=.5\paperwidth,ht=2.5ex,dp=1.125ex]{% + subsection in head/foot}% + \insertsubsectionnavigationhorizontal{% + .5\paperwidth}{}{\hskip0pt plus1filll}% + \end{beamercolorbox}% + \fi %\thepage>1 +} + +\else% Not compressed + +\setbeamertemplate{headline} +{% + \ifnum \thepage>1 + \leavevmode% + \@tempdimb=2.4375ex% + \ifnum\beamer@subsectionmax<\beamer@sectionmax% + \multiply\@tempdimb by\beamer@sectionmax% + \else% + \multiply\@tempdimb by\beamer@subsectionmax% + \fi% + \ifdim\@tempdimb>0pt% + \advance\@tempdimb by 1.125ex% + \begin{beamercolorbox}[wd=.5\paperwidth,ht=\@tempdimb]{% + section in head/foot}% + \vbox to\@tempdimb{\vfil\insertsectionnavigation{.5\paperwidth}\vfil}% + \end{beamercolorbox}% + \begin{beamercolorbox}[wd=.5\paperwidth,ht=\@tempdimb]{% + subsection in head/foot}% + \vbox to\@tempdimb{\vfil\insertsubsectionnavigation{.5\paperwidth}\vfil}% + \end{beamercolorbox}% + \fi% + \fi % \thepage>1 +} + +\fi % end if compressed +\fi % TACCheadernav + + +\ifTACCheadertree + +\setbeamertemplate{headline} +{ + \begin{beamercolorbox}[wd=\paperwidth,colsep=1.5pt]{upper separation line head} + \end{beamercolorbox} + % + % Place short title + % + \begin{beamercolorbox}[wd=\paperwidth,ht=2.5ex,dp=1.125ex,% + leftskip=.3cm,rightskip=.3cm plus1fil]{title in head/foot} + \usebeamerfont{title in head/foot}\insertshorttitle + \end{beamercolorbox} + + % + % Place section + % + \begin{beamercolorbox}[wd=\paperwidth,ht=2.5ex,dp=1.125ex,% + leftskip=.3cm,rightskip=.3cm plus1fil]{section in head/foot} + \usebeamerfont{section in head/foot}% + %\ifbeamer@tree@showhooks + \setbox\beamer@tempbox=\hbox{\insertsectionhead}% + \ifdim\wd\beamer@tempbox>1pt% + \hskip2pt\raise1.9pt\hbox{\vrule width0.4pt height1.875ex\vrule width 5pt height0.4pt}% + \hskip1pt% + \fi + \insertsectionhead + \end{beamercolorbox} + +% +% Place subsection +% +\begin{beamercolorbox}[wd=\paperwidth,ht=2.5ex,dp=1.125ex,% + leftskip=.3cm,rightskip=.3cm plus1fil]{subsection in head/foot} + \usebeamerfont{subsection in head/foot}% + %\ifbeamer@tree@showhooks + \setbox\beamer@tempbox=\hbox{\insertsubsectionhead}% + \ifdim\wd\beamer@tempbox>1pt% + \hskip9.4pt\raise1.9pt\hbox{\vrule width0.4pt height1.875ex\vrule width 5pt height0.4pt}% + \hskip1pt% + \fi + \insertsubsectionhead +\end{beamercolorbox} + +% +% Place final separation box +% + \begin{beamercolorbox}[wd=\paperwidth,colsep=1.5pt + ]{lower separation line head} + \end{beamercolorbox} + + % + % Another matching rule which helps to frame the content + % + \hspace{.025\textwidth}\rule{.95\textwidth}{.5pt} +} +\fi % TACCheadertree + + +% The following command suppresses all navigation symbols. This is +% necessary in the TACC theme, since it overlaps where we want the +% logo to be. +\setbeamertemplate{navigation symbols}{} + + +\mode + diff --git a/my_docs/22/lmod_zoom_mtg_2022_01_11/themes/beamerouterthemeTACC16.sty b/my_docs/22/lmod_zoom_mtg_2022_01_11/themes/beamerouterthemeTACC16.sty new file mode 100644 index 000000000..c5b178018 --- /dev/null +++ b/my_docs/22/lmod_zoom_mtg_2022_01_11/themes/beamerouterthemeTACC16.sty @@ -0,0 +1,247 @@ +% Copyright 2003 by Till Tantau +% +% This program can be redistributed and/or modified under the terms +% of the GNU Public License, version 2. + +\mode + +\usepackage{xcolor} +\usepackage{graphicx} +\usepackage{etoolbox} + +\pgfdeclareimage[width=\paperwidth]{titlebackground}{master.jpg} +\pgfdeclareimage[width=\paperwidth]{background}{secondary.jpg} + +\setbeamertemplate{background canvas}{% + \ifnum\c@framenumber=1% + \begin{picture}(0,0) + \put(0,-273){% + \pgfuseimage{titlebackground} + } + %\put(0,-130.7){% + + %\begin{minipage}[b][45mm][t]{\textwidth}%{226mm} + %\begin{center} + % \usebeamerfont{title}{\MakeTextUppercase{\inserttitle}\par} + %\vspace{2ex} + %\usebeamerfont{author}{\insertauthor} + % \end{center} + %\end{minipage} + %} + \end{picture} + % On title page + \else% + % Other frames background + \begin{picture}(0,0) + \put(0,-273){% + \pgfuseimage{background} + } + \end{picture} + \fi% +} + + +\setbeamertemplate{title page}{ +\vspace{40pt} +\begin{center} +\usebeamerfont{title} {\huge \inserttitle}\par +\vspace{4ex} +\usebeamerfont{author} { + \insertauthor +}\par +\vspace{2ex} +\usebeamerfont{institute}{ + \insertinstitute +} \par +\vspace{2ex} +\usebeamerfont{date}{ + \insertdate +} +\end{center} +} + + +\setbeamertemplate{frametitle}[default][center] +\setbeamertemplate{frametitle}{ + \makeatletter + \regexpatchcmd{\insertframetitle} + {(\c{usebeamertemplate}.*)\c{fi}} + {\c{NoCaseChange}\cB\{\1\cE\}\c{fi}} + {}{}% + \makeatother + \vskip1ex + \insertframetitle +} + +% Here we define what appears at the bottom of each slide: the "footline". +\setbeamertemplate{footline}{% + \leavevmode% + + % Horizontal line dividing the rest of the slide from the footer? + % hrule goes all the way across... + % \hrule height.3pt% + % With \rule, you can specify the thickness + % \rule[raise-height]{width}{thickness} + % \hspace{.025\textwidth}\rule{.95\textwidth}{.5pt} + + \hbox{% + \ifnum \thepage>1 + % On the left half of the footer, insert the TACC of + \begin{minipage}{.2\textwidth}% + \hskip .05\textwidth%Give horizontal space else this will set on the left edge of the slide! + % \includegraphics[width=.8\textwidth]{figures/TACC_logo.png} + \end{minipage} + + + \begin{minipage}{\textwidth}% + % \vskip .023\textheight% + \raggedleft% + \setlength{\rightskip}{\textwidth} + \hbox{% + \begin{beamercolorbox}[wd=0.7\textwidth,ht=2.25ex,dp=1ex,left]{author in head/foot}% + \insertshorttitle{} \hskip .01\textwidth | \hskip .01\textwidth \insertdate{} \hskip .01\textwidth | \hskip .01\textwidth \insertframenumber{} + \end{beamercolorbox}% + } + + % + % If we are not on the first page, insert a page number + % For some reason, insertframenumber is buggy when you have fragile + % slides with verbatim environments in them... it tends to skip numbers + % for some reason! On the other hand, the pagenumber is incremented + % for *every* slide, including transition slides... + % \hfill\includegraphics[width=\textwidth]{figures/tacc_ut.png} + \end{minipage}% + \begin{minipage}{.05\textwidth}% + \end{minipage}% + \fi %\thepage>1 + }% + \vskip .023\textheight% + +} + + + + +\ifTACCheadernav + +\usesectionheadtemplate +{\hfill\insertsectionhead} +{\hfill\color{fg!50!bg}\insertsectionhead} + +% Head +\ifbeamer@compress + +% Here we define how the top of the frame looks, the "headline". +\setbeamertemplate{headline} +{% + \ifnum \thepage>1 + \leavevmode% + \begin{beamercolorbox}[wd=.5\paperwidth,ht=2.5ex,dp=1.125ex]{% + section in head/foot}% + \insertsectionnavigationhorizontal{.5\paperwidth}{\hskip0pt plus1filll}{}% + \end{beamercolorbox}% + \begin{beamercolorbox}[wd=.5\paperwidth,ht=2.5ex,dp=1.125ex]{% + subsection in head/foot}% + \insertsubsectionnavigationhorizontal{% + .5\paperwidth}{}{\hskip0pt plus1filll}% + \end{beamercolorbox}% + \fi %\thepage>1 +} + +\else% Not compressed + +\setbeamertemplate{headline} +{% + \ifnum \thepage>1 + \leavevmode% + \@tempdimb=2.4375ex% + \ifnum\beamer@subsectionmax<\beamer@sectionmax% + \multiply\@tempdimb by\beamer@sectionmax% + \else% + \multiply\@tempdimb by\beamer@subsectionmax% + \fi% + \ifdim\@tempdimb>0pt% + \advance\@tempdimb by 1.125ex% + \begin{beamercolorbox}[wd=.5\paperwidth,ht=\@tempdimb]{% + section in head/foot}% + \vbox to\@tempdimb{\vfil\insertsectionnavigation{.5\paperwidth}\vfil}% + \end{beamercolorbox}% + \begin{beamercolorbox}[wd=.5\paperwidth,ht=\@tempdimb]{% + subsection in head/foot}% + \vbox to\@tempdimb{\vfil\insertsubsectionnavigation{.5\paperwidth}\vfil}% + \end{beamercolorbox}% + \fi% + \fi % \thepage>1 +} + +\fi % end if compressed +\fi % TACCheadernav + + +\ifTACCheadertree + +\setbeamertemplate{headline} +{ + \begin{beamercolorbox}[wd=\paperwidth,colsep=1.5pt]{upper separation line head} + \end{beamercolorbox} + % + % Place short title + % + \begin{beamercolorbox}[wd=\paperwidth,ht=2.5ex,dp=1.125ex,% + leftskip=.3cm,rightskip=.3cm plus1fil]{title in head/foot} + \usebeamerfont{title in head/foot}\insertshorttitle + \end{beamercolorbox} + + % + % Place section + % + \begin{beamercolorbox}[wd=\paperwidth,ht=2.5ex,dp=1.125ex,% + leftskip=.3cm,rightskip=.3cm plus1fil]{section in head/foot} + \usebeamerfont{section in head/foot}% + %\ifbeamer@tree@showhooks + \setbox\beamer@tempbox=\hbox{\insertsectionhead}% + \ifdim\wd\beamer@tempbox>1pt% + \hskip2pt\raise1.9pt\hbox{\vrule width0.4pt height1.875ex\vrule width 5pt height0.4pt}% + \hskip1pt% + \fi + \insertsectionhead + \end{beamercolorbox} + +% +% Place subsection +% +\begin{beamercolorbox}[wd=\paperwidth,ht=2.5ex,dp=1.125ex,% + leftskip=.3cm,rightskip=.3cm plus1fil]{subsection in head/foot} + \usebeamerfont{subsection in head/foot}% + %\ifbeamer@tree@showhooks + \setbox\beamer@tempbox=\hbox{\insertsubsectionhead}% + \ifdim\wd\beamer@tempbox>1pt% + \hskip9.4pt\raise1.9pt\hbox{\vrule width0.4pt height1.875ex\vrule width 5pt height0.4pt}% + \hskip1pt% + \fi + \insertsubsectionhead +\end{beamercolorbox} + +% +% Place final separation box +% + \begin{beamercolorbox}[wd=\paperwidth,colsep=1.5pt + ]{lower separation line head} + \end{beamercolorbox} + + % + % Another matching rule which helps to frame the content + % + \hspace{.025\textwidth}\rule{.95\textwidth}{.5pt} +} +\fi % TACCheadertree + + +% The following command suppresses all navigation symbols. This is +% necessary in the TACC theme, since it overlaps where we want the +% logo to be. +\setbeamertemplate{navigation symbols}{} + + +\mode + diff --git a/my_docs/22/lmod_zoom_mtg_2022_01_11/themes/beamerthemeTACC16-169.sty b/my_docs/22/lmod_zoom_mtg_2022_01_11/themes/beamerthemeTACC16-169.sty new file mode 100644 index 000000000..22caf9a05 --- /dev/null +++ b/my_docs/22/lmod_zoom_mtg_2022_01_11/themes/beamerthemeTACC16-169.sty @@ -0,0 +1,38 @@ +%% TACC theme for beamer + +\newif\ifTACCheadernav +\DeclareOption{headernav}{\global\TACCheadernavtrue} + +\newif\ifTACCheadertree +\DeclareOption{headertree}{\global\TACCheadertreetrue} +\ProcessOptions + +\mode + +\makeatletter + \def\beamer@calltheme#1#2#3{% + \def\beamer@themelist{#2} + \@for\beamer@themename:=\beamer@themelist\do + {\usepackage[{#1}]{\beamer@themelocation/#3\beamer@themename}}} + + \def\usefolder#1{ + \def\beamer@themelocation{#1} + } + \def\beamer@themelocation{} + +\usefolder{themes} +\usefonttheme{TACC16} +\useinnertheme{TACC16} +\useoutertheme{TACC16-169} +\usecolortheme{TACC16} + +\mode + + +\newcommand{\event}[1]{% + \makeatletter% + \def\TACC@eventname{#1}% + \makeatother} + +\newcommand{\sectionframe}[1]{\section{#1}\frame{\Large\textbf{#1}}} +\newcommand{\subsectionframe}[1]{\subsection{#1}\frame{\large\textbf{#1}}} diff --git a/my_docs/22/lmod_zoom_mtg_2022_01_11/themes/beamerthemeTACC16.sty b/my_docs/22/lmod_zoom_mtg_2022_01_11/themes/beamerthemeTACC16.sty new file mode 100644 index 000000000..750bdd388 --- /dev/null +++ b/my_docs/22/lmod_zoom_mtg_2022_01_11/themes/beamerthemeTACC16.sty @@ -0,0 +1,26 @@ +%% TACC theme for beamer + +\newif\ifTACCheadernav +\DeclareOption{headernav}{\global\TACCheadernavtrue} + +\newif\ifTACCheadertree +\DeclareOption{headertree}{\global\TACCheadertreetrue} +\ProcessOptions + +\mode + +\usefonttheme{TACC16} +\useinnertheme{TACC16} +\useoutertheme{TACC16} +\usecolortheme{TACC16} + +\mode + + +\newcommand{\event}[1]{% + \makeatletter% + \def\TACC@eventname{#1}% + \makeatother} + +\newcommand{\sectionframe}[1]{\section{#1}\frame{\Large\textbf{#1}}} +\newcommand{\subsectionframe}[1]{\subsection{#1}\frame{\large\textbf{#1}}} diff --git a/my_docs/22/lmod_zoom_mtg_2022_01_11/themes/example.pdf b/my_docs/22/lmod_zoom_mtg_2022_01_11/themes/example.pdf new file mode 100644 index 000000000..add373eee Binary files /dev/null and b/my_docs/22/lmod_zoom_mtg_2022_01_11/themes/example.pdf differ diff --git a/my_docs/22/lmod_zoom_mtg_2022_01_11/themes/license.tex b/my_docs/22/lmod_zoom_mtg_2022_01_11/themes/license.tex new file mode 100644 index 000000000..74ff86759 --- /dev/null +++ b/my_docs/22/lmod_zoom_mtg_2022_01_11/themes/license.tex @@ -0,0 +1,14 @@ + +\begin{frame}{License} +\footnotesize +\textcopyright The University of Texas at Austin, \the\year\\ +\vspace{0.5 cm} +This work is licensed under the Creative Commons Attribution Non-Commercial 3.0 Unported License. To view a copy of this license, +visit http://creativecommons.org/licenses/by-nc/3.0/\\ +\vspace{0.5 cm} +When attributing this work, please use the following text: +"Designing and Administering Large-scale Systems", Texas Advanced Computing Center, \the\year. Available under a Creative Commons Attribution Non-Commercial 3.0 Unported License. +\newline +\newline +\includegraphics[width=1cm]{./figures/cc.png} +\end{frame} \ No newline at end of file diff --git a/my_docs/22/lmod_zoom_mtg_2022_02_08/Lmod-4color@2x.png b/my_docs/22/lmod_zoom_mtg_2022_02_08/Lmod-4color@2x.png deleted file mode 120000 index 47d505dbf..000000000 --- a/my_docs/22/lmod_zoom_mtg_2022_02_08/Lmod-4color@2x.png +++ /dev/null @@ -1 +0,0 @@ -../../beamer/Lmod-4color@2x.png \ No newline at end of file diff --git a/my_docs/22/lmod_zoom_mtg_2022_02_08/Lmod-4color@2x.png b/my_docs/22/lmod_zoom_mtg_2022_02_08/Lmod-4color@2x.png new file mode 100644 index 000000000..4810d74c3 Binary files /dev/null and b/my_docs/22/lmod_zoom_mtg_2022_02_08/Lmod-4color@2x.png differ diff --git a/my_docs/22/lmod_zoom_mtg_2022_02_08/beamercolorthemeTACC.sty b/my_docs/22/lmod_zoom_mtg_2022_02_08/beamercolorthemeTACC.sty deleted file mode 120000 index 8d27e673a..000000000 --- a/my_docs/22/lmod_zoom_mtg_2022_02_08/beamercolorthemeTACC.sty +++ /dev/null @@ -1 +0,0 @@ -../../beamer/beamercolorthemeTACC.sty \ No newline at end of file diff --git a/my_docs/22/lmod_zoom_mtg_2022_02_08/beamercolorthemeTACC.sty b/my_docs/22/lmod_zoom_mtg_2022_02_08/beamercolorthemeTACC.sty new file mode 100755 index 000000000..78beb6a4a --- /dev/null +++ b/my_docs/22/lmod_zoom_mtg_2022_02_08/beamercolorthemeTACC.sty @@ -0,0 +1,323 @@ +% Copyright 2003 by Till Tantau . +% +% This program can be redistributed and/or modified under the terms +% of the GNU Public License, version 2. + +\mode + +% I downloaded a gimp color palette from +% http://maururu.net/2007/latex-beamer-color-palette/ +% Which provides rgb values (I think) for several of the +% default beamer themes. You can open this in gimp by +% opening the Palettes dialog, right-clicking anywhere and choosing +% 'Import Palette'. A color in there called 'default added blue' +% appeared to be approximately what I wanted. It had the triple +% of values 141 145 208. If you double-click on this in the +% palette editor it gives you a bunch of information. You can't +% use these values directly to set a color...it just comes out white. +% I think definecolor is expecting something normalized by 255. Yes! + + +% bluish colors +\definecolor{defaddedblue}{rgb}{0.5529,.5686,.8157} % 141,145,208 +\definecolor{defblockheader}{rgb}{.1921,.2235,.6824} % 49,57,174 +\definecolor{flyaddedblue}{rgb}{.5961,.6118,.8431} % 152,156,215 + +% bluish-greys +\definecolor{beetleaddedblue1}{rgb}{.3333,.4039,.6196} % 85 103 158, dark +\definecolor{beetleaddedblue2}{rgb}{.4510,.5098,.7020} % 115 130 179, medium +\definecolor{beetleaddedblue3}{rgb}{.7059,.7255,.7961} % 180 185 203, light (greyest) + +% very light blue-greys +\definecolor{deflightouter1}{rgb}{.7608,.7647,.9020} % 194 195 230, dark +\definecolor{deflightouter2}{rgb}{.8 ,.8039,.9176} % 204 205 234, medium +\definecolor{deflightouter3}{rgb}{.8392,.8431,.9373} % 214 215 239, light + +% reddish colors +\definecolor{flyalertblockheader}{rgb}{.7373,.1294,.1333} % 188 33 34 +\definecolor{flyaddedred}{rgb}{.8667,.5647,.5647}% 221 144 144 +\definecolor{beaverouterframe}{rgb}{.5529,.0980,.0980}% 141 25 25 + +% greens (green is used for 'examples' in beamer) +\definecolor{defexblock}{rgb}{.9098,.9333,.9020} % 232 238 230, light +\definecolor{defaddedgreen}{rgb}{.5412,.6510,.4706} % 138 166 120, medium +\definecolor{defexblockheader}{rgb}{.1686,.3647,.0392} % 43 93 10, dark + +\definecolor{lightexblock}{rgb}{.9137,.9451,.9020} % 233 241 230, light +\definecolor{lightexblockheader}{rgb}{.8235,.8980,.8} % 210 229 204, medium +\definecolor{lightexblockheadertext}{rgb}{.2431,.5098,.0745} % 62 130 19, dark + + +%%% +% Set the normal text color +%%% +\setbeamercolor{normal text}{fg=black,bg=white} + +%%% +% Set the alerted text color +%%% +% \setbeamercolor{alerted text}{fg=red} +\setbeamercolor{alerted text}{fg=red!50!black} % half black/half red for green bg +% \setbeamercolor{alerted text}{fg=beaverouterframe} +% \setbeamercolor{alerted text}{fg=defblockheader} % doesn't stand out enough + + +% Set the 'example' text +\setbeamercolor{example text}{fg=green!50!black} + +\setbeamercolor{structure}{fg=black} + +\setbeamercolor{background canvas}{parent=normal text} +\setbeamercolor{background}{parent=background canvas} + +\setbeamercolor{palette primary}{use=structure,fg=structure.fg} +\setbeamercolor{palette secondary}{use=structure,fg=structure.fg!75!black} +\setbeamercolor{palette tertiary}{use=structure,fg=structure.fg!50!black} +\setbeamercolor{palette quaternary}{fg=black} + +\setbeamercolor{palette sidebar primary}{use=normal text,fg=normal text.fg} +\setbeamercolor{palette sidebar secondary}{use=structure,fg=structure.fg} +\setbeamercolor{palette sidebar tertiary}{use=normal text,fg=normal text.fg} +\setbeamercolor{palette sidebar quaternary}{use=structure,fg=structure.fg} + +\setbeamercolor{math text}{} +\setbeamercolor{math text inlined}{parent=math text} +\setbeamercolor{math text displayed}{parent=math text} + +\setbeamercolor{normal text in math text}{} + +\setbeamercolor{local structure}{parent=structure} + +\setbeamercolor{titlelike}{parent=structure} + +\setbeamercolor{title}{parent=titlelike} +\setbeamercolor{title in head/foot}{parent=palette quaternary} +\setbeamercolor{title in sidebar}{parent=palette sidebar quaternary} + +\setbeamercolor{subtitle}{parent=title} + +\setbeamercolor{author}{} +\setbeamercolor{author in head/foot}{parent=palette primary} +\setbeamercolor{author in sidebar}{use=palette sidebar tertiary,fg=palette sidebar tertiary.fg} + +\setbeamercolor{institute}{} +\setbeamercolor{institute in head/foot}{parent=palette tertiary} +\setbeamercolor{institute in sidebar}{use=palette sidebar tertiary,fg=palette sidebar tertiary.fg} + +\setbeamercolor{date}{} +\setbeamercolor{date in head/foot}{parent=palette secondary} +\setbeamercolor{date in sidebar}{use=palette sidebar tertiary,fg=palette sidebar tertiary.fg} + +\setbeamercolor{titlegraphic}{} + +\setbeamercolor{part name}{} +\setbeamercolor{part title}{parent=titlelike} + +\setbeamercolor{section in toc}{parent=structure} +\setbeamercolor{section in toc shaded}{parent=section in toc} +\setbeamercolor{section in head/foot}{parent=palette tertiary} +\setbeamercolor{section in sidebar}{parent=palette sidebar secondary} +\setbeamercolor{section in sidebar shaded}{use=section in sidebar,fg=section in sidebar.fg!40!bg} +\setbeamercolor{section number projected}{parent=item projected} + +\setbeamercolor{subsection in toc}{} +\setbeamercolor{subsection in toc shaded}{parent=subsection in toc} +\setbeamercolor{subsection in head/foot}{parent=palette secondary} +\setbeamercolor{subsection in sidebar}{parent=palette sidebar primary} +\setbeamercolor{subsection in sidebar shaded}{use=subsection in sidebar,fg=subsection in sidebar.fg!40!bg} +\setbeamercolor{subsection number projected}{parent={subitem projected}} + +\setbeamercolor{subsubsection in toc}{parent=subsection in toc} +\setbeamercolor{subsubsection in toc shaded}{parent=subsubsection in toc} +\setbeamercolor{subsubsection in head/foot}{parent=subsection in head/foot} +\setbeamercolor{subsubsection in sidebar}{parent=subsection in sidebar} +\setbeamercolor{subsubsection in sidebar shaded}{parent=subsection in sidebar shaded} +\setbeamercolor{subsubsection number projected}{parent=subsubitem projected} + +\setbeamercolor{headline}{} +\setbeamercolor{footline}{} + +\setbeamercolor{sidebar}{} +\setbeamercolor{sidebar left}{parent=sidebar} +\setbeamercolor{sidebar right}{parent=sidebar} + +\setbeamercolor{logo}{parent=palette secondary} + +\setbeamercolor{frametitle}{parent=titlelike} +\setbeamercolor{framesubtitle}{parent=frametitle} + +\setbeamercolor{frametitle right}{parent=frametitle} + +\setbeamercolor{caption}{} +\setbeamercolor{caption name}{parent=structure} + +\setbeamercolor{button}{use=local structure,bg=local structure.fg!50!bg,fg=white} +\setbeamercolor{button border}{use=button,fg=button.bg} +\setbeamercolor{navigation symbols}{use=structure,fg=structure.fg!40!bg} +\setbeamercolor{navigation symbols dimmed}{use=structure,fg=structure.fg!20!bg} +\setbeamercolor{mini frame}{parent=section in head/foot} + +% Color expressions are defined in the xcolor package +% +% Ex: Mixture of 40% green, 60% yellow: green!40!yellow +% +% The complement of any color can be obtained by prepending +% a minus sign: -green!40!yellow +% +% One can also combine up to three colors (in differing proportions) +% using the rgb command. For example, the following command combines +% 3 parts of the first color, with 2 parts of the second, and one part +% "red" +% +%\color{rgb:-green!40!yellow,3;green!40!yellow,2;red,1} +% Unfortunately, I don't think this works as an argument to setbeamercolor... +% "Orange" bg=green!30!yellow!30!red +% close to burnt orange: red!75!green +% lightgray is a color, but gray!25!white looks better +% +% A nice pair of greens +% (dark, a little too dark to be under black text...) -red!75!green!50!blue!25 +% (light) -red!75!green!50!blue!25!gray +% +% Some colors are only available via options to the xcolor package, eg. +% x11names,DarkOliveGreen4 +% svgnames, Chartreuse +% dvipsnames, ForestGreen +% +% but beamer does not seem to have any of these. +% +% The base color names which are always available are: +% black +% blue +% brown +% cyan +% darkgray +% gray +% green +% lightgray +% lime +% magenta +% olive +% orange +% pink +% purple +% red +% teal +% violet +% white +% yellow + +% From the beamer user guide, pg. 167 +% Inner color themes only specify the colors of elements used in inner +% themes. Most noticably, they specify the colors used for blocks. +% ... + +% Example color definition +% beamercolorthemedefault.sty:\definecolor{beamer@blendedblue}{rgb}{0.2,0.2,0.7} +% beamercolorthemedefault.sty:\setbeamercolor{structure}{fg=beamer@blendedblue} + +% The greens +% \setbeamercolor{block body}{bg=-red!75!green!50!blue!25!gray} +% \setbeamercolor{block title}{parent=structure,bg=-red!75!green!50!blue!25,fg=-red!75!green!50!blue!25!gray} + +%%% +% Set the block body and title background/foreground colors +%%% +% \setbeamercolor{block body}{bg=flyaddedblue} +% \setbeamercolor{block title}{bg=defblockheader,fg=flyaddedblue} + +% Purplish blues, too dark overall +% \setbeamercolor{block body}{bg=beetleaddedblue3} +% \setbeamercolor{block title}{bg=beetleaddedblue2,fg=beetleaddedblue3} + +% Very light blue greys +% 1. Not enough contrast +% \setbeamercolor{block body}{bg=deflightouter3} +% \setbeamercolor{block title}{bg=deflightouter2,fg=deflightouter3} + +% 2. Not enough contrast +% \setbeamercolor{block body}{bg=deflightouter3} +% \setbeamercolor{block title}{bg=deflightouter1,fg=deflightouter3} + +% 3. Combination of deflightouter and fly. The block bg is +% lighter than the all-beetle color scheme I previously thought was best. +% Currently I like this one the best +\setbeamercolor{block body}{bg=deflightouter3} +\setbeamercolor{block title}{bg=beetleaddedblue2,fg=deflightouter3} + +% 4. Greens. Looks like a highlighter. I don't really trust greens +% on projectors... It's almost too bright/hurts your eyes. +% \setbeamercolor{block body}{bg=defexblock} +% \setbeamercolor{block title}{bg=defaddedgreen,fg=defexblock} + +% This looks pretty good ... it's similar to the greens we had before +% but should be lighter. The blocks are just a little too "mint" colored +% though... +% \setbeamercolor{block body}{bg=defexblock} +% \setbeamercolor{block title}{bg=defexblockheader,fg=defexblock} + +% Pea Soup! +%\setbeamercolor{block body}{bg=defaddedgreen} +%\setbeamercolor{block title}{bg=defexblockheader,fg=defaddedgreen} + + +% Changing these didn't seem to do anything...I had to change the +% 'alerted text' color instead +\setbeamercolor{block body alerted}{} +\setbeamercolor{block body example}{} +\setbeamercolor{block title alerted}{parent=alerted text} +\setbeamercolor{block title example}{parent=example text} + +\setbeamercolor{item}{parent=local structure} +\setbeamercolor{subitem}{parent=item} +\setbeamercolor{subsubitem}{parent=subitem} + +\setbeamercolor{item projected}{parent=item,use=item,fg=white,bg=item.fg} +\setbeamercolor{subitem projected}{parent=item projected} +\setbeamercolor{subsubitem projected}{parent=subitem projected} + +\setbeamercolor{enumerate item}{parent=item} +\setbeamercolor{enumerate subitem}{parent=subitem} +\setbeamercolor{enumerate subsubitem}{parent=subsubitem} + +\setbeamercolor{itemize item}{parent=item} +\setbeamercolor{itemize subitem}{parent=subitem} +\setbeamercolor{itemize subsubitem}{parent=subsubitem} + +\setbeamercolor{itemize/enumerate body}{} +\setbeamercolor{itemize/enumerate subbody}{} +\setbeamercolor{itemize/enumerate subsubbody}{} + +\setbeamercolor{description item}{parent=item} + +\setbeamercolor{bibliography item}{parent=item} + +\setbeamercolor{bibliography entry author}{use=structure,fg=structure.fg} +\setbeamercolor{bibliography entry title}{use=normal text,fg=normal text.fg} +\setbeamercolor{bibliography entry location}{use=structure,fg=structure.fg!65!bg} +\setbeamercolor{bibliography entry note}{use=structure,fg=structure.fg!65!bg} + +\setbeamercolor{separation line}{} + +\setbeamercolor{upper separation line head}{parent=separation line} +\setbeamercolor{middle separation line head}{parent=separation line} +\setbeamercolor{lower separation line head}{parent=separation line} + +\setbeamercolor{upper separation line foot}{parent=separation line} +\setbeamercolor{middle separation line foot}{parent=separation line} +\setbeamercolor{lower separation line foot}{parent=separation line} + +\setbeamercolor{abstract}{} +\setbeamercolor{abstract title}{parent=structure} + +\setbeamercolor{verse}{} + +\setbeamercolor{quotation}{} +\setbeamercolor{quote}{parent=quotation} + +\setbeamercolor{page number in head/foot}{fg=fg!50!bg} + +\setbeamercolor{qed symbol}{parent=structure} + +\mode + diff --git a/my_docs/22/lmod_zoom_mtg_2022_02_08/beamercolorthemeTACC16.sty b/my_docs/22/lmod_zoom_mtg_2022_02_08/beamercolorthemeTACC16.sty deleted file mode 120000 index 58415801b..000000000 --- a/my_docs/22/lmod_zoom_mtg_2022_02_08/beamercolorthemeTACC16.sty +++ /dev/null @@ -1 +0,0 @@ -../../beamer/beamercolorthemeTACC16.sty \ No newline at end of file diff --git a/my_docs/22/lmod_zoom_mtg_2022_02_08/beamercolorthemeTACC16.sty b/my_docs/22/lmod_zoom_mtg_2022_02_08/beamercolorthemeTACC16.sty new file mode 100755 index 000000000..779dde91f --- /dev/null +++ b/my_docs/22/lmod_zoom_mtg_2022_02_08/beamercolorthemeTACC16.sty @@ -0,0 +1,192 @@ +% Copyright 2003 by Till Tantau . +% +% This program can be redistributed and/or modified under the terms +% of the GNU Public License, version 2. + +\mode + +\usepackage{textcase,regexpatch} + +\setbeamertemplate{blocks}[rounded][shadow=true] + + +\definecolor{TACCred}{RGB}{180,13,29} +\definecolor{TACCorange}{RGB}{210,104,43} +\definecolor{TACCblue}{RGB}{108, 134, 191} +\definecolor{TACCgreen}{RGB}{23,106,70} + +% I downloaded a gimp color palette from +% http://maururu.net/2007/latex-beamer-color-palette/ +% Which provides rgb values (I think) for several of the +% default beamer themes. You can open this in gimp by +% opening the Palettes dialog, right-clicking anywhere and choosing +% 'Import Palette'. A color in there called 'default added blue' +% appeared to be approximately what I wanted. It had the triple +% of values 141 145 208. If you double-click on this in the +% palette editor it gives you a bunch of information. You can't +% use these values directly to set a color...it just comes out white. +% I think definecolor is expecting something normalized by 255. Yes! + + +%%% +% Set the normal text color +%%% +\setbeamercolor{normal text}{fg=black} %,bg=white} +\setbeamercolor{example text}{fg=TACCgreen} +\setbeamercolor{alerted text}{fg=TACCorange} + + +\setbeamercolor{structure}{fg=black} +%\setbeamercolor{structure}{fg=black} + +\setbeamercolor{background canvas}{parent=normal text} +\setbeamercolor{background}{parent=background canvas} + +\setbeamercolor{palette primary}{use=structure,fg=structure.fg} +\setbeamercolor{palette secondary}{use=structure,fg=structure.fg!75!black} +\setbeamercolor{palette tertiary}{use=structure,fg=structure.fg!50!black} +\setbeamercolor{palette quaternary}{fg=black} + +\setbeamercolor{palette sidebar primary}{use=normal text,fg=normal text.fg} +\setbeamercolor{palette sidebar secondary}{use=structure,fg=structure.fg} +\setbeamercolor{palette sidebar tertiary}{use=normal text,fg=normal text.fg} +\setbeamercolor{palette sidebar quaternary}{use=structure,fg=structure.fg} + +\setbeamercolor{math text}{} +\setbeamercolor{math text inlined}{parent=math text} +\setbeamercolor{math text displayed}{parent=math text} + +\setbeamercolor{normal text in math text}{} + +\setbeamercolor{local structure}{parent=structure} + +\setbeamercolor{titlelike}{parent=structure} + +\setbeamercolor{title}{parent=titlelike} +\setbeamercolor{title in head/foot}{parent=palette quaternary} +\setbeamercolor{title in sidebar}{parent=palette sidebar quaternary} + +\setbeamercolor{subtitle}{parent=title} + +\setbeamercolor{author}{} +\setbeamercolor{author in head/foot}{parent=palette primary} +\setbeamercolor{author in sidebar}{use=palette sidebar tertiary,fg=palette sidebar tertiary.fg} + +\setbeamercolor{institute}{} +\setbeamercolor{institute in head/foot}{parent=palette tertiary} +\setbeamercolor{institute in sidebar}{use=palette sidebar tertiary,fg=palette sidebar tertiary.fg} + +\setbeamercolor{date}{} +\setbeamercolor{date in head/foot}{parent=palette secondary} +\setbeamercolor{date in sidebar}{use=palette sidebar tertiary,fg=palette sidebar tertiary.fg} + +\setbeamercolor{titlegraphic}{} + +\setbeamercolor{part name}{} +\setbeamercolor{part title}{parent=titlelike} + +\setbeamercolor{section in toc}{parent=structure} +\setbeamercolor{section in toc shaded}{parent=section in toc} +\setbeamercolor{section in head/foot}{parent=palette tertiary} +\setbeamercolor{section in sidebar}{parent=palette sidebar secondary} +\setbeamercolor{section in sidebar shaded}{use=section in sidebar,fg=section in sidebar.fg!40!bg} +\setbeamercolor{section number projected}{parent=item projected} + +\setbeamercolor{subsection in toc}{} +\setbeamercolor{subsection in toc shaded}{parent=subsection in toc} +\setbeamercolor{subsection in head/foot}{parent=palette secondary} +\setbeamercolor{subsection in sidebar}{parent=palette sidebar primary} +\setbeamercolor{subsection in sidebar shaded}{use=subsection in sidebar,fg=subsection in sidebar.fg!40!bg} +\setbeamercolor{subsection number projected}{parent={subitem projected}} + +\setbeamercolor{subsubsection in toc}{parent=subsection in toc} +\setbeamercolor{subsubsection in toc shaded}{parent=subsubsection in toc} +\setbeamercolor{subsubsection in head/foot}{parent=subsection in head/foot} +\setbeamercolor{subsubsection in sidebar}{parent=subsection in sidebar} +\setbeamercolor{subsubsection in sidebar shaded}{parent=subsection in sidebar shaded} +\setbeamercolor{subsubsection number projected}{parent=subsubitem projected} + +\setbeamercolor{headline}{} +\setbeamercolor{footline}{} + +\setbeamercolor{sidebar}{} +\setbeamercolor{sidebar left}{parent=sidebar} +\setbeamercolor{sidebar right}{parent=sidebar} + +\setbeamercolor{logo}{parent=palette secondary} + +\setbeamercolor{frametitle}{parent=titlelike} +\setbeamercolor{framesubtitle}{parent=frametitle} + +\setbeamercolor{frametitle right}{parent=frametitle} + +\setbeamercolor{caption}{} +\setbeamercolor{caption name}{parent=structure} + +\setbeamercolor{button}{use=local structure,bg=local structure.fg!50!bg,fg=white} +\setbeamercolor{button border}{use=button,fg=button.bg} +\setbeamercolor{navigation symbols}{use=structure,fg=structure.fg!40!bg} +\setbeamercolor{navigation symbols dimmed}{use=structure,fg=structure.fg!20!bg} +\setbeamercolor{mini frame}{parent=section in head/foot} + +\setbeamercolor{block body}{fg=black} +\setbeamercolor{block body alerted}{fg=black} +\setbeamercolor{block body example}{fg=black} + +\setbeamercolor{block title}{bg=TACCblue,fg=white} +\setbeamercolor{block title alerted}{bg=TACCred,fg=white} +\setbeamercolor{block title example}{bg=TACCgreen,fg=white} + +\setbeamercolor{item}{parent=local structure} +\setbeamercolor{subitem}{parent=item} +\setbeamercolor{subsubitem}{parent=subitem} + +\setbeamercolor{item projected}{parent=item,use=item,fg=black,bg=item.fg} +\setbeamercolor{subitem projected}{parent=item projected} +\setbeamercolor{subsubitem projected}{parent=subitem projected} + +\setbeamercolor{enumerate item}{parent=item} +\setbeamercolor{enumerate subitem}{parent=subitem} +\setbeamercolor{enumerate subsubitem}{parent=subsubitem} + +\setbeamercolor{itemize item}{parent=item} +\setbeamercolor{itemize subitem}{parent=subitem} +\setbeamercolor{itemize subsubitem}{parent=subsubitem} + +\setbeamercolor{itemize/enumerate body}{} +\setbeamercolor{itemize/enumerate subbody}{} +\setbeamercolor{itemize/enumerate subsubbody}{} + +\setbeamercolor{description item}{parent=item} + +\setbeamercolor{bibliography item}{parent=item} + +\setbeamercolor{bibliography entry author}{use=structure,fg=structure.fg} +\setbeamercolor{bibliography entry title}{use=normal text,fg=normal text.fg} +\setbeamercolor{bibliography entry location}{use=structure,fg=structure.fg!65!bg} +\setbeamercolor{bibliography entry note}{use=structure,fg=structure.fg!65!bg} + +\setbeamercolor{separation line}{} + +\setbeamercolor{upper separation line head}{parent=separation line} +\setbeamercolor{middle separation line head}{parent=separation line} +\setbeamercolor{lower separation line head}{parent=separation line} + +\setbeamercolor{upper separation line foot}{parent=separation line} +\setbeamercolor{middle separation line foot}{parent=separation line} +\setbeamercolor{lower separation line foot}{parent=separation line} + +\setbeamercolor{abstract}{} +\setbeamercolor{abstract title}{parent=structure} + +\setbeamercolor{verse}{} + +\setbeamercolor{quotation}{} +\setbeamercolor{quote}{parent=quotation} + +\setbeamercolor{page number in head/foot}{fg=fg!50!bg} + +\setbeamercolor{qed symbol}{parent=structure} + +\mode + diff --git a/my_docs/22/lmod_zoom_mtg_2022_02_08/beamerfontthemeTACC.sty b/my_docs/22/lmod_zoom_mtg_2022_02_08/beamerfontthemeTACC.sty deleted file mode 120000 index 78e971fb8..000000000 --- a/my_docs/22/lmod_zoom_mtg_2022_02_08/beamerfontthemeTACC.sty +++ /dev/null @@ -1 +0,0 @@ -../../beamer/beamerfontthemeTACC.sty \ No newline at end of file diff --git a/my_docs/22/lmod_zoom_mtg_2022_02_08/beamerfontthemeTACC.sty b/my_docs/22/lmod_zoom_mtg_2022_02_08/beamerfontthemeTACC.sty new file mode 100755 index 000000000..ef9ce1e5e --- /dev/null +++ b/my_docs/22/lmod_zoom_mtg_2022_02_08/beamerfontthemeTACC.sty @@ -0,0 +1,12 @@ +% Copyright 2003 by Till Tantau +% +% This program can be redistributed and/or modified under the terms +% of the GNU Public License, version 2. + +\mode + +\setbeamerfont{frametitle}{parent=structure,size=\LARGE,series=\bfseries} +\setbeamerfont{framesubtitle}{parent=frametitle,size=\small} + +\mode + \ No newline at end of file diff --git a/my_docs/22/lmod_zoom_mtg_2022_02_08/beamerfontthemeTACC16.sty b/my_docs/22/lmod_zoom_mtg_2022_02_08/beamerfontthemeTACC16.sty deleted file mode 120000 index a1f2fa5f9..000000000 --- a/my_docs/22/lmod_zoom_mtg_2022_02_08/beamerfontthemeTACC16.sty +++ /dev/null @@ -1 +0,0 @@ -../../beamer/beamerfontthemeTACC16.sty \ No newline at end of file diff --git a/my_docs/22/lmod_zoom_mtg_2022_02_08/beamerfontthemeTACC16.sty b/my_docs/22/lmod_zoom_mtg_2022_02_08/beamerfontthemeTACC16.sty new file mode 100755 index 000000000..b65271835 --- /dev/null +++ b/my_docs/22/lmod_zoom_mtg_2022_02_08/beamerfontthemeTACC16.sty @@ -0,0 +1,21 @@ +% Copyright 2003 by Till Tantau +% +% This program can be redistributed and/or modified under the terms +% of the GNU Public License, version 2. + +\mode +\setbeamerfont{title}{parent=structure,size=\LARGE,series=\bfseries} +\setbeamerfont{author}{parent=structure,size=\large, series=\normalfont} +\setbeamerfont{frametitle}{parent=structure,size=\LARGE,series=\bfseries} +\setbeamerfont{framesubtitle}{parent=frametitle,size=\small} + +%\usefonttheme{professionalfonts} % using non standard fonts for beamer +%\usefonttheme{serif} % default family is serif +%\usepackage{fontspec} +%\setmainfont{Century Gothic} + +\usepackage{fontspec} +\usepackage{libertine} + +\mode + diff --git a/my_docs/22/lmod_zoom_mtg_2022_02_08/beamerinnerthemeTACC.sty b/my_docs/22/lmod_zoom_mtg_2022_02_08/beamerinnerthemeTACC.sty deleted file mode 120000 index 8d5ae3921..000000000 --- a/my_docs/22/lmod_zoom_mtg_2022_02_08/beamerinnerthemeTACC.sty +++ /dev/null @@ -1 +0,0 @@ -../../beamer/beamerinnerthemeTACC.sty \ No newline at end of file diff --git a/my_docs/22/lmod_zoom_mtg_2022_02_08/beamerinnerthemeTACC.sty b/my_docs/22/lmod_zoom_mtg_2022_02_08/beamerinnerthemeTACC.sty new file mode 100755 index 000000000..29e2bce81 --- /dev/null +++ b/my_docs/22/lmod_zoom_mtg_2022_02_08/beamerinnerthemeTACC.sty @@ -0,0 +1,11 @@ +\mode + +\setbeamertemplate{itemize item}[circle] +\setbeamertemplate{itemize subitem}{{}--{}} +\setbeamertemplate{itemize subsubitem}[circle] +\setbeamertemplate{section in toc}{$\bullet$\hskip.5em\inserttocsection} +%\setbeamertemplate{subsection in toc}{} +\setbeamertemplate{subsubsection in toc}{} + +\mode + diff --git a/my_docs/22/lmod_zoom_mtg_2022_02_08/beamerinnerthemeTACC16.sty b/my_docs/22/lmod_zoom_mtg_2022_02_08/beamerinnerthemeTACC16.sty deleted file mode 120000 index 5955acc99..000000000 --- a/my_docs/22/lmod_zoom_mtg_2022_02_08/beamerinnerthemeTACC16.sty +++ /dev/null @@ -1 +0,0 @@ -../../beamer/beamerinnerthemeTACC16.sty \ No newline at end of file diff --git a/my_docs/22/lmod_zoom_mtg_2022_02_08/beamerinnerthemeTACC16.sty b/my_docs/22/lmod_zoom_mtg_2022_02_08/beamerinnerthemeTACC16.sty new file mode 100755 index 000000000..f7f454e1d --- /dev/null +++ b/my_docs/22/lmod_zoom_mtg_2022_02_08/beamerinnerthemeTACC16.sty @@ -0,0 +1,11 @@ +\mode + +\setbeamertemplate{itemize item}[triangle] +\setbeamertemplate{itemize subitem}[triangle] +\setbeamertemplate{itemize subsubitem}[triangle] +\setbeamertemplate{section in toc}{$\bullet$\hskip.5em\inserttocsection} +%\setbeamertemplate{subsection in toc}{} +\setbeamertemplate{subsubsection in toc}{} + +\mode + diff --git a/my_docs/22/lmod_zoom_mtg_2022_02_08/beamerouterthemeTACC.sty b/my_docs/22/lmod_zoom_mtg_2022_02_08/beamerouterthemeTACC.sty deleted file mode 120000 index da0a45d33..000000000 --- a/my_docs/22/lmod_zoom_mtg_2022_02_08/beamerouterthemeTACC.sty +++ /dev/null @@ -1 +0,0 @@ -../../beamer/beamerouterthemeTACC.sty \ No newline at end of file diff --git a/my_docs/22/lmod_zoom_mtg_2022_02_08/beamerouterthemeTACC.sty b/my_docs/22/lmod_zoom_mtg_2022_02_08/beamerouterthemeTACC.sty new file mode 100755 index 000000000..038580303 --- /dev/null +++ b/my_docs/22/lmod_zoom_mtg_2022_02_08/beamerouterthemeTACC.sty @@ -0,0 +1,196 @@ +% Copyright 2003 by Till Tantau +% +% This program can be redistributed and/or modified under the terms +% of the GNU Public License, version 2. + +\mode + +\setbeamertemplate{frametitle}[default][center] +\addtobeamertemplate{frametitle}{\vskip 4ex minus 4ex}{} + +% Here we define what appears at the bottom of each slide: the "footline". +\setbeamertemplate{footline}{% + \leavevmode% + + % Horizontal line dividing the rest of the slide from the footer? + % hrule goes all the way across... + % \hrule height.3pt% + % With \rule, you can specify the thickness + % \rule[raise-height]{width}{thickness} + \hspace{.025\textwidth}\rule{.95\textwidth}{.5pt} + + \hbox{% + % On the left half of the footer, insert the TACC logo + \begin{minipage}{.5\textwidth}% + \hskip .033\textwidth%Give horizontal space else this will set on the left edge of the slide! + % TACC logo with custom viewport! + \includegraphics[viewport=1 -1 135 35, clip=true, width=.4\textwidth]{figures/TACC_logo} + \end{minipage} + % + \begin{minipage}{.5\textwidth}% + \vskip .023\textheight% + \raggedleft% + \setlength{\rightskip}{.033\textwidth} + % + % If we are not on the first page, insert a page number + % For some reason, insertframenumber is buggy when you have fragile + % slides with verbatim environments in them... it tends to skip numbers + % for some reason! On the other hand, the pagenumber is incremented + % for *every* slide, including transition slides... + \ifnum \thepage>1 + % \insertshorttitle + \insertframenumber + % \insertframenumber/\inserttotalframenumber + % \insertpagenumber + \else % Do a phantom of whatever you do on other pages, so spacing matches + %$\phantom{\insertshorttitle}$ + $\phantom{\insertframenumber}$ + %$\phantom{\insertframenumber/\inserttotalframenumber}$ + %$\phantom{\insertpagenumber}$ + \fi + \hfill\includegraphics[width=.5\textwidth]{figures/UT_logo}% + \end{minipage}% + }% + \vskip .023\textheight% +} + + + + +\ifTACCheadernav + +\usesectionheadtemplate +{\hfill\insertsectionhead} +{\hfill\color{fg!50!bg}\insertsectionhead} + +% Head +\ifbeamer@compress + +% Here we define how the top of the frame looks, the "headline". +\setbeamertemplate{headline} +{% + \ifnum \thepage>1 + \leavevmode% + \begin{beamercolorbox}[wd=.5\paperwidth,ht=2.5ex,dp=1.125ex]{% + section in head/foot}% + \insertsectionnavigationhorizontal{.5\paperwidth}{\hskip0pt plus1filll}{}% + \end{beamercolorbox}% + \begin{beamercolorbox}[wd=.5\paperwidth,ht=2.5ex,dp=1.125ex]{% + subsection in head/foot}% + \insertsubsectionnavigationhorizontal{% + .5\paperwidth}{}{\hskip0pt plus1filll}% + \end{beamercolorbox}% + \fi %\thepage>1 +} + +\else% Not compressed + +\setbeamertemplate{headline} +{% + \ifnum \thepage>1 + \leavevmode% + \@tempdimb=2.4375ex% + \ifnum\beamer@subsectionmax<\beamer@sectionmax% + \multiply\@tempdimb by\beamer@sectionmax% + \else% + \multiply\@tempdimb by\beamer@subsectionmax% + \fi% + \ifdim\@tempdimb>0pt% + \advance\@tempdimb by 1.125ex% + \begin{beamercolorbox}[wd=.5\paperwidth,ht=\@tempdimb]{% + section in head/foot}% + \vbox to\@tempdimb{\vfil\insertsectionnavigation{.5\paperwidth}\vfil}% + \end{beamercolorbox}% + \begin{beamercolorbox}[wd=.5\paperwidth,ht=\@tempdimb]{% + subsection in head/foot}% + \vbox to\@tempdimb{\vfil\insertsubsectionnavigation{.5\paperwidth}\vfil}% + \end{beamercolorbox}% + \fi% + \fi % \thepage>1 +} + +\fi % end if compressed +\fi % TACCheadernav + + +\ifTACCheadertree + +\setbeamertemplate{headline} +{ + \begin{beamercolorbox}[wd=\paperwidth,colsep=1.5pt + ]{upper separation line head} + \end{beamercolorbox} + % + % Place short title + % + \begin{beamercolorbox}[wd=\paperwidth,ht=2.5ex,dp=1.125ex,% + leftskip=.3cm,rightskip=.3cm plus1fil]{title in head/foot} + \usebeamerfont{title in head/foot}\insertshorttitle + \end{beamercolorbox} + + % + % Place section + % + \begin{beamercolorbox}[wd=\paperwidth,ht=2.5ex,dp=1.125ex,% + leftskip=.3cm,rightskip=.3cm plus1fil]{section in head/foot} + \usebeamerfont{section in head/foot}% + %\ifbeamer@tree@showhooks + \setbox\beamer@tempbox=\hbox{\insertsectionhead}% + \ifdim\wd\beamer@tempbox>1pt% + \hskip2pt\raise1.9pt\hbox{\vrule width0.4pt height1.875ex\vrule width 5pt height0.4pt}% + \hskip1pt% + \fi% \ifdim + %\else% + %\hskip6pt% + %\fi% \ifbeamer + \insertsectionhead + \end{beamercolorbox} + +% +% Place subsection +% +\begin{beamercolorbox}[wd=\paperwidth,ht=2.5ex,dp=1.125ex,% + leftskip=.3cm,rightskip=.3cm plus1fil]{subsection in head/foot} + \usebeamerfont{subsection in head/foot}% + %\ifbeamer@tree@showhooks + \setbox\beamer@tempbox=\hbox{\insertsubsectionhead}% + \ifdim\wd\beamer@tempbox>1pt% + \hskip9.4pt\raise1.9pt\hbox{\vrule width0.4pt height1.875ex\vrule width 5pt height0.4pt}% + \hskip1pt% + \fi% \ifdim + %\else% + %\hskip12pt% + %\fi% \ifbeamer + \insertsubsectionhead +\end{beamercolorbox} + +% +% Place final separation box +% + \begin{beamercolorbox}[wd=\paperwidth,colsep=1.5pt + ]{lower separation line head} + \end{beamercolorbox} + + % + % Another matching rule which helps to frame the content + % + \hspace{.025\textwidth}\rule{.95\textwidth}{.5pt} +} +\fi % TACCheadertree + + +% The following command suppresses all navigation symbols. This is +% necessary in the TACC theme, since it overlaps where we want the +% logo to be. +\setbeamertemplate{navigation symbols}{} + +% Align the navigation symbols vertically (still overlaps our logo!) +%\setbeamertemplate{navigation symbols}[vertical]{} + +% Only places the slide-forward and slide-back symbol, but yes, +% this still overlaps our logo! +%\setbeamertemplate{navigation symbols}[only frame symbol]{} + + +\mode + diff --git a/my_docs/22/lmod_zoom_mtg_2022_02_08/beamerouterthemeTACC16.sty b/my_docs/22/lmod_zoom_mtg_2022_02_08/beamerouterthemeTACC16.sty deleted file mode 120000 index 54bd09537..000000000 --- a/my_docs/22/lmod_zoom_mtg_2022_02_08/beamerouterthemeTACC16.sty +++ /dev/null @@ -1 +0,0 @@ -../../beamer/beamerouterthemeTACC16.sty \ No newline at end of file diff --git a/my_docs/22/lmod_zoom_mtg_2022_02_08/beamerouterthemeTACC16.sty b/my_docs/22/lmod_zoom_mtg_2022_02_08/beamerouterthemeTACC16.sty new file mode 100755 index 000000000..d5e6388c7 --- /dev/null +++ b/my_docs/22/lmod_zoom_mtg_2022_02_08/beamerouterthemeTACC16.sty @@ -0,0 +1,312 @@ +% Antonio Gomez (agomez@tacc.utexas.edu) +% 4-20-17. Added option to put the footer on the right side + + + +\mode + +\usepackage{xcolor} +\usepackage{graphicx} +\usepackage{etoolbox} + + + +% This theme accepts the "rightfooter" option +% When used, it will put the TACC logo at the bottom of the slide on the right side +% By default, it goes to the left + +\xifaspectratio{ + {169} { + \pgfdeclareimage[width=\paperwidth]{titlebackground}{./figures/master169.jpg} + \if@rightfooterOption + \pgfdeclareimage[width=\paperwidth]{background}{./figures/secondary_right169.jpg} +\else + \pgfdeclareimage[width=\paperwidth]{background}{./figures/secondary169.jpg} +\fi +} +}[ +\pgfdeclareimage[width=\paperwidth]{titlebackground}{./figures/master.jpg} + \if@rightfooterOption + \pgfdeclareimage[width=\paperwidth]{background}{./figures/secondary_right.jpg} +\else + \pgfdeclareimage[width=\paperwidth]{background}{./figures/secondary.jpg} +\fi +] + +\setbeamertemplate{background canvas}{% +\xifaspectratio{ + {169} { + \ifnum\c@framenumber=1 % + \begin{picture}(0,0) + \put(-3,-256){% + \pgfuseimage{titlebackground} + } + \end{picture} + \else% + \begin{picture}(0,0) + \put(-3,-260){% + \pgfuseimage{background} + } + \end{picture} + \fi + } + {43} { + \ifnum\c@framenumber=1 % + \begin{picture}(0,0) + \put(-4,-274){% + \pgfuseimage{titlebackground} + } + \end{picture} + \else% + \begin{picture}(0,0) + \put(-4,-274){% + \pgfuseimage{background} + } + \end{picture} + \fi + } +} +} + + + +%\setbeamertemplate{background canvas}{% +% % On title page +% \ifnum\c@framenumber=1 % +% \begin{picture}(0,0) +% \put(0,-253){% +% \pgfuseimage{titlebackground} +% } +% \end{picture} +% +% \else% +% \xifaspectratio{ +% {169} { +% % Other frames background +% \begin{picture}(0,0) +% \put(-4,-260){% +% \pgfuseimage{background} +% } +% \end{picture} +% } +% }[ +% % Other frames background +% \begin{picture}(0,0) +% \put(-4,-274){% +% \pgfuseimage{background} +% } +% \end{picture} +% ] +% \fi% +%} + + +\setbeamertemplate{title page}{ +\vspace{40pt} +\begin{center} +\usebeamerfont{title} {\huge \inserttitle}\par +\vspace{4ex} +\usebeamerfont{author} { + \insertauthor +}\par +\vspace{2ex} +\usebeamerfont{institute}{ + \insertinstitute +} \par +\vspace{2ex} +\usebeamerfont{date}{ + \insertdate +} +\end{center} +} + + +\setbeamertemplate{frametitle}[default][center] +\setbeamertemplate{frametitle}{ + \makeatletter + \regexpatchcmd{\insertframetitle} + {(\c{usebeamertemplate}.*)\c{fi}} + {\c{NoCaseChange}\cB\{\1\cE\}\c{fi}} + {}{}% + \makeatother + \vskip1ex + \insertframetitle +} + +% Here we define what appears at the bottom of each slide: the "footline". +\setbeamertemplate{footline}{% + \leavevmode% + + % Horizontal line dividing the rest of the slide from the footer? + % hrule goes all the way across... + % \hrule height.3pt% + % With \rule, you can specify the thickness + % \rule[raise-height]{width}{thickness} + % \hspace{.025\textwidth}\rule{.95\textwidth}{.5pt} + + \hbox{% + \ifnum \thepage>1 + \if@rightfooterOption + \begin{minipage}{.2\textwidth}% + \hskip .05\textwidth%Give horizontal space else this will set on the left edge of the slide! + \end{minipage} + \else + \begin{minipage}{.4\textwidth}% + \hskip .05\textwidth%Give horizontal space else this will set on the left edge of the slide! + \end{minipage} + \fi + + + \begin{minipage}{\textwidth}% + % \vskip .023\textheight% + \raggedleft% + \setlength{\rightskip}{\textwidth} + \if@rightfooterOption + \hbox{% + \begin{beamercolorbox}[wd=0.7\textwidth,ht=2.25ex,dp=1ex,left]{author in head/foot}% + \insertshorttitle{} \hskip .01\textwidth | \hskip .01\textwidth \insertdate{} \hskip .01\textwidth | \hskip .01\textwidth \insertframenumber{} + \end{beamercolorbox}% + } + \else + \hbox{% + \begin{beamercolorbox}[wd=0.5\textwidth,ht=2.25ex,dp=1ex,left]{author in head/foot}% + \insertshorttitle{} \hskip .01\textwidth | \hskip .01\textwidth \insertdate{} \hskip .01\textwidth | \hskip .01\textwidth \insertframenumber{} + \end{beamercolorbox}% + } + \fi + + \end{minipage}% + \begin{minipage}{.05\textwidth}% + \end{minipage}% + \fi %\thepage>1 + }% + \vskip .023\textheight% + +} + + + + +\ifTACCheadernav + +\usesectionheadtemplate +{\hfill\insertsectionhead} +{\hfill\color{fg!50!bg}\insertsectionhead} + +% Head +\ifbeamer@compress + +% Here we define how the top of the frame looks, the "headline". +\setbeamertemplate{headline} +{% + \ifnum \thepage>1 + \leavevmode% + \begin{beamercolorbox}[wd=.5\paperwidth,ht=2.5ex,dp=1.125ex]{% + section in head/foot}% + \insertsectionnavigationhorizontal{.5\paperwidth}{\hskip0pt plus1filll}{}% + \end{beamercolorbox}% + \begin{beamercolorbox}[wd=.5\paperwidth,ht=2.5ex,dp=1.125ex]{% + subsection in head/foot}% + \insertsubsectionnavigationhorizontal{% + .5\paperwidth}{}{\hskip0pt plus1filll}% + \end{beamercolorbox}% + \fi %\thepage>1 +} + +\else% Not compressed + +\setbeamertemplate{headline} +{% + \ifnum \thepage>1 + \leavevmode% + \@tempdimb=2.4375ex% + \ifnum\beamer@subsectionmax<\beamer@sectionmax% + \multiply\@tempdimb by\beamer@sectionmax% + \else% + \multiply\@tempdimb by\beamer@subsectionmax% + \fi% + \ifdim\@tempdimb>0pt% + \advance\@tempdimb by 1.125ex% + \begin{beamercolorbox}[wd=.5\paperwidth,ht=\@tempdimb]{% + section in head/foot}% + \vbox to\@tempdimb{\vfil\insertsectionnavigation{.5\paperwidth}\vfil}% + \end{beamercolorbox}% + \begin{beamercolorbox}[wd=.5\paperwidth,ht=\@tempdimb]{% + subsection in head/foot}% + \vbox to\@tempdimb{\vfil\insertsubsectionnavigation{.5\paperwidth}\vfil}% + \end{beamercolorbox}% + \fi% + \fi % \thepage>1 +} + +\fi % end if compressed +\fi % TACCheadernav + + +\ifTACCheadertree + +\setbeamertemplate{headline} +{ + \begin{beamercolorbox}[wd=\paperwidth,colsep=1.5pt]{upper separation line head} + \end{beamercolorbox} + % + % Place short title + % + \begin{beamercolorbox}[wd=\paperwidth,ht=2.5ex,dp=1.125ex,% + leftskip=.3cm,rightskip=.3cm plus1fil]{title in head/foot} + \usebeamerfont{title in head/foot}\insertshorttitle + \end{beamercolorbox} + + % + % Place section + % + \begin{beamercolorbox}[wd=\paperwidth,ht=2.5ex,dp=1.125ex,% + leftskip=.3cm,rightskip=.3cm plus1fil]{section in head/foot} + \usebeamerfont{section in head/foot}% + %\ifbeamer@tree@showhooks + \setbox\beamer@tempbox=\hbox{\insertsectionhead}% + \ifdim\wd\beamer@tempbox>1pt% + \hskip2pt\raise1.9pt\hbox{\vrule width0.4pt height1.875ex\vrule width 5pt height0.4pt}% + \hskip1pt% + \fi + \insertsectionhead + \end{beamercolorbox} + +% +% Place subsection +% +\begin{beamercolorbox}[wd=\paperwidth,ht=2.5ex,dp=1.125ex,% + leftskip=.3cm,rightskip=.3cm plus1fil]{subsection in head/foot} + \usebeamerfont{subsection in head/foot}% + %\ifbeamer@tree@showhooks + \setbox\beamer@tempbox=\hbox{\insertsubsectionhead}% + \ifdim\wd\beamer@tempbox>1pt% + \hskip9.4pt\raise1.9pt\hbox{\vrule width0.4pt height1.875ex\vrule width 5pt height0.4pt}% + \hskip1pt% + \fi + \insertsubsectionhead +\end{beamercolorbox} + +% +% Place final separation box +% + \begin{beamercolorbox}[wd=\paperwidth,colsep=1.5pt + ]{lower separation line head} + \end{beamercolorbox} + + % + % Another matching rule which helps to frame the content + % + \hspace{.025\textwidth}\rule{.95\textwidth}{.5pt} +} +\fi % TACCheadertree + + +% The following command suppresses all navigation symbols. This is +% necessary in the TACC theme, since it overlaps where we want the +% logo to be. +\setbeamertemplate{navigation symbols}{} + + +\mode + diff --git a/my_docs/22/lmod_zoom_mtg_2022_02_08/beamerthemeTACC.sty b/my_docs/22/lmod_zoom_mtg_2022_02_08/beamerthemeTACC.sty deleted file mode 120000 index 5c339abd4..000000000 --- a/my_docs/22/lmod_zoom_mtg_2022_02_08/beamerthemeTACC.sty +++ /dev/null @@ -1 +0,0 @@ -../../beamer/beamerthemeTACC.sty \ No newline at end of file diff --git a/my_docs/22/lmod_zoom_mtg_2022_02_08/beamerthemeTACC.sty b/my_docs/22/lmod_zoom_mtg_2022_02_08/beamerthemeTACC.sty new file mode 100755 index 000000000..c6a1b1269 --- /dev/null +++ b/my_docs/22/lmod_zoom_mtg_2022_02_08/beamerthemeTACC.sty @@ -0,0 +1,26 @@ +%% TACC theme for beamer + +\newif\ifTACCheadernav +\DeclareOption{headernav}{\global\TACCheadernavtrue} + +\newif\ifTACCheadertree +\DeclareOption{headertree}{\global\TACCheadertreetrue} +\ProcessOptions + +\mode + +\usefonttheme{TACC} +\usecolortheme{TACC} +\useinnertheme{TACC} +\useoutertheme{TACC} + +\mode + + +\newcommand{\event}[1]{% + \makeatletter% + \def\TACC@eventname{#1}% + \makeatother} + +\newcommand{\sectionframe}[1]{\section{#1}\frame{\Large\textbf{#1}}} +\newcommand{\subsectionframe}[1]{\subsection{#1}\frame{\large\textbf{#1}}} diff --git a/my_docs/22/lmod_zoom_mtg_2022_02_08/beamerthemeTACC16.sty b/my_docs/22/lmod_zoom_mtg_2022_02_08/beamerthemeTACC16.sty deleted file mode 120000 index 7a9d4d296..000000000 --- a/my_docs/22/lmod_zoom_mtg_2022_02_08/beamerthemeTACC16.sty +++ /dev/null @@ -1 +0,0 @@ -../../beamer/beamerthemeTACC16.sty \ No newline at end of file diff --git a/my_docs/22/lmod_zoom_mtg_2022_02_08/beamerthemeTACC16.sty b/my_docs/22/lmod_zoom_mtg_2022_02_08/beamerthemeTACC16.sty new file mode 100755 index 000000000..b522d0207 --- /dev/null +++ b/my_docs/22/lmod_zoom_mtg_2022_02_08/beamerthemeTACC16.sty @@ -0,0 +1,61 @@ +%% TACC theme for beamer + + +\newif\if@rightfooterOption +\@rightfooterOptionfalse +\DeclareOption{rightfooter}{\@rightfooterOptiontrue} +\ProcessOptions + + +\newif\ifTACCheadernav +\DeclareOption{headernav}{\global\TACCheadernavtrue} + +\newif\ifTACCheadertree +\DeclareOption{headertree}{\global\TACCheadertreetrue} +\ProcessOptions + +\usepackage{xparse} +\ExplSyntaxOn +\NewDocumentCommand{\ifaspectratio}{mmm} + { + % Recover the option from those passed to the class + \keys_set:nf { zunbeltz/beameroptions } { \use:c { opt@beamer.cls } } + \str_if_eq:nVTF { #1 } \l_zunbeltz_aspectratio_tl { #2 } { #3 } + } +\NewDocumentCommand{\xifaspectratio}{mO{}} + { + % Recover the option from those passed to the class + \keys_set:nf { zunbeltz/beameroptions } { \use:c { opt@beamer.cls } } + \str_case:VnF \l_zunbeltz_aspectratio_tl { #1 } { #2 } + } +% We need to define only one key, the other are treated as `unknown' +\keys_define:nn { zunbeltz/beameroptions } + { + aspectratio .tl_set:N = \l_zunbeltz_aspectratio_tl, + aspectratio .initial:n = 43, + unknown .code:n = {}, + } + +% Generate the variants we need +\cs_generate_variant:Nn \keys_set:nn { nf } +\cs_generate_variant:Nn \str_if_eq:nnTF { nV } +\cs_generate_variant:Nn \str_case:nnF { V } +\ExplSyntaxOff + +\mode + +\usefonttheme{TACC16} +\useinnertheme{TACC16} +\useoutertheme{TACC16} +\usecolortheme{TACC16} + +\mode + + +\newcommand{\event}[1]{% + \makeatletter% + \def\TACC@eventname{#1}% + \makeatother} + +\newcommand{\sectionframe}[1]{\section{#1}\frame{\Large\textbf{#1}}} +\newcommand{\subsectionframe}[1]{\subsection{#1}\frame{\large\textbf{#1}}} diff --git a/my_docs/22/lmod_zoom_mtg_2022_02_08/figures b/my_docs/22/lmod_zoom_mtg_2022_02_08/figures deleted file mode 120000 index ddafd8974..000000000 --- a/my_docs/22/lmod_zoom_mtg_2022_02_08/figures +++ /dev/null @@ -1 +0,0 @@ -../../beamer/figures \ No newline at end of file diff --git a/my_docs/22/lmod_zoom_mtg_2022_02_08/figures/TACC_logo.pdf b/my_docs/22/lmod_zoom_mtg_2022_02_08/figures/TACC_logo.pdf new file mode 100755 index 000000000..c018a20cb Binary files /dev/null and b/my_docs/22/lmod_zoom_mtg_2022_02_08/figures/TACC_logo.pdf differ diff --git a/my_docs/22/lmod_zoom_mtg_2022_02_08/figures/UT_logo.pdf b/my_docs/22/lmod_zoom_mtg_2022_02_08/figures/UT_logo.pdf new file mode 100755 index 000000000..d5b42e752 Binary files /dev/null and b/my_docs/22/lmod_zoom_mtg_2022_02_08/figures/UT_logo.pdf differ diff --git a/my_docs/22/lmod_zoom_mtg_2022_02_08/figures/cc.png b/my_docs/22/lmod_zoom_mtg_2022_02_08/figures/cc.png new file mode 100644 index 000000000..8a532ff8f Binary files /dev/null and b/my_docs/22/lmod_zoom_mtg_2022_02_08/figures/cc.png differ diff --git a/my_docs/22/lmod_zoom_mtg_2022_02_08/figures/isa.png b/my_docs/22/lmod_zoom_mtg_2022_02_08/figures/isa.png new file mode 100644 index 000000000..f95d985e7 Binary files /dev/null and b/my_docs/22/lmod_zoom_mtg_2022_02_08/figures/isa.png differ diff --git a/my_docs/22/lmod_zoom_mtg_2022_02_08/figures/master.jpg b/my_docs/22/lmod_zoom_mtg_2022_02_08/figures/master.jpg new file mode 100644 index 000000000..f5c56c04a Binary files /dev/null and b/my_docs/22/lmod_zoom_mtg_2022_02_08/figures/master.jpg differ diff --git a/my_docs/22/lmod_zoom_mtg_2022_02_08/figures/master169.jpg b/my_docs/22/lmod_zoom_mtg_2022_02_08/figures/master169.jpg new file mode 100644 index 000000000..b215776eb Binary files /dev/null and b/my_docs/22/lmod_zoom_mtg_2022_02_08/figures/master169.jpg differ diff --git a/my_docs/22/lmod_zoom_mtg_2022_02_08/figures/master169.png b/my_docs/22/lmod_zoom_mtg_2022_02_08/figures/master169.png new file mode 100644 index 000000000..bc5c0ed12 Binary files /dev/null and b/my_docs/22/lmod_zoom_mtg_2022_02_08/figures/master169.png differ diff --git a/my_docs/22/lmod_zoom_mtg_2022_02_08/figures/secondary.jpg b/my_docs/22/lmod_zoom_mtg_2022_02_08/figures/secondary.jpg new file mode 100644 index 000000000..d905a95c9 Binary files /dev/null and b/my_docs/22/lmod_zoom_mtg_2022_02_08/figures/secondary.jpg differ diff --git a/my_docs/22/lmod_zoom_mtg_2022_02_08/figures/secondary169.jpg b/my_docs/22/lmod_zoom_mtg_2022_02_08/figures/secondary169.jpg new file mode 100644 index 000000000..4eb017957 Binary files /dev/null and b/my_docs/22/lmod_zoom_mtg_2022_02_08/figures/secondary169.jpg differ diff --git a/my_docs/22/lmod_zoom_mtg_2022_02_08/figures/secondary169.png b/my_docs/22/lmod_zoom_mtg_2022_02_08/figures/secondary169.png new file mode 100644 index 000000000..cb9060a56 Binary files /dev/null and b/my_docs/22/lmod_zoom_mtg_2022_02_08/figures/secondary169.png differ diff --git a/my_docs/22/lmod_zoom_mtg_2022_02_08/figures/secondary_right.jpg b/my_docs/22/lmod_zoom_mtg_2022_02_08/figures/secondary_right.jpg new file mode 100644 index 000000000..f25f93a58 Binary files /dev/null and b/my_docs/22/lmod_zoom_mtg_2022_02_08/figures/secondary_right.jpg differ diff --git a/my_docs/22/lmod_zoom_mtg_2022_02_08/figures/secondary_right169.jpg b/my_docs/22/lmod_zoom_mtg_2022_02_08/figures/secondary_right169.jpg new file mode 100644 index 000000000..567a1078f Binary files /dev/null and b/my_docs/22/lmod_zoom_mtg_2022_02_08/figures/secondary_right169.jpg differ diff --git a/my_docs/22/lmod_zoom_mtg_2022_02_08/themes b/my_docs/22/lmod_zoom_mtg_2022_02_08/themes deleted file mode 120000 index a98530730..000000000 --- a/my_docs/22/lmod_zoom_mtg_2022_02_08/themes +++ /dev/null @@ -1 +0,0 @@ -../../beamer/themes \ No newline at end of file diff --git a/my_docs/22/lmod_zoom_mtg_2022_02_08/themes/beamercolorthemeTACC16.sty b/my_docs/22/lmod_zoom_mtg_2022_02_08/themes/beamercolorthemeTACC16.sty new file mode 100644 index 000000000..248ae8cb6 --- /dev/null +++ b/my_docs/22/lmod_zoom_mtg_2022_02_08/themes/beamercolorthemeTACC16.sty @@ -0,0 +1,193 @@ +% Copyright 2003 by Till Tantau . +% +% This program can be redistributed and/or modified under the terms +% of the GNU Public License, version 2. + +\mode + +\usepackage{textcase,regexpatch} + +\setbeamertemplate{blocks}[rounded][shadow=true] + + +\definecolor{TACCred}{RGB}{180,13,29} +\definecolor{TACCorange}{RGB}{210,104,43} +\definecolor{TACCblue}{RGB}{21,77,122} +%\definecolor{TACCgreen}{RGB}{30,134,104} +\definecolor{TACCgreen}{RGB}{49,168,51} + +% I downloaded a gimp color palette from +% http://maururu.net/2007/latex-beamer-color-palette/ +% Which provides rgb values (I think) for several of the +% default beamer themes. You can open this in gimp by +% opening the Palettes dialog, right-clicking anywhere and choosing +% 'Import Palette'. A color in there called 'default added blue' +% appeared to be approximately what I wanted. It had the triple +% of values 141 145 208. If you double-click on this in the +% palette editor it gives you a bunch of information. You can't +% use these values directly to set a color...it just comes out white. +% I think definecolor is expecting something normalized by 255. Yes! + + +%%% +% Set the normal text color +%%% +\setbeamercolor{normal text}{fg=black} %,bg=white} +\setbeamercolor{example text}{fg=TACCgreen} +\setbeamercolor{alerted text}{fg=TACCorange} + + +\setbeamercolor{structure}{fg=black} +%\setbeamercolor{structure}{fg=black} + +\setbeamercolor{background canvas}{parent=normal text} +\setbeamercolor{background}{parent=background canvas} + +\setbeamercolor{palette primary}{use=structure,fg=structure.fg} +\setbeamercolor{palette secondary}{use=structure,fg=structure.fg!75!black} +\setbeamercolor{palette tertiary}{use=structure,fg=structure.fg!50!black} +\setbeamercolor{palette quaternary}{fg=black} + +\setbeamercolor{palette sidebar primary}{use=normal text,fg=normal text.fg} +\setbeamercolor{palette sidebar secondary}{use=structure,fg=structure.fg} +\setbeamercolor{palette sidebar tertiary}{use=normal text,fg=normal text.fg} +\setbeamercolor{palette sidebar quaternary}{use=structure,fg=structure.fg} + +\setbeamercolor{math text}{} +\setbeamercolor{math text inlined}{parent=math text} +\setbeamercolor{math text displayed}{parent=math text} + +\setbeamercolor{normal text in math text}{} + +\setbeamercolor{local structure}{parent=structure} + +\setbeamercolor{titlelike}{parent=structure} + +\setbeamercolor{title}{parent=titlelike} +\setbeamercolor{title in head/foot}{parent=palette quaternary} +\setbeamercolor{title in sidebar}{parent=palette sidebar quaternary} + +\setbeamercolor{subtitle}{parent=title} + +\setbeamercolor{author}{} +\setbeamercolor{author in head/foot}{parent=palette primary} +\setbeamercolor{author in sidebar}{use=palette sidebar tertiary,fg=palette sidebar tertiary.fg} + +\setbeamercolor{institute}{} +\setbeamercolor{institute in head/foot}{parent=palette tertiary} +\setbeamercolor{institute in sidebar}{use=palette sidebar tertiary,fg=palette sidebar tertiary.fg} + +\setbeamercolor{date}{} +\setbeamercolor{date in head/foot}{parent=palette secondary} +\setbeamercolor{date in sidebar}{use=palette sidebar tertiary,fg=palette sidebar tertiary.fg} + +\setbeamercolor{titlegraphic}{} + +\setbeamercolor{part name}{} +\setbeamercolor{part title}{parent=titlelike} + +\setbeamercolor{section in toc}{parent=structure} +\setbeamercolor{section in toc shaded}{parent=section in toc} +\setbeamercolor{section in head/foot}{parent=palette tertiary} +\setbeamercolor{section in sidebar}{parent=palette sidebar secondary} +\setbeamercolor{section in sidebar shaded}{use=section in sidebar,fg=section in sidebar.fg!40!bg} +\setbeamercolor{section number projected}{parent=item projected} + +\setbeamercolor{subsection in toc}{} +\setbeamercolor{subsection in toc shaded}{parent=subsection in toc} +\setbeamercolor{subsection in head/foot}{parent=palette secondary} +\setbeamercolor{subsection in sidebar}{parent=palette sidebar primary} +\setbeamercolor{subsection in sidebar shaded}{use=subsection in sidebar,fg=subsection in sidebar.fg!40!bg} +\setbeamercolor{subsection number projected}{parent={subitem projected}} + +\setbeamercolor{subsubsection in toc}{parent=subsection in toc} +\setbeamercolor{subsubsection in toc shaded}{parent=subsubsection in toc} +\setbeamercolor{subsubsection in head/foot}{parent=subsection in head/foot} +\setbeamercolor{subsubsection in sidebar}{parent=subsection in sidebar} +\setbeamercolor{subsubsection in sidebar shaded}{parent=subsection in sidebar shaded} +\setbeamercolor{subsubsection number projected}{parent=subsubitem projected} + +\setbeamercolor{headline}{} +\setbeamercolor{footline}{} + +\setbeamercolor{sidebar}{} +\setbeamercolor{sidebar left}{parent=sidebar} +\setbeamercolor{sidebar right}{parent=sidebar} + +\setbeamercolor{logo}{parent=palette secondary} + +\setbeamercolor{frametitle}{parent=titlelike} +\setbeamercolor{framesubtitle}{parent=frametitle} + +\setbeamercolor{frametitle right}{parent=frametitle} + +\setbeamercolor{caption}{} +\setbeamercolor{caption name}{parent=structure} + +\setbeamercolor{button}{use=local structure,bg=local structure.fg!50!bg,fg=white} +\setbeamercolor{button border}{use=button,fg=button.bg} +\setbeamercolor{navigation symbols}{use=structure,fg=structure.fg!40!bg} +\setbeamercolor{navigation symbols dimmed}{use=structure,fg=structure.fg!20!bg} +\setbeamercolor{mini frame}{parent=section in head/foot} + +\setbeamercolor{block body}{fg=black} +\setbeamercolor{block body alerted}{fg=black} +\setbeamercolor{block body example}{fg=black} + +\setbeamercolor{block title}{bg=TACCblue,fg=white} +\setbeamercolor{block title alerted}{bg=TACCred,fg=white} +\setbeamercolor{block title example}{bg=TACCgreen,fg=white} + +\setbeamercolor{item}{parent=local structure} +\setbeamercolor{subitem}{parent=item} +\setbeamercolor{subsubitem}{parent=subitem} + +\setbeamercolor{item projected}{parent=item,use=item,fg=black,bg=item.fg} +\setbeamercolor{subitem projected}{parent=item projected} +\setbeamercolor{subsubitem projected}{parent=subitem projected} + +\setbeamercolor{enumerate item}{parent=item} +\setbeamercolor{enumerate subitem}{parent=subitem} +\setbeamercolor{enumerate subsubitem}{parent=subsubitem} + +\setbeamercolor{itemize item}{parent=item} +\setbeamercolor{itemize subitem}{parent=subitem} +\setbeamercolor{itemize subsubitem}{parent=subsubitem} + +\setbeamercolor{itemize/enumerate body}{} +\setbeamercolor{itemize/enumerate subbody}{} +\setbeamercolor{itemize/enumerate subsubbody}{} + +\setbeamercolor{description item}{parent=item} + +\setbeamercolor{bibliography item}{parent=item} + +\setbeamercolor{bibliography entry author}{use=structure,fg=structure.fg} +\setbeamercolor{bibliography entry title}{use=normal text,fg=normal text.fg} +\setbeamercolor{bibliography entry location}{use=structure,fg=structure.fg!65!bg} +\setbeamercolor{bibliography entry note}{use=structure,fg=structure.fg!65!bg} + +\setbeamercolor{separation line}{} + +\setbeamercolor{upper separation line head}{parent=separation line} +\setbeamercolor{middle separation line head}{parent=separation line} +\setbeamercolor{lower separation line head}{parent=separation line} + +\setbeamercolor{upper separation line foot}{parent=separation line} +\setbeamercolor{middle separation line foot}{parent=separation line} +\setbeamercolor{lower separation line foot}{parent=separation line} + +\setbeamercolor{abstract}{} +\setbeamercolor{abstract title}{parent=structure} + +\setbeamercolor{verse}{} + +\setbeamercolor{quotation}{} +\setbeamercolor{quote}{parent=quotation} + +\setbeamercolor{page number in head/foot}{fg=fg!50!bg} + +\setbeamercolor{qed symbol}{parent=structure} + +\mode + diff --git a/my_docs/22/lmod_zoom_mtg_2022_02_08/themes/beamerfontthemeTACC16.sty b/my_docs/22/lmod_zoom_mtg_2022_02_08/themes/beamerfontthemeTACC16.sty new file mode 100644 index 000000000..d0fc325cc --- /dev/null +++ b/my_docs/22/lmod_zoom_mtg_2022_02_08/themes/beamerfontthemeTACC16.sty @@ -0,0 +1,21 @@ +% Copyright 2003 by Till Tantau +% +% This program can be redistributed and/or modified under the terms +% of the GNU Public License, version 2. + +\mode +\setbeamerfont{title}{parent=structure,size=\LARGE,series=\bfseries} +\setbeamerfont{author}{parent=structure,size=\large, series=\normalfont} +\setbeamerfont{frametitle}{parent=structure,size=\LARGE,series=\bfseries} +\setbeamerfont{framesubtitle}{parent=frametitle,size=\small} + +%\usefonttheme{professionalfonts} % using non standard fonts for beamer +%\usefonttheme{serif} % default family is serif +%\usepackage{fontspec} +%\setmainfont{Century Gothic} + +%\usepackage{fontspec} +\usepackage{libertine} + +\mode + diff --git a/my_docs/22/lmod_zoom_mtg_2022_02_08/themes/beamerinnerthemeTACC16.sty b/my_docs/22/lmod_zoom_mtg_2022_02_08/themes/beamerinnerthemeTACC16.sty new file mode 100644 index 000000000..f7f454e1d --- /dev/null +++ b/my_docs/22/lmod_zoom_mtg_2022_02_08/themes/beamerinnerthemeTACC16.sty @@ -0,0 +1,11 @@ +\mode + +\setbeamertemplate{itemize item}[triangle] +\setbeamertemplate{itemize subitem}[triangle] +\setbeamertemplate{itemize subsubitem}[triangle] +\setbeamertemplate{section in toc}{$\bullet$\hskip.5em\inserttocsection} +%\setbeamertemplate{subsection in toc}{} +\setbeamertemplate{subsubsection in toc}{} + +\mode + diff --git a/my_docs/22/lmod_zoom_mtg_2022_02_08/themes/beamerouterthemeTACC16-169.sty b/my_docs/22/lmod_zoom_mtg_2022_02_08/themes/beamerouterthemeTACC16-169.sty new file mode 100644 index 000000000..c62f9ed04 --- /dev/null +++ b/my_docs/22/lmod_zoom_mtg_2022_02_08/themes/beamerouterthemeTACC16-169.sty @@ -0,0 +1,247 @@ +% Copyright 2003 by Till Tantau +% +% This program can be redistributed and/or modified under the terms +% of the GNU Public License, version 2. + +\mode + +\usepackage{xcolor} +\usepackage{graphicx} +\usepackage{etoolbox} + +\pgfdeclareimage[width=\paperwidth]{titlebackground}{./figures/master169.png} +\pgfdeclareimage[width=\paperwidth]{background}{./figures/secondary169.png} + +\setbeamertemplate{background canvas}{% + \ifnum\c@framenumber=1% + \begin{picture}(0,0) + \put(-0.15,-250){% + \pgfuseimage{titlebackground} + } + %\put(0,-130.7){% + + %\begin{minipage}[b][45mm][t]{\textwidth}%{226mm} + %\begin{center} + % \usebeamerfont{title}{\MakeTextUppercase{\inserttitle}\par} + %\vspace{2ex} + %\usebeamerfont{author}{\insertauthor} + % \end{center} + %\end{minipage} + %} + \end{picture} + % On title page + \else% + % Other frames background + \begin{picture}(0,0) + \put(-0.15,-255.55){% + \pgfuseimage{background} + } + \end{picture} + \fi% +} + + +\setbeamertemplate{title page}{ +\vspace{40pt} +\begin{center} +\usebeamerfont{title} {\huge \inserttitle}\par +\vspace{4ex} +\usebeamerfont{author} { + \insertauthor +}\par +\vspace{2ex} +\usebeamerfont{institute}{ + \insertinstitute +} \par +\vspace{2ex} +\usebeamerfont{date}{ + \insertdate +} +\end{center} +} + + +\setbeamertemplate{frametitle}[default][center] +\setbeamertemplate{frametitle}{ + \makeatletter + \regexpatchcmd{\insertframetitle} + {(\c{usebeamertemplate}.*)\c{fi}} + {\c{NoCaseChange}\cB\{\1\cE\}\c{fi}} + {}{}% + \makeatother + \vskip1ex + \insertframetitle +} + +% Here we define what appears at the bottom of each slide: the "footline". +\setbeamertemplate{footline}{% + \leavevmode% + + % Horizontal line dividing the rest of the slide from the footer? + % hrule goes all the way across... + % \hrule height.3pt% + % With \rule, you can specify the thickness + % \rule[raise-height]{width}{thickness} + % \hspace{.025\textwidth}\rule{.95\textwidth}{.5pt} + + \hbox{% + \ifnum \thepage>1 + % On the left half of the footer, insert the TACC of + \begin{minipage}{.2\textwidth}% + \hskip .05\textwidth%Give horizontal space else this will set on the left edge of the slide! + % \includegraphics[width=.8\textwidth]{TACC_logo.png} + \end{minipage} + + + \begin{minipage}{\textwidth}% + % \vskip .023\textheight% + \raggedleft% + \setlength{\rightskip}{\textwidth} + \hbox{% + \begin{beamercolorbox}[wd=0.7\textwidth,ht=2.25ex,dp=1ex,left]{author in head/foot}% + \insertshorttitle{} \hskip .01\textwidth | \hskip .01\textwidth \insertdate{} \hskip .01\textwidth | \hskip .01\textwidth \insertframenumber{} + \end{beamercolorbox}% + } + + % + % If we are not on the first page, insert a page number + % For some reason, insertframenumber is buggy when you have fragile + % slides with verbatim environments in them... it tends to skip numbers + % for some reason! On the other hand, the pagenumber is incremented + % for *every* slide, including transition slides... + % \hfill\includegraphics[width=\textwidth]{tacc_ut.png} + \end{minipage}% + \begin{minipage}{.05\textwidth}% + \end{minipage}% + \fi %\thepage>1 + }% + \vskip .023\textheight% + +} + + + + +\ifTACCheadernav + +\usesectionheadtemplate +{\hfill\insertsectionhead} +{\hfill\color{fg!50!bg}\insertsectionhead} + +% Head +\ifbeamer@compress + +% Here we define how the top of the frame looks, the "headline". +\setbeamertemplate{headline} +{% + \ifnum \thepage>1 + \leavevmode% + \begin{beamercolorbox}[wd=.5\paperwidth,ht=2.5ex,dp=1.125ex]{% + section in head/foot}% + \insertsectionnavigationhorizontal{.5\paperwidth}{\hskip0pt plus1filll}{}% + \end{beamercolorbox}% + \begin{beamercolorbox}[wd=.5\paperwidth,ht=2.5ex,dp=1.125ex]{% + subsection in head/foot}% + \insertsubsectionnavigationhorizontal{% + .5\paperwidth}{}{\hskip0pt plus1filll}% + \end{beamercolorbox}% + \fi %\thepage>1 +} + +\else% Not compressed + +\setbeamertemplate{headline} +{% + \ifnum \thepage>1 + \leavevmode% + \@tempdimb=2.4375ex% + \ifnum\beamer@subsectionmax<\beamer@sectionmax% + \multiply\@tempdimb by\beamer@sectionmax% + \else% + \multiply\@tempdimb by\beamer@subsectionmax% + \fi% + \ifdim\@tempdimb>0pt% + \advance\@tempdimb by 1.125ex% + \begin{beamercolorbox}[wd=.5\paperwidth,ht=\@tempdimb]{% + section in head/foot}% + \vbox to\@tempdimb{\vfil\insertsectionnavigation{.5\paperwidth}\vfil}% + \end{beamercolorbox}% + \begin{beamercolorbox}[wd=.5\paperwidth,ht=\@tempdimb]{% + subsection in head/foot}% + \vbox to\@tempdimb{\vfil\insertsubsectionnavigation{.5\paperwidth}\vfil}% + \end{beamercolorbox}% + \fi% + \fi % \thepage>1 +} + +\fi % end if compressed +\fi % TACCheadernav + + +\ifTACCheadertree + +\setbeamertemplate{headline} +{ + \begin{beamercolorbox}[wd=\paperwidth,colsep=1.5pt]{upper separation line head} + \end{beamercolorbox} + % + % Place short title + % + \begin{beamercolorbox}[wd=\paperwidth,ht=2.5ex,dp=1.125ex,% + leftskip=.3cm,rightskip=.3cm plus1fil]{title in head/foot} + \usebeamerfont{title in head/foot}\insertshorttitle + \end{beamercolorbox} + + % + % Place section + % + \begin{beamercolorbox}[wd=\paperwidth,ht=2.5ex,dp=1.125ex,% + leftskip=.3cm,rightskip=.3cm plus1fil]{section in head/foot} + \usebeamerfont{section in head/foot}% + %\ifbeamer@tree@showhooks + \setbox\beamer@tempbox=\hbox{\insertsectionhead}% + \ifdim\wd\beamer@tempbox>1pt% + \hskip2pt\raise1.9pt\hbox{\vrule width0.4pt height1.875ex\vrule width 5pt height0.4pt}% + \hskip1pt% + \fi + \insertsectionhead + \end{beamercolorbox} + +% +% Place subsection +% +\begin{beamercolorbox}[wd=\paperwidth,ht=2.5ex,dp=1.125ex,% + leftskip=.3cm,rightskip=.3cm plus1fil]{subsection in head/foot} + \usebeamerfont{subsection in head/foot}% + %\ifbeamer@tree@showhooks + \setbox\beamer@tempbox=\hbox{\insertsubsectionhead}% + \ifdim\wd\beamer@tempbox>1pt% + \hskip9.4pt\raise1.9pt\hbox{\vrule width0.4pt height1.875ex\vrule width 5pt height0.4pt}% + \hskip1pt% + \fi + \insertsubsectionhead +\end{beamercolorbox} + +% +% Place final separation box +% + \begin{beamercolorbox}[wd=\paperwidth,colsep=1.5pt + ]{lower separation line head} + \end{beamercolorbox} + + % + % Another matching rule which helps to frame the content + % + \hspace{.025\textwidth}\rule{.95\textwidth}{.5pt} +} +\fi % TACCheadertree + + +% The following command suppresses all navigation symbols. This is +% necessary in the TACC theme, since it overlaps where we want the +% logo to be. +\setbeamertemplate{navigation symbols}{} + + +\mode + diff --git a/my_docs/22/lmod_zoom_mtg_2022_02_08/themes/beamerouterthemeTACC16.sty b/my_docs/22/lmod_zoom_mtg_2022_02_08/themes/beamerouterthemeTACC16.sty new file mode 100644 index 000000000..c5b178018 --- /dev/null +++ b/my_docs/22/lmod_zoom_mtg_2022_02_08/themes/beamerouterthemeTACC16.sty @@ -0,0 +1,247 @@ +% Copyright 2003 by Till Tantau +% +% This program can be redistributed and/or modified under the terms +% of the GNU Public License, version 2. + +\mode + +\usepackage{xcolor} +\usepackage{graphicx} +\usepackage{etoolbox} + +\pgfdeclareimage[width=\paperwidth]{titlebackground}{master.jpg} +\pgfdeclareimage[width=\paperwidth]{background}{secondary.jpg} + +\setbeamertemplate{background canvas}{% + \ifnum\c@framenumber=1% + \begin{picture}(0,0) + \put(0,-273){% + \pgfuseimage{titlebackground} + } + %\put(0,-130.7){% + + %\begin{minipage}[b][45mm][t]{\textwidth}%{226mm} + %\begin{center} + % \usebeamerfont{title}{\MakeTextUppercase{\inserttitle}\par} + %\vspace{2ex} + %\usebeamerfont{author}{\insertauthor} + % \end{center} + %\end{minipage} + %} + \end{picture} + % On title page + \else% + % Other frames background + \begin{picture}(0,0) + \put(0,-273){% + \pgfuseimage{background} + } + \end{picture} + \fi% +} + + +\setbeamertemplate{title page}{ +\vspace{40pt} +\begin{center} +\usebeamerfont{title} {\huge \inserttitle}\par +\vspace{4ex} +\usebeamerfont{author} { + \insertauthor +}\par +\vspace{2ex} +\usebeamerfont{institute}{ + \insertinstitute +} \par +\vspace{2ex} +\usebeamerfont{date}{ + \insertdate +} +\end{center} +} + + +\setbeamertemplate{frametitle}[default][center] +\setbeamertemplate{frametitle}{ + \makeatletter + \regexpatchcmd{\insertframetitle} + {(\c{usebeamertemplate}.*)\c{fi}} + {\c{NoCaseChange}\cB\{\1\cE\}\c{fi}} + {}{}% + \makeatother + \vskip1ex + \insertframetitle +} + +% Here we define what appears at the bottom of each slide: the "footline". +\setbeamertemplate{footline}{% + \leavevmode% + + % Horizontal line dividing the rest of the slide from the footer? + % hrule goes all the way across... + % \hrule height.3pt% + % With \rule, you can specify the thickness + % \rule[raise-height]{width}{thickness} + % \hspace{.025\textwidth}\rule{.95\textwidth}{.5pt} + + \hbox{% + \ifnum \thepage>1 + % On the left half of the footer, insert the TACC of + \begin{minipage}{.2\textwidth}% + \hskip .05\textwidth%Give horizontal space else this will set on the left edge of the slide! + % \includegraphics[width=.8\textwidth]{figures/TACC_logo.png} + \end{minipage} + + + \begin{minipage}{\textwidth}% + % \vskip .023\textheight% + \raggedleft% + \setlength{\rightskip}{\textwidth} + \hbox{% + \begin{beamercolorbox}[wd=0.7\textwidth,ht=2.25ex,dp=1ex,left]{author in head/foot}% + \insertshorttitle{} \hskip .01\textwidth | \hskip .01\textwidth \insertdate{} \hskip .01\textwidth | \hskip .01\textwidth \insertframenumber{} + \end{beamercolorbox}% + } + + % + % If we are not on the first page, insert a page number + % For some reason, insertframenumber is buggy when you have fragile + % slides with verbatim environments in them... it tends to skip numbers + % for some reason! On the other hand, the pagenumber is incremented + % for *every* slide, including transition slides... + % \hfill\includegraphics[width=\textwidth]{figures/tacc_ut.png} + \end{minipage}% + \begin{minipage}{.05\textwidth}% + \end{minipage}% + \fi %\thepage>1 + }% + \vskip .023\textheight% + +} + + + + +\ifTACCheadernav + +\usesectionheadtemplate +{\hfill\insertsectionhead} +{\hfill\color{fg!50!bg}\insertsectionhead} + +% Head +\ifbeamer@compress + +% Here we define how the top of the frame looks, the "headline". +\setbeamertemplate{headline} +{% + \ifnum \thepage>1 + \leavevmode% + \begin{beamercolorbox}[wd=.5\paperwidth,ht=2.5ex,dp=1.125ex]{% + section in head/foot}% + \insertsectionnavigationhorizontal{.5\paperwidth}{\hskip0pt plus1filll}{}% + \end{beamercolorbox}% + \begin{beamercolorbox}[wd=.5\paperwidth,ht=2.5ex,dp=1.125ex]{% + subsection in head/foot}% + \insertsubsectionnavigationhorizontal{% + .5\paperwidth}{}{\hskip0pt plus1filll}% + \end{beamercolorbox}% + \fi %\thepage>1 +} + +\else% Not compressed + +\setbeamertemplate{headline} +{% + \ifnum \thepage>1 + \leavevmode% + \@tempdimb=2.4375ex% + \ifnum\beamer@subsectionmax<\beamer@sectionmax% + \multiply\@tempdimb by\beamer@sectionmax% + \else% + \multiply\@tempdimb by\beamer@subsectionmax% + \fi% + \ifdim\@tempdimb>0pt% + \advance\@tempdimb by 1.125ex% + \begin{beamercolorbox}[wd=.5\paperwidth,ht=\@tempdimb]{% + section in head/foot}% + \vbox to\@tempdimb{\vfil\insertsectionnavigation{.5\paperwidth}\vfil}% + \end{beamercolorbox}% + \begin{beamercolorbox}[wd=.5\paperwidth,ht=\@tempdimb]{% + subsection in head/foot}% + \vbox to\@tempdimb{\vfil\insertsubsectionnavigation{.5\paperwidth}\vfil}% + \end{beamercolorbox}% + \fi% + \fi % \thepage>1 +} + +\fi % end if compressed +\fi % TACCheadernav + + +\ifTACCheadertree + +\setbeamertemplate{headline} +{ + \begin{beamercolorbox}[wd=\paperwidth,colsep=1.5pt]{upper separation line head} + \end{beamercolorbox} + % + % Place short title + % + \begin{beamercolorbox}[wd=\paperwidth,ht=2.5ex,dp=1.125ex,% + leftskip=.3cm,rightskip=.3cm plus1fil]{title in head/foot} + \usebeamerfont{title in head/foot}\insertshorttitle + \end{beamercolorbox} + + % + % Place section + % + \begin{beamercolorbox}[wd=\paperwidth,ht=2.5ex,dp=1.125ex,% + leftskip=.3cm,rightskip=.3cm plus1fil]{section in head/foot} + \usebeamerfont{section in head/foot}% + %\ifbeamer@tree@showhooks + \setbox\beamer@tempbox=\hbox{\insertsectionhead}% + \ifdim\wd\beamer@tempbox>1pt% + \hskip2pt\raise1.9pt\hbox{\vrule width0.4pt height1.875ex\vrule width 5pt height0.4pt}% + \hskip1pt% + \fi + \insertsectionhead + \end{beamercolorbox} + +% +% Place subsection +% +\begin{beamercolorbox}[wd=\paperwidth,ht=2.5ex,dp=1.125ex,% + leftskip=.3cm,rightskip=.3cm plus1fil]{subsection in head/foot} + \usebeamerfont{subsection in head/foot}% + %\ifbeamer@tree@showhooks + \setbox\beamer@tempbox=\hbox{\insertsubsectionhead}% + \ifdim\wd\beamer@tempbox>1pt% + \hskip9.4pt\raise1.9pt\hbox{\vrule width0.4pt height1.875ex\vrule width 5pt height0.4pt}% + \hskip1pt% + \fi + \insertsubsectionhead +\end{beamercolorbox} + +% +% Place final separation box +% + \begin{beamercolorbox}[wd=\paperwidth,colsep=1.5pt + ]{lower separation line head} + \end{beamercolorbox} + + % + % Another matching rule which helps to frame the content + % + \hspace{.025\textwidth}\rule{.95\textwidth}{.5pt} +} +\fi % TACCheadertree + + +% The following command suppresses all navigation symbols. This is +% necessary in the TACC theme, since it overlaps where we want the +% logo to be. +\setbeamertemplate{navigation symbols}{} + + +\mode + diff --git a/my_docs/22/lmod_zoom_mtg_2022_02_08/themes/beamerthemeTACC16-169.sty b/my_docs/22/lmod_zoom_mtg_2022_02_08/themes/beamerthemeTACC16-169.sty new file mode 100644 index 000000000..22caf9a05 --- /dev/null +++ b/my_docs/22/lmod_zoom_mtg_2022_02_08/themes/beamerthemeTACC16-169.sty @@ -0,0 +1,38 @@ +%% TACC theme for beamer + +\newif\ifTACCheadernav +\DeclareOption{headernav}{\global\TACCheadernavtrue} + +\newif\ifTACCheadertree +\DeclareOption{headertree}{\global\TACCheadertreetrue} +\ProcessOptions + +\mode + +\makeatletter + \def\beamer@calltheme#1#2#3{% + \def\beamer@themelist{#2} + \@for\beamer@themename:=\beamer@themelist\do + {\usepackage[{#1}]{\beamer@themelocation/#3\beamer@themename}}} + + \def\usefolder#1{ + \def\beamer@themelocation{#1} + } + \def\beamer@themelocation{} + +\usefolder{themes} +\usefonttheme{TACC16} +\useinnertheme{TACC16} +\useoutertheme{TACC16-169} +\usecolortheme{TACC16} + +\mode + + +\newcommand{\event}[1]{% + \makeatletter% + \def\TACC@eventname{#1}% + \makeatother} + +\newcommand{\sectionframe}[1]{\section{#1}\frame{\Large\textbf{#1}}} +\newcommand{\subsectionframe}[1]{\subsection{#1}\frame{\large\textbf{#1}}} diff --git a/my_docs/22/lmod_zoom_mtg_2022_02_08/themes/beamerthemeTACC16.sty b/my_docs/22/lmod_zoom_mtg_2022_02_08/themes/beamerthemeTACC16.sty new file mode 100644 index 000000000..750bdd388 --- /dev/null +++ b/my_docs/22/lmod_zoom_mtg_2022_02_08/themes/beamerthemeTACC16.sty @@ -0,0 +1,26 @@ +%% TACC theme for beamer + +\newif\ifTACCheadernav +\DeclareOption{headernav}{\global\TACCheadernavtrue} + +\newif\ifTACCheadertree +\DeclareOption{headertree}{\global\TACCheadertreetrue} +\ProcessOptions + +\mode + +\usefonttheme{TACC16} +\useinnertheme{TACC16} +\useoutertheme{TACC16} +\usecolortheme{TACC16} + +\mode + + +\newcommand{\event}[1]{% + \makeatletter% + \def\TACC@eventname{#1}% + \makeatother} + +\newcommand{\sectionframe}[1]{\section{#1}\frame{\Large\textbf{#1}}} +\newcommand{\subsectionframe}[1]{\subsection{#1}\frame{\large\textbf{#1}}} diff --git a/my_docs/22/lmod_zoom_mtg_2022_02_08/themes/example.pdf b/my_docs/22/lmod_zoom_mtg_2022_02_08/themes/example.pdf new file mode 100644 index 000000000..add373eee Binary files /dev/null and b/my_docs/22/lmod_zoom_mtg_2022_02_08/themes/example.pdf differ diff --git a/my_docs/22/lmod_zoom_mtg_2022_02_08/themes/license.tex b/my_docs/22/lmod_zoom_mtg_2022_02_08/themes/license.tex new file mode 100644 index 000000000..74ff86759 --- /dev/null +++ b/my_docs/22/lmod_zoom_mtg_2022_02_08/themes/license.tex @@ -0,0 +1,14 @@ + +\begin{frame}{License} +\footnotesize +\textcopyright The University of Texas at Austin, \the\year\\ +\vspace{0.5 cm} +This work is licensed under the Creative Commons Attribution Non-Commercial 3.0 Unported License. To view a copy of this license, +visit http://creativecommons.org/licenses/by-nc/3.0/\\ +\vspace{0.5 cm} +When attributing this work, please use the following text: +"Designing and Administering Large-scale Systems", Texas Advanced Computing Center, \the\year. Available under a Creative Commons Attribution Non-Commercial 3.0 Unported License. +\newline +\newline +\includegraphics[width=1cm]{./figures/cc.png} +\end{frame} \ No newline at end of file diff --git a/my_docs/22/lmod_zoom_mtg_2022_03_01/Lmod-4color@2x.png b/my_docs/22/lmod_zoom_mtg_2022_03_01/Lmod-4color@2x.png deleted file mode 120000 index 47d505dbf..000000000 --- a/my_docs/22/lmod_zoom_mtg_2022_03_01/Lmod-4color@2x.png +++ /dev/null @@ -1 +0,0 @@ -../../beamer/Lmod-4color@2x.png \ No newline at end of file diff --git a/my_docs/22/lmod_zoom_mtg_2022_03_01/Lmod-4color@2x.png b/my_docs/22/lmod_zoom_mtg_2022_03_01/Lmod-4color@2x.png new file mode 100644 index 000000000..4810d74c3 Binary files /dev/null and b/my_docs/22/lmod_zoom_mtg_2022_03_01/Lmod-4color@2x.png differ diff --git a/my_docs/22/lmod_zoom_mtg_2022_03_01/beamercolorthemeTACC.sty b/my_docs/22/lmod_zoom_mtg_2022_03_01/beamercolorthemeTACC.sty deleted file mode 120000 index 8d27e673a..000000000 --- a/my_docs/22/lmod_zoom_mtg_2022_03_01/beamercolorthemeTACC.sty +++ /dev/null @@ -1 +0,0 @@ -../../beamer/beamercolorthemeTACC.sty \ No newline at end of file diff --git a/my_docs/22/lmod_zoom_mtg_2022_03_01/beamercolorthemeTACC.sty b/my_docs/22/lmod_zoom_mtg_2022_03_01/beamercolorthemeTACC.sty new file mode 100755 index 000000000..78beb6a4a --- /dev/null +++ b/my_docs/22/lmod_zoom_mtg_2022_03_01/beamercolorthemeTACC.sty @@ -0,0 +1,323 @@ +% Copyright 2003 by Till Tantau . +% +% This program can be redistributed and/or modified under the terms +% of the GNU Public License, version 2. + +\mode + +% I downloaded a gimp color palette from +% http://maururu.net/2007/latex-beamer-color-palette/ +% Which provides rgb values (I think) for several of the +% default beamer themes. You can open this in gimp by +% opening the Palettes dialog, right-clicking anywhere and choosing +% 'Import Palette'. A color in there called 'default added blue' +% appeared to be approximately what I wanted. It had the triple +% of values 141 145 208. If you double-click on this in the +% palette editor it gives you a bunch of information. You can't +% use these values directly to set a color...it just comes out white. +% I think definecolor is expecting something normalized by 255. Yes! + + +% bluish colors +\definecolor{defaddedblue}{rgb}{0.5529,.5686,.8157} % 141,145,208 +\definecolor{defblockheader}{rgb}{.1921,.2235,.6824} % 49,57,174 +\definecolor{flyaddedblue}{rgb}{.5961,.6118,.8431} % 152,156,215 + +% bluish-greys +\definecolor{beetleaddedblue1}{rgb}{.3333,.4039,.6196} % 85 103 158, dark +\definecolor{beetleaddedblue2}{rgb}{.4510,.5098,.7020} % 115 130 179, medium +\definecolor{beetleaddedblue3}{rgb}{.7059,.7255,.7961} % 180 185 203, light (greyest) + +% very light blue-greys +\definecolor{deflightouter1}{rgb}{.7608,.7647,.9020} % 194 195 230, dark +\definecolor{deflightouter2}{rgb}{.8 ,.8039,.9176} % 204 205 234, medium +\definecolor{deflightouter3}{rgb}{.8392,.8431,.9373} % 214 215 239, light + +% reddish colors +\definecolor{flyalertblockheader}{rgb}{.7373,.1294,.1333} % 188 33 34 +\definecolor{flyaddedred}{rgb}{.8667,.5647,.5647}% 221 144 144 +\definecolor{beaverouterframe}{rgb}{.5529,.0980,.0980}% 141 25 25 + +% greens (green is used for 'examples' in beamer) +\definecolor{defexblock}{rgb}{.9098,.9333,.9020} % 232 238 230, light +\definecolor{defaddedgreen}{rgb}{.5412,.6510,.4706} % 138 166 120, medium +\definecolor{defexblockheader}{rgb}{.1686,.3647,.0392} % 43 93 10, dark + +\definecolor{lightexblock}{rgb}{.9137,.9451,.9020} % 233 241 230, light +\definecolor{lightexblockheader}{rgb}{.8235,.8980,.8} % 210 229 204, medium +\definecolor{lightexblockheadertext}{rgb}{.2431,.5098,.0745} % 62 130 19, dark + + +%%% +% Set the normal text color +%%% +\setbeamercolor{normal text}{fg=black,bg=white} + +%%% +% Set the alerted text color +%%% +% \setbeamercolor{alerted text}{fg=red} +\setbeamercolor{alerted text}{fg=red!50!black} % half black/half red for green bg +% \setbeamercolor{alerted text}{fg=beaverouterframe} +% \setbeamercolor{alerted text}{fg=defblockheader} % doesn't stand out enough + + +% Set the 'example' text +\setbeamercolor{example text}{fg=green!50!black} + +\setbeamercolor{structure}{fg=black} + +\setbeamercolor{background canvas}{parent=normal text} +\setbeamercolor{background}{parent=background canvas} + +\setbeamercolor{palette primary}{use=structure,fg=structure.fg} +\setbeamercolor{palette secondary}{use=structure,fg=structure.fg!75!black} +\setbeamercolor{palette tertiary}{use=structure,fg=structure.fg!50!black} +\setbeamercolor{palette quaternary}{fg=black} + +\setbeamercolor{palette sidebar primary}{use=normal text,fg=normal text.fg} +\setbeamercolor{palette sidebar secondary}{use=structure,fg=structure.fg} +\setbeamercolor{palette sidebar tertiary}{use=normal text,fg=normal text.fg} +\setbeamercolor{palette sidebar quaternary}{use=structure,fg=structure.fg} + +\setbeamercolor{math text}{} +\setbeamercolor{math text inlined}{parent=math text} +\setbeamercolor{math text displayed}{parent=math text} + +\setbeamercolor{normal text in math text}{} + +\setbeamercolor{local structure}{parent=structure} + +\setbeamercolor{titlelike}{parent=structure} + +\setbeamercolor{title}{parent=titlelike} +\setbeamercolor{title in head/foot}{parent=palette quaternary} +\setbeamercolor{title in sidebar}{parent=palette sidebar quaternary} + +\setbeamercolor{subtitle}{parent=title} + +\setbeamercolor{author}{} +\setbeamercolor{author in head/foot}{parent=palette primary} +\setbeamercolor{author in sidebar}{use=palette sidebar tertiary,fg=palette sidebar tertiary.fg} + +\setbeamercolor{institute}{} +\setbeamercolor{institute in head/foot}{parent=palette tertiary} +\setbeamercolor{institute in sidebar}{use=palette sidebar tertiary,fg=palette sidebar tertiary.fg} + +\setbeamercolor{date}{} +\setbeamercolor{date in head/foot}{parent=palette secondary} +\setbeamercolor{date in sidebar}{use=palette sidebar tertiary,fg=palette sidebar tertiary.fg} + +\setbeamercolor{titlegraphic}{} + +\setbeamercolor{part name}{} +\setbeamercolor{part title}{parent=titlelike} + +\setbeamercolor{section in toc}{parent=structure} +\setbeamercolor{section in toc shaded}{parent=section in toc} +\setbeamercolor{section in head/foot}{parent=palette tertiary} +\setbeamercolor{section in sidebar}{parent=palette sidebar secondary} +\setbeamercolor{section in sidebar shaded}{use=section in sidebar,fg=section in sidebar.fg!40!bg} +\setbeamercolor{section number projected}{parent=item projected} + +\setbeamercolor{subsection in toc}{} +\setbeamercolor{subsection in toc shaded}{parent=subsection in toc} +\setbeamercolor{subsection in head/foot}{parent=palette secondary} +\setbeamercolor{subsection in sidebar}{parent=palette sidebar primary} +\setbeamercolor{subsection in sidebar shaded}{use=subsection in sidebar,fg=subsection in sidebar.fg!40!bg} +\setbeamercolor{subsection number projected}{parent={subitem projected}} + +\setbeamercolor{subsubsection in toc}{parent=subsection in toc} +\setbeamercolor{subsubsection in toc shaded}{parent=subsubsection in toc} +\setbeamercolor{subsubsection in head/foot}{parent=subsection in head/foot} +\setbeamercolor{subsubsection in sidebar}{parent=subsection in sidebar} +\setbeamercolor{subsubsection in sidebar shaded}{parent=subsection in sidebar shaded} +\setbeamercolor{subsubsection number projected}{parent=subsubitem projected} + +\setbeamercolor{headline}{} +\setbeamercolor{footline}{} + +\setbeamercolor{sidebar}{} +\setbeamercolor{sidebar left}{parent=sidebar} +\setbeamercolor{sidebar right}{parent=sidebar} + +\setbeamercolor{logo}{parent=palette secondary} + +\setbeamercolor{frametitle}{parent=titlelike} +\setbeamercolor{framesubtitle}{parent=frametitle} + +\setbeamercolor{frametitle right}{parent=frametitle} + +\setbeamercolor{caption}{} +\setbeamercolor{caption name}{parent=structure} + +\setbeamercolor{button}{use=local structure,bg=local structure.fg!50!bg,fg=white} +\setbeamercolor{button border}{use=button,fg=button.bg} +\setbeamercolor{navigation symbols}{use=structure,fg=structure.fg!40!bg} +\setbeamercolor{navigation symbols dimmed}{use=structure,fg=structure.fg!20!bg} +\setbeamercolor{mini frame}{parent=section in head/foot} + +% Color expressions are defined in the xcolor package +% +% Ex: Mixture of 40% green, 60% yellow: green!40!yellow +% +% The complement of any color can be obtained by prepending +% a minus sign: -green!40!yellow +% +% One can also combine up to three colors (in differing proportions) +% using the rgb command. For example, the following command combines +% 3 parts of the first color, with 2 parts of the second, and one part +% "red" +% +%\color{rgb:-green!40!yellow,3;green!40!yellow,2;red,1} +% Unfortunately, I don't think this works as an argument to setbeamercolor... +% "Orange" bg=green!30!yellow!30!red +% close to burnt orange: red!75!green +% lightgray is a color, but gray!25!white looks better +% +% A nice pair of greens +% (dark, a little too dark to be under black text...) -red!75!green!50!blue!25 +% (light) -red!75!green!50!blue!25!gray +% +% Some colors are only available via options to the xcolor package, eg. +% x11names,DarkOliveGreen4 +% svgnames, Chartreuse +% dvipsnames, ForestGreen +% +% but beamer does not seem to have any of these. +% +% The base color names which are always available are: +% black +% blue +% brown +% cyan +% darkgray +% gray +% green +% lightgray +% lime +% magenta +% olive +% orange +% pink +% purple +% red +% teal +% violet +% white +% yellow + +% From the beamer user guide, pg. 167 +% Inner color themes only specify the colors of elements used in inner +% themes. Most noticably, they specify the colors used for blocks. +% ... + +% Example color definition +% beamercolorthemedefault.sty:\definecolor{beamer@blendedblue}{rgb}{0.2,0.2,0.7} +% beamercolorthemedefault.sty:\setbeamercolor{structure}{fg=beamer@blendedblue} + +% The greens +% \setbeamercolor{block body}{bg=-red!75!green!50!blue!25!gray} +% \setbeamercolor{block title}{parent=structure,bg=-red!75!green!50!blue!25,fg=-red!75!green!50!blue!25!gray} + +%%% +% Set the block body and title background/foreground colors +%%% +% \setbeamercolor{block body}{bg=flyaddedblue} +% \setbeamercolor{block title}{bg=defblockheader,fg=flyaddedblue} + +% Purplish blues, too dark overall +% \setbeamercolor{block body}{bg=beetleaddedblue3} +% \setbeamercolor{block title}{bg=beetleaddedblue2,fg=beetleaddedblue3} + +% Very light blue greys +% 1. Not enough contrast +% \setbeamercolor{block body}{bg=deflightouter3} +% \setbeamercolor{block title}{bg=deflightouter2,fg=deflightouter3} + +% 2. Not enough contrast +% \setbeamercolor{block body}{bg=deflightouter3} +% \setbeamercolor{block title}{bg=deflightouter1,fg=deflightouter3} + +% 3. Combination of deflightouter and fly. The block bg is +% lighter than the all-beetle color scheme I previously thought was best. +% Currently I like this one the best +\setbeamercolor{block body}{bg=deflightouter3} +\setbeamercolor{block title}{bg=beetleaddedblue2,fg=deflightouter3} + +% 4. Greens. Looks like a highlighter. I don't really trust greens +% on projectors... It's almost too bright/hurts your eyes. +% \setbeamercolor{block body}{bg=defexblock} +% \setbeamercolor{block title}{bg=defaddedgreen,fg=defexblock} + +% This looks pretty good ... it's similar to the greens we had before +% but should be lighter. The blocks are just a little too "mint" colored +% though... +% \setbeamercolor{block body}{bg=defexblock} +% \setbeamercolor{block title}{bg=defexblockheader,fg=defexblock} + +% Pea Soup! +%\setbeamercolor{block body}{bg=defaddedgreen} +%\setbeamercolor{block title}{bg=defexblockheader,fg=defaddedgreen} + + +% Changing these didn't seem to do anything...I had to change the +% 'alerted text' color instead +\setbeamercolor{block body alerted}{} +\setbeamercolor{block body example}{} +\setbeamercolor{block title alerted}{parent=alerted text} +\setbeamercolor{block title example}{parent=example text} + +\setbeamercolor{item}{parent=local structure} +\setbeamercolor{subitem}{parent=item} +\setbeamercolor{subsubitem}{parent=subitem} + +\setbeamercolor{item projected}{parent=item,use=item,fg=white,bg=item.fg} +\setbeamercolor{subitem projected}{parent=item projected} +\setbeamercolor{subsubitem projected}{parent=subitem projected} + +\setbeamercolor{enumerate item}{parent=item} +\setbeamercolor{enumerate subitem}{parent=subitem} +\setbeamercolor{enumerate subsubitem}{parent=subsubitem} + +\setbeamercolor{itemize item}{parent=item} +\setbeamercolor{itemize subitem}{parent=subitem} +\setbeamercolor{itemize subsubitem}{parent=subsubitem} + +\setbeamercolor{itemize/enumerate body}{} +\setbeamercolor{itemize/enumerate subbody}{} +\setbeamercolor{itemize/enumerate subsubbody}{} + +\setbeamercolor{description item}{parent=item} + +\setbeamercolor{bibliography item}{parent=item} + +\setbeamercolor{bibliography entry author}{use=structure,fg=structure.fg} +\setbeamercolor{bibliography entry title}{use=normal text,fg=normal text.fg} +\setbeamercolor{bibliography entry location}{use=structure,fg=structure.fg!65!bg} +\setbeamercolor{bibliography entry note}{use=structure,fg=structure.fg!65!bg} + +\setbeamercolor{separation line}{} + +\setbeamercolor{upper separation line head}{parent=separation line} +\setbeamercolor{middle separation line head}{parent=separation line} +\setbeamercolor{lower separation line head}{parent=separation line} + +\setbeamercolor{upper separation line foot}{parent=separation line} +\setbeamercolor{middle separation line foot}{parent=separation line} +\setbeamercolor{lower separation line foot}{parent=separation line} + +\setbeamercolor{abstract}{} +\setbeamercolor{abstract title}{parent=structure} + +\setbeamercolor{verse}{} + +\setbeamercolor{quotation}{} +\setbeamercolor{quote}{parent=quotation} + +\setbeamercolor{page number in head/foot}{fg=fg!50!bg} + +\setbeamercolor{qed symbol}{parent=structure} + +\mode + diff --git a/my_docs/22/lmod_zoom_mtg_2022_03_01/beamercolorthemeTACC16.sty b/my_docs/22/lmod_zoom_mtg_2022_03_01/beamercolorthemeTACC16.sty deleted file mode 120000 index 58415801b..000000000 --- a/my_docs/22/lmod_zoom_mtg_2022_03_01/beamercolorthemeTACC16.sty +++ /dev/null @@ -1 +0,0 @@ -../../beamer/beamercolorthemeTACC16.sty \ No newline at end of file diff --git a/my_docs/22/lmod_zoom_mtg_2022_03_01/beamercolorthemeTACC16.sty b/my_docs/22/lmod_zoom_mtg_2022_03_01/beamercolorthemeTACC16.sty new file mode 100755 index 000000000..779dde91f --- /dev/null +++ b/my_docs/22/lmod_zoom_mtg_2022_03_01/beamercolorthemeTACC16.sty @@ -0,0 +1,192 @@ +% Copyright 2003 by Till Tantau . +% +% This program can be redistributed and/or modified under the terms +% of the GNU Public License, version 2. + +\mode + +\usepackage{textcase,regexpatch} + +\setbeamertemplate{blocks}[rounded][shadow=true] + + +\definecolor{TACCred}{RGB}{180,13,29} +\definecolor{TACCorange}{RGB}{210,104,43} +\definecolor{TACCblue}{RGB}{108, 134, 191} +\definecolor{TACCgreen}{RGB}{23,106,70} + +% I downloaded a gimp color palette from +% http://maururu.net/2007/latex-beamer-color-palette/ +% Which provides rgb values (I think) for several of the +% default beamer themes. You can open this in gimp by +% opening the Palettes dialog, right-clicking anywhere and choosing +% 'Import Palette'. A color in there called 'default added blue' +% appeared to be approximately what I wanted. It had the triple +% of values 141 145 208. If you double-click on this in the +% palette editor it gives you a bunch of information. You can't +% use these values directly to set a color...it just comes out white. +% I think definecolor is expecting something normalized by 255. Yes! + + +%%% +% Set the normal text color +%%% +\setbeamercolor{normal text}{fg=black} %,bg=white} +\setbeamercolor{example text}{fg=TACCgreen} +\setbeamercolor{alerted text}{fg=TACCorange} + + +\setbeamercolor{structure}{fg=black} +%\setbeamercolor{structure}{fg=black} + +\setbeamercolor{background canvas}{parent=normal text} +\setbeamercolor{background}{parent=background canvas} + +\setbeamercolor{palette primary}{use=structure,fg=structure.fg} +\setbeamercolor{palette secondary}{use=structure,fg=structure.fg!75!black} +\setbeamercolor{palette tertiary}{use=structure,fg=structure.fg!50!black} +\setbeamercolor{palette quaternary}{fg=black} + +\setbeamercolor{palette sidebar primary}{use=normal text,fg=normal text.fg} +\setbeamercolor{palette sidebar secondary}{use=structure,fg=structure.fg} +\setbeamercolor{palette sidebar tertiary}{use=normal text,fg=normal text.fg} +\setbeamercolor{palette sidebar quaternary}{use=structure,fg=structure.fg} + +\setbeamercolor{math text}{} +\setbeamercolor{math text inlined}{parent=math text} +\setbeamercolor{math text displayed}{parent=math text} + +\setbeamercolor{normal text in math text}{} + +\setbeamercolor{local structure}{parent=structure} + +\setbeamercolor{titlelike}{parent=structure} + +\setbeamercolor{title}{parent=titlelike} +\setbeamercolor{title in head/foot}{parent=palette quaternary} +\setbeamercolor{title in sidebar}{parent=palette sidebar quaternary} + +\setbeamercolor{subtitle}{parent=title} + +\setbeamercolor{author}{} +\setbeamercolor{author in head/foot}{parent=palette primary} +\setbeamercolor{author in sidebar}{use=palette sidebar tertiary,fg=palette sidebar tertiary.fg} + +\setbeamercolor{institute}{} +\setbeamercolor{institute in head/foot}{parent=palette tertiary} +\setbeamercolor{institute in sidebar}{use=palette sidebar tertiary,fg=palette sidebar tertiary.fg} + +\setbeamercolor{date}{} +\setbeamercolor{date in head/foot}{parent=palette secondary} +\setbeamercolor{date in sidebar}{use=palette sidebar tertiary,fg=palette sidebar tertiary.fg} + +\setbeamercolor{titlegraphic}{} + +\setbeamercolor{part name}{} +\setbeamercolor{part title}{parent=titlelike} + +\setbeamercolor{section in toc}{parent=structure} +\setbeamercolor{section in toc shaded}{parent=section in toc} +\setbeamercolor{section in head/foot}{parent=palette tertiary} +\setbeamercolor{section in sidebar}{parent=palette sidebar secondary} +\setbeamercolor{section in sidebar shaded}{use=section in sidebar,fg=section in sidebar.fg!40!bg} +\setbeamercolor{section number projected}{parent=item projected} + +\setbeamercolor{subsection in toc}{} +\setbeamercolor{subsection in toc shaded}{parent=subsection in toc} +\setbeamercolor{subsection in head/foot}{parent=palette secondary} +\setbeamercolor{subsection in sidebar}{parent=palette sidebar primary} +\setbeamercolor{subsection in sidebar shaded}{use=subsection in sidebar,fg=subsection in sidebar.fg!40!bg} +\setbeamercolor{subsection number projected}{parent={subitem projected}} + +\setbeamercolor{subsubsection in toc}{parent=subsection in toc} +\setbeamercolor{subsubsection in toc shaded}{parent=subsubsection in toc} +\setbeamercolor{subsubsection in head/foot}{parent=subsection in head/foot} +\setbeamercolor{subsubsection in sidebar}{parent=subsection in sidebar} +\setbeamercolor{subsubsection in sidebar shaded}{parent=subsection in sidebar shaded} +\setbeamercolor{subsubsection number projected}{parent=subsubitem projected} + +\setbeamercolor{headline}{} +\setbeamercolor{footline}{} + +\setbeamercolor{sidebar}{} +\setbeamercolor{sidebar left}{parent=sidebar} +\setbeamercolor{sidebar right}{parent=sidebar} + +\setbeamercolor{logo}{parent=palette secondary} + +\setbeamercolor{frametitle}{parent=titlelike} +\setbeamercolor{framesubtitle}{parent=frametitle} + +\setbeamercolor{frametitle right}{parent=frametitle} + +\setbeamercolor{caption}{} +\setbeamercolor{caption name}{parent=structure} + +\setbeamercolor{button}{use=local structure,bg=local structure.fg!50!bg,fg=white} +\setbeamercolor{button border}{use=button,fg=button.bg} +\setbeamercolor{navigation symbols}{use=structure,fg=structure.fg!40!bg} +\setbeamercolor{navigation symbols dimmed}{use=structure,fg=structure.fg!20!bg} +\setbeamercolor{mini frame}{parent=section in head/foot} + +\setbeamercolor{block body}{fg=black} +\setbeamercolor{block body alerted}{fg=black} +\setbeamercolor{block body example}{fg=black} + +\setbeamercolor{block title}{bg=TACCblue,fg=white} +\setbeamercolor{block title alerted}{bg=TACCred,fg=white} +\setbeamercolor{block title example}{bg=TACCgreen,fg=white} + +\setbeamercolor{item}{parent=local structure} +\setbeamercolor{subitem}{parent=item} +\setbeamercolor{subsubitem}{parent=subitem} + +\setbeamercolor{item projected}{parent=item,use=item,fg=black,bg=item.fg} +\setbeamercolor{subitem projected}{parent=item projected} +\setbeamercolor{subsubitem projected}{parent=subitem projected} + +\setbeamercolor{enumerate item}{parent=item} +\setbeamercolor{enumerate subitem}{parent=subitem} +\setbeamercolor{enumerate subsubitem}{parent=subsubitem} + +\setbeamercolor{itemize item}{parent=item} +\setbeamercolor{itemize subitem}{parent=subitem} +\setbeamercolor{itemize subsubitem}{parent=subsubitem} + +\setbeamercolor{itemize/enumerate body}{} +\setbeamercolor{itemize/enumerate subbody}{} +\setbeamercolor{itemize/enumerate subsubbody}{} + +\setbeamercolor{description item}{parent=item} + +\setbeamercolor{bibliography item}{parent=item} + +\setbeamercolor{bibliography entry author}{use=structure,fg=structure.fg} +\setbeamercolor{bibliography entry title}{use=normal text,fg=normal text.fg} +\setbeamercolor{bibliography entry location}{use=structure,fg=structure.fg!65!bg} +\setbeamercolor{bibliography entry note}{use=structure,fg=structure.fg!65!bg} + +\setbeamercolor{separation line}{} + +\setbeamercolor{upper separation line head}{parent=separation line} +\setbeamercolor{middle separation line head}{parent=separation line} +\setbeamercolor{lower separation line head}{parent=separation line} + +\setbeamercolor{upper separation line foot}{parent=separation line} +\setbeamercolor{middle separation line foot}{parent=separation line} +\setbeamercolor{lower separation line foot}{parent=separation line} + +\setbeamercolor{abstract}{} +\setbeamercolor{abstract title}{parent=structure} + +\setbeamercolor{verse}{} + +\setbeamercolor{quotation}{} +\setbeamercolor{quote}{parent=quotation} + +\setbeamercolor{page number in head/foot}{fg=fg!50!bg} + +\setbeamercolor{qed symbol}{parent=structure} + +\mode + diff --git a/my_docs/22/lmod_zoom_mtg_2022_03_01/beamerfontthemeTACC.sty b/my_docs/22/lmod_zoom_mtg_2022_03_01/beamerfontthemeTACC.sty deleted file mode 120000 index 78e971fb8..000000000 --- a/my_docs/22/lmod_zoom_mtg_2022_03_01/beamerfontthemeTACC.sty +++ /dev/null @@ -1 +0,0 @@ -../../beamer/beamerfontthemeTACC.sty \ No newline at end of file diff --git a/my_docs/22/lmod_zoom_mtg_2022_03_01/beamerfontthemeTACC.sty b/my_docs/22/lmod_zoom_mtg_2022_03_01/beamerfontthemeTACC.sty new file mode 100755 index 000000000..ef9ce1e5e --- /dev/null +++ b/my_docs/22/lmod_zoom_mtg_2022_03_01/beamerfontthemeTACC.sty @@ -0,0 +1,12 @@ +% Copyright 2003 by Till Tantau +% +% This program can be redistributed and/or modified under the terms +% of the GNU Public License, version 2. + +\mode + +\setbeamerfont{frametitle}{parent=structure,size=\LARGE,series=\bfseries} +\setbeamerfont{framesubtitle}{parent=frametitle,size=\small} + +\mode + \ No newline at end of file diff --git a/my_docs/22/lmod_zoom_mtg_2022_03_01/beamerfontthemeTACC16.sty b/my_docs/22/lmod_zoom_mtg_2022_03_01/beamerfontthemeTACC16.sty deleted file mode 120000 index a1f2fa5f9..000000000 --- a/my_docs/22/lmod_zoom_mtg_2022_03_01/beamerfontthemeTACC16.sty +++ /dev/null @@ -1 +0,0 @@ -../../beamer/beamerfontthemeTACC16.sty \ No newline at end of file diff --git a/my_docs/22/lmod_zoom_mtg_2022_03_01/beamerfontthemeTACC16.sty b/my_docs/22/lmod_zoom_mtg_2022_03_01/beamerfontthemeTACC16.sty new file mode 100755 index 000000000..b65271835 --- /dev/null +++ b/my_docs/22/lmod_zoom_mtg_2022_03_01/beamerfontthemeTACC16.sty @@ -0,0 +1,21 @@ +% Copyright 2003 by Till Tantau +% +% This program can be redistributed and/or modified under the terms +% of the GNU Public License, version 2. + +\mode +\setbeamerfont{title}{parent=structure,size=\LARGE,series=\bfseries} +\setbeamerfont{author}{parent=structure,size=\large, series=\normalfont} +\setbeamerfont{frametitle}{parent=structure,size=\LARGE,series=\bfseries} +\setbeamerfont{framesubtitle}{parent=frametitle,size=\small} + +%\usefonttheme{professionalfonts} % using non standard fonts for beamer +%\usefonttheme{serif} % default family is serif +%\usepackage{fontspec} +%\setmainfont{Century Gothic} + +\usepackage{fontspec} +\usepackage{libertine} + +\mode + diff --git a/my_docs/22/lmod_zoom_mtg_2022_03_01/beamerinnerthemeTACC.sty b/my_docs/22/lmod_zoom_mtg_2022_03_01/beamerinnerthemeTACC.sty deleted file mode 120000 index 8d5ae3921..000000000 --- a/my_docs/22/lmod_zoom_mtg_2022_03_01/beamerinnerthemeTACC.sty +++ /dev/null @@ -1 +0,0 @@ -../../beamer/beamerinnerthemeTACC.sty \ No newline at end of file diff --git a/my_docs/22/lmod_zoom_mtg_2022_03_01/beamerinnerthemeTACC.sty b/my_docs/22/lmod_zoom_mtg_2022_03_01/beamerinnerthemeTACC.sty new file mode 100755 index 000000000..29e2bce81 --- /dev/null +++ b/my_docs/22/lmod_zoom_mtg_2022_03_01/beamerinnerthemeTACC.sty @@ -0,0 +1,11 @@ +\mode + +\setbeamertemplate{itemize item}[circle] +\setbeamertemplate{itemize subitem}{{}--{}} +\setbeamertemplate{itemize subsubitem}[circle] +\setbeamertemplate{section in toc}{$\bullet$\hskip.5em\inserttocsection} +%\setbeamertemplate{subsection in toc}{} +\setbeamertemplate{subsubsection in toc}{} + +\mode + diff --git a/my_docs/22/lmod_zoom_mtg_2022_03_01/beamerinnerthemeTACC16.sty b/my_docs/22/lmod_zoom_mtg_2022_03_01/beamerinnerthemeTACC16.sty deleted file mode 120000 index 5955acc99..000000000 --- a/my_docs/22/lmod_zoom_mtg_2022_03_01/beamerinnerthemeTACC16.sty +++ /dev/null @@ -1 +0,0 @@ -../../beamer/beamerinnerthemeTACC16.sty \ No newline at end of file diff --git a/my_docs/22/lmod_zoom_mtg_2022_03_01/beamerinnerthemeTACC16.sty b/my_docs/22/lmod_zoom_mtg_2022_03_01/beamerinnerthemeTACC16.sty new file mode 100755 index 000000000..f7f454e1d --- /dev/null +++ b/my_docs/22/lmod_zoom_mtg_2022_03_01/beamerinnerthemeTACC16.sty @@ -0,0 +1,11 @@ +\mode + +\setbeamertemplate{itemize item}[triangle] +\setbeamertemplate{itemize subitem}[triangle] +\setbeamertemplate{itemize subsubitem}[triangle] +\setbeamertemplate{section in toc}{$\bullet$\hskip.5em\inserttocsection} +%\setbeamertemplate{subsection in toc}{} +\setbeamertemplate{subsubsection in toc}{} + +\mode + diff --git a/my_docs/22/lmod_zoom_mtg_2022_03_01/beamerouterthemeTACC.sty b/my_docs/22/lmod_zoom_mtg_2022_03_01/beamerouterthemeTACC.sty deleted file mode 120000 index da0a45d33..000000000 --- a/my_docs/22/lmod_zoom_mtg_2022_03_01/beamerouterthemeTACC.sty +++ /dev/null @@ -1 +0,0 @@ -../../beamer/beamerouterthemeTACC.sty \ No newline at end of file diff --git a/my_docs/22/lmod_zoom_mtg_2022_03_01/beamerouterthemeTACC.sty b/my_docs/22/lmod_zoom_mtg_2022_03_01/beamerouterthemeTACC.sty new file mode 100755 index 000000000..038580303 --- /dev/null +++ b/my_docs/22/lmod_zoom_mtg_2022_03_01/beamerouterthemeTACC.sty @@ -0,0 +1,196 @@ +% Copyright 2003 by Till Tantau +% +% This program can be redistributed and/or modified under the terms +% of the GNU Public License, version 2. + +\mode + +\setbeamertemplate{frametitle}[default][center] +\addtobeamertemplate{frametitle}{\vskip 4ex minus 4ex}{} + +% Here we define what appears at the bottom of each slide: the "footline". +\setbeamertemplate{footline}{% + \leavevmode% + + % Horizontal line dividing the rest of the slide from the footer? + % hrule goes all the way across... + % \hrule height.3pt% + % With \rule, you can specify the thickness + % \rule[raise-height]{width}{thickness} + \hspace{.025\textwidth}\rule{.95\textwidth}{.5pt} + + \hbox{% + % On the left half of the footer, insert the TACC logo + \begin{minipage}{.5\textwidth}% + \hskip .033\textwidth%Give horizontal space else this will set on the left edge of the slide! + % TACC logo with custom viewport! + \includegraphics[viewport=1 -1 135 35, clip=true, width=.4\textwidth]{figures/TACC_logo} + \end{minipage} + % + \begin{minipage}{.5\textwidth}% + \vskip .023\textheight% + \raggedleft% + \setlength{\rightskip}{.033\textwidth} + % + % If we are not on the first page, insert a page number + % For some reason, insertframenumber is buggy when you have fragile + % slides with verbatim environments in them... it tends to skip numbers + % for some reason! On the other hand, the pagenumber is incremented + % for *every* slide, including transition slides... + \ifnum \thepage>1 + % \insertshorttitle + \insertframenumber + % \insertframenumber/\inserttotalframenumber + % \insertpagenumber + \else % Do a phantom of whatever you do on other pages, so spacing matches + %$\phantom{\insertshorttitle}$ + $\phantom{\insertframenumber}$ + %$\phantom{\insertframenumber/\inserttotalframenumber}$ + %$\phantom{\insertpagenumber}$ + \fi + \hfill\includegraphics[width=.5\textwidth]{figures/UT_logo}% + \end{minipage}% + }% + \vskip .023\textheight% +} + + + + +\ifTACCheadernav + +\usesectionheadtemplate +{\hfill\insertsectionhead} +{\hfill\color{fg!50!bg}\insertsectionhead} + +% Head +\ifbeamer@compress + +% Here we define how the top of the frame looks, the "headline". +\setbeamertemplate{headline} +{% + \ifnum \thepage>1 + \leavevmode% + \begin{beamercolorbox}[wd=.5\paperwidth,ht=2.5ex,dp=1.125ex]{% + section in head/foot}% + \insertsectionnavigationhorizontal{.5\paperwidth}{\hskip0pt plus1filll}{}% + \end{beamercolorbox}% + \begin{beamercolorbox}[wd=.5\paperwidth,ht=2.5ex,dp=1.125ex]{% + subsection in head/foot}% + \insertsubsectionnavigationhorizontal{% + .5\paperwidth}{}{\hskip0pt plus1filll}% + \end{beamercolorbox}% + \fi %\thepage>1 +} + +\else% Not compressed + +\setbeamertemplate{headline} +{% + \ifnum \thepage>1 + \leavevmode% + \@tempdimb=2.4375ex% + \ifnum\beamer@subsectionmax<\beamer@sectionmax% + \multiply\@tempdimb by\beamer@sectionmax% + \else% + \multiply\@tempdimb by\beamer@subsectionmax% + \fi% + \ifdim\@tempdimb>0pt% + \advance\@tempdimb by 1.125ex% + \begin{beamercolorbox}[wd=.5\paperwidth,ht=\@tempdimb]{% + section in head/foot}% + \vbox to\@tempdimb{\vfil\insertsectionnavigation{.5\paperwidth}\vfil}% + \end{beamercolorbox}% + \begin{beamercolorbox}[wd=.5\paperwidth,ht=\@tempdimb]{% + subsection in head/foot}% + \vbox to\@tempdimb{\vfil\insertsubsectionnavigation{.5\paperwidth}\vfil}% + \end{beamercolorbox}% + \fi% + \fi % \thepage>1 +} + +\fi % end if compressed +\fi % TACCheadernav + + +\ifTACCheadertree + +\setbeamertemplate{headline} +{ + \begin{beamercolorbox}[wd=\paperwidth,colsep=1.5pt + ]{upper separation line head} + \end{beamercolorbox} + % + % Place short title + % + \begin{beamercolorbox}[wd=\paperwidth,ht=2.5ex,dp=1.125ex,% + leftskip=.3cm,rightskip=.3cm plus1fil]{title in head/foot} + \usebeamerfont{title in head/foot}\insertshorttitle + \end{beamercolorbox} + + % + % Place section + % + \begin{beamercolorbox}[wd=\paperwidth,ht=2.5ex,dp=1.125ex,% + leftskip=.3cm,rightskip=.3cm plus1fil]{section in head/foot} + \usebeamerfont{section in head/foot}% + %\ifbeamer@tree@showhooks + \setbox\beamer@tempbox=\hbox{\insertsectionhead}% + \ifdim\wd\beamer@tempbox>1pt% + \hskip2pt\raise1.9pt\hbox{\vrule width0.4pt height1.875ex\vrule width 5pt height0.4pt}% + \hskip1pt% + \fi% \ifdim + %\else% + %\hskip6pt% + %\fi% \ifbeamer + \insertsectionhead + \end{beamercolorbox} + +% +% Place subsection +% +\begin{beamercolorbox}[wd=\paperwidth,ht=2.5ex,dp=1.125ex,% + leftskip=.3cm,rightskip=.3cm plus1fil]{subsection in head/foot} + \usebeamerfont{subsection in head/foot}% + %\ifbeamer@tree@showhooks + \setbox\beamer@tempbox=\hbox{\insertsubsectionhead}% + \ifdim\wd\beamer@tempbox>1pt% + \hskip9.4pt\raise1.9pt\hbox{\vrule width0.4pt height1.875ex\vrule width 5pt height0.4pt}% + \hskip1pt% + \fi% \ifdim + %\else% + %\hskip12pt% + %\fi% \ifbeamer + \insertsubsectionhead +\end{beamercolorbox} + +% +% Place final separation box +% + \begin{beamercolorbox}[wd=\paperwidth,colsep=1.5pt + ]{lower separation line head} + \end{beamercolorbox} + + % + % Another matching rule which helps to frame the content + % + \hspace{.025\textwidth}\rule{.95\textwidth}{.5pt} +} +\fi % TACCheadertree + + +% The following command suppresses all navigation symbols. This is +% necessary in the TACC theme, since it overlaps where we want the +% logo to be. +\setbeamertemplate{navigation symbols}{} + +% Align the navigation symbols vertically (still overlaps our logo!) +%\setbeamertemplate{navigation symbols}[vertical]{} + +% Only places the slide-forward and slide-back symbol, but yes, +% this still overlaps our logo! +%\setbeamertemplate{navigation symbols}[only frame symbol]{} + + +\mode + diff --git a/my_docs/22/lmod_zoom_mtg_2022_03_01/beamerouterthemeTACC16.sty b/my_docs/22/lmod_zoom_mtg_2022_03_01/beamerouterthemeTACC16.sty deleted file mode 120000 index 54bd09537..000000000 --- a/my_docs/22/lmod_zoom_mtg_2022_03_01/beamerouterthemeTACC16.sty +++ /dev/null @@ -1 +0,0 @@ -../../beamer/beamerouterthemeTACC16.sty \ No newline at end of file diff --git a/my_docs/22/lmod_zoom_mtg_2022_03_01/beamerouterthemeTACC16.sty b/my_docs/22/lmod_zoom_mtg_2022_03_01/beamerouterthemeTACC16.sty new file mode 100755 index 000000000..d5e6388c7 --- /dev/null +++ b/my_docs/22/lmod_zoom_mtg_2022_03_01/beamerouterthemeTACC16.sty @@ -0,0 +1,312 @@ +% Antonio Gomez (agomez@tacc.utexas.edu) +% 4-20-17. Added option to put the footer on the right side + + + +\mode + +\usepackage{xcolor} +\usepackage{graphicx} +\usepackage{etoolbox} + + + +% This theme accepts the "rightfooter" option +% When used, it will put the TACC logo at the bottom of the slide on the right side +% By default, it goes to the left + +\xifaspectratio{ + {169} { + \pgfdeclareimage[width=\paperwidth]{titlebackground}{./figures/master169.jpg} + \if@rightfooterOption + \pgfdeclareimage[width=\paperwidth]{background}{./figures/secondary_right169.jpg} +\else + \pgfdeclareimage[width=\paperwidth]{background}{./figures/secondary169.jpg} +\fi +} +}[ +\pgfdeclareimage[width=\paperwidth]{titlebackground}{./figures/master.jpg} + \if@rightfooterOption + \pgfdeclareimage[width=\paperwidth]{background}{./figures/secondary_right.jpg} +\else + \pgfdeclareimage[width=\paperwidth]{background}{./figures/secondary.jpg} +\fi +] + +\setbeamertemplate{background canvas}{% +\xifaspectratio{ + {169} { + \ifnum\c@framenumber=1 % + \begin{picture}(0,0) + \put(-3,-256){% + \pgfuseimage{titlebackground} + } + \end{picture} + \else% + \begin{picture}(0,0) + \put(-3,-260){% + \pgfuseimage{background} + } + \end{picture} + \fi + } + {43} { + \ifnum\c@framenumber=1 % + \begin{picture}(0,0) + \put(-4,-274){% + \pgfuseimage{titlebackground} + } + \end{picture} + \else% + \begin{picture}(0,0) + \put(-4,-274){% + \pgfuseimage{background} + } + \end{picture} + \fi + } +} +} + + + +%\setbeamertemplate{background canvas}{% +% % On title page +% \ifnum\c@framenumber=1 % +% \begin{picture}(0,0) +% \put(0,-253){% +% \pgfuseimage{titlebackground} +% } +% \end{picture} +% +% \else% +% \xifaspectratio{ +% {169} { +% % Other frames background +% \begin{picture}(0,0) +% \put(-4,-260){% +% \pgfuseimage{background} +% } +% \end{picture} +% } +% }[ +% % Other frames background +% \begin{picture}(0,0) +% \put(-4,-274){% +% \pgfuseimage{background} +% } +% \end{picture} +% ] +% \fi% +%} + + +\setbeamertemplate{title page}{ +\vspace{40pt} +\begin{center} +\usebeamerfont{title} {\huge \inserttitle}\par +\vspace{4ex} +\usebeamerfont{author} { + \insertauthor +}\par +\vspace{2ex} +\usebeamerfont{institute}{ + \insertinstitute +} \par +\vspace{2ex} +\usebeamerfont{date}{ + \insertdate +} +\end{center} +} + + +\setbeamertemplate{frametitle}[default][center] +\setbeamertemplate{frametitle}{ + \makeatletter + \regexpatchcmd{\insertframetitle} + {(\c{usebeamertemplate}.*)\c{fi}} + {\c{NoCaseChange}\cB\{\1\cE\}\c{fi}} + {}{}% + \makeatother + \vskip1ex + \insertframetitle +} + +% Here we define what appears at the bottom of each slide: the "footline". +\setbeamertemplate{footline}{% + \leavevmode% + + % Horizontal line dividing the rest of the slide from the footer? + % hrule goes all the way across... + % \hrule height.3pt% + % With \rule, you can specify the thickness + % \rule[raise-height]{width}{thickness} + % \hspace{.025\textwidth}\rule{.95\textwidth}{.5pt} + + \hbox{% + \ifnum \thepage>1 + \if@rightfooterOption + \begin{minipage}{.2\textwidth}% + \hskip .05\textwidth%Give horizontal space else this will set on the left edge of the slide! + \end{minipage} + \else + \begin{minipage}{.4\textwidth}% + \hskip .05\textwidth%Give horizontal space else this will set on the left edge of the slide! + \end{minipage} + \fi + + + \begin{minipage}{\textwidth}% + % \vskip .023\textheight% + \raggedleft% + \setlength{\rightskip}{\textwidth} + \if@rightfooterOption + \hbox{% + \begin{beamercolorbox}[wd=0.7\textwidth,ht=2.25ex,dp=1ex,left]{author in head/foot}% + \insertshorttitle{} \hskip .01\textwidth | \hskip .01\textwidth \insertdate{} \hskip .01\textwidth | \hskip .01\textwidth \insertframenumber{} + \end{beamercolorbox}% + } + \else + \hbox{% + \begin{beamercolorbox}[wd=0.5\textwidth,ht=2.25ex,dp=1ex,left]{author in head/foot}% + \insertshorttitle{} \hskip .01\textwidth | \hskip .01\textwidth \insertdate{} \hskip .01\textwidth | \hskip .01\textwidth \insertframenumber{} + \end{beamercolorbox}% + } + \fi + + \end{minipage}% + \begin{minipage}{.05\textwidth}% + \end{minipage}% + \fi %\thepage>1 + }% + \vskip .023\textheight% + +} + + + + +\ifTACCheadernav + +\usesectionheadtemplate +{\hfill\insertsectionhead} +{\hfill\color{fg!50!bg}\insertsectionhead} + +% Head +\ifbeamer@compress + +% Here we define how the top of the frame looks, the "headline". +\setbeamertemplate{headline} +{% + \ifnum \thepage>1 + \leavevmode% + \begin{beamercolorbox}[wd=.5\paperwidth,ht=2.5ex,dp=1.125ex]{% + section in head/foot}% + \insertsectionnavigationhorizontal{.5\paperwidth}{\hskip0pt plus1filll}{}% + \end{beamercolorbox}% + \begin{beamercolorbox}[wd=.5\paperwidth,ht=2.5ex,dp=1.125ex]{% + subsection in head/foot}% + \insertsubsectionnavigationhorizontal{% + .5\paperwidth}{}{\hskip0pt plus1filll}% + \end{beamercolorbox}% + \fi %\thepage>1 +} + +\else% Not compressed + +\setbeamertemplate{headline} +{% + \ifnum \thepage>1 + \leavevmode% + \@tempdimb=2.4375ex% + \ifnum\beamer@subsectionmax<\beamer@sectionmax% + \multiply\@tempdimb by\beamer@sectionmax% + \else% + \multiply\@tempdimb by\beamer@subsectionmax% + \fi% + \ifdim\@tempdimb>0pt% + \advance\@tempdimb by 1.125ex% + \begin{beamercolorbox}[wd=.5\paperwidth,ht=\@tempdimb]{% + section in head/foot}% + \vbox to\@tempdimb{\vfil\insertsectionnavigation{.5\paperwidth}\vfil}% + \end{beamercolorbox}% + \begin{beamercolorbox}[wd=.5\paperwidth,ht=\@tempdimb]{% + subsection in head/foot}% + \vbox to\@tempdimb{\vfil\insertsubsectionnavigation{.5\paperwidth}\vfil}% + \end{beamercolorbox}% + \fi% + \fi % \thepage>1 +} + +\fi % end if compressed +\fi % TACCheadernav + + +\ifTACCheadertree + +\setbeamertemplate{headline} +{ + \begin{beamercolorbox}[wd=\paperwidth,colsep=1.5pt]{upper separation line head} + \end{beamercolorbox} + % + % Place short title + % + \begin{beamercolorbox}[wd=\paperwidth,ht=2.5ex,dp=1.125ex,% + leftskip=.3cm,rightskip=.3cm plus1fil]{title in head/foot} + \usebeamerfont{title in head/foot}\insertshorttitle + \end{beamercolorbox} + + % + % Place section + % + \begin{beamercolorbox}[wd=\paperwidth,ht=2.5ex,dp=1.125ex,% + leftskip=.3cm,rightskip=.3cm plus1fil]{section in head/foot} + \usebeamerfont{section in head/foot}% + %\ifbeamer@tree@showhooks + \setbox\beamer@tempbox=\hbox{\insertsectionhead}% + \ifdim\wd\beamer@tempbox>1pt% + \hskip2pt\raise1.9pt\hbox{\vrule width0.4pt height1.875ex\vrule width 5pt height0.4pt}% + \hskip1pt% + \fi + \insertsectionhead + \end{beamercolorbox} + +% +% Place subsection +% +\begin{beamercolorbox}[wd=\paperwidth,ht=2.5ex,dp=1.125ex,% + leftskip=.3cm,rightskip=.3cm plus1fil]{subsection in head/foot} + \usebeamerfont{subsection in head/foot}% + %\ifbeamer@tree@showhooks + \setbox\beamer@tempbox=\hbox{\insertsubsectionhead}% + \ifdim\wd\beamer@tempbox>1pt% + \hskip9.4pt\raise1.9pt\hbox{\vrule width0.4pt height1.875ex\vrule width 5pt height0.4pt}% + \hskip1pt% + \fi + \insertsubsectionhead +\end{beamercolorbox} + +% +% Place final separation box +% + \begin{beamercolorbox}[wd=\paperwidth,colsep=1.5pt + ]{lower separation line head} + \end{beamercolorbox} + + % + % Another matching rule which helps to frame the content + % + \hspace{.025\textwidth}\rule{.95\textwidth}{.5pt} +} +\fi % TACCheadertree + + +% The following command suppresses all navigation symbols. This is +% necessary in the TACC theme, since it overlaps where we want the +% logo to be. +\setbeamertemplate{navigation symbols}{} + + +\mode + diff --git a/my_docs/22/lmod_zoom_mtg_2022_03_01/beamerthemeTACC.sty b/my_docs/22/lmod_zoom_mtg_2022_03_01/beamerthemeTACC.sty deleted file mode 120000 index 5c339abd4..000000000 --- a/my_docs/22/lmod_zoom_mtg_2022_03_01/beamerthemeTACC.sty +++ /dev/null @@ -1 +0,0 @@ -../../beamer/beamerthemeTACC.sty \ No newline at end of file diff --git a/my_docs/22/lmod_zoom_mtg_2022_03_01/beamerthemeTACC.sty b/my_docs/22/lmod_zoom_mtg_2022_03_01/beamerthemeTACC.sty new file mode 100755 index 000000000..c6a1b1269 --- /dev/null +++ b/my_docs/22/lmod_zoom_mtg_2022_03_01/beamerthemeTACC.sty @@ -0,0 +1,26 @@ +%% TACC theme for beamer + +\newif\ifTACCheadernav +\DeclareOption{headernav}{\global\TACCheadernavtrue} + +\newif\ifTACCheadertree +\DeclareOption{headertree}{\global\TACCheadertreetrue} +\ProcessOptions + +\mode + +\usefonttheme{TACC} +\usecolortheme{TACC} +\useinnertheme{TACC} +\useoutertheme{TACC} + +\mode + + +\newcommand{\event}[1]{% + \makeatletter% + \def\TACC@eventname{#1}% + \makeatother} + +\newcommand{\sectionframe}[1]{\section{#1}\frame{\Large\textbf{#1}}} +\newcommand{\subsectionframe}[1]{\subsection{#1}\frame{\large\textbf{#1}}} diff --git a/my_docs/22/lmod_zoom_mtg_2022_03_01/beamerthemeTACC16.sty b/my_docs/22/lmod_zoom_mtg_2022_03_01/beamerthemeTACC16.sty deleted file mode 120000 index 7a9d4d296..000000000 --- a/my_docs/22/lmod_zoom_mtg_2022_03_01/beamerthemeTACC16.sty +++ /dev/null @@ -1 +0,0 @@ -../../beamer/beamerthemeTACC16.sty \ No newline at end of file diff --git a/my_docs/22/lmod_zoom_mtg_2022_03_01/beamerthemeTACC16.sty b/my_docs/22/lmod_zoom_mtg_2022_03_01/beamerthemeTACC16.sty new file mode 100755 index 000000000..b522d0207 --- /dev/null +++ b/my_docs/22/lmod_zoom_mtg_2022_03_01/beamerthemeTACC16.sty @@ -0,0 +1,61 @@ +%% TACC theme for beamer + + +\newif\if@rightfooterOption +\@rightfooterOptionfalse +\DeclareOption{rightfooter}{\@rightfooterOptiontrue} +\ProcessOptions + + +\newif\ifTACCheadernav +\DeclareOption{headernav}{\global\TACCheadernavtrue} + +\newif\ifTACCheadertree +\DeclareOption{headertree}{\global\TACCheadertreetrue} +\ProcessOptions + +\usepackage{xparse} +\ExplSyntaxOn +\NewDocumentCommand{\ifaspectratio}{mmm} + { + % Recover the option from those passed to the class + \keys_set:nf { zunbeltz/beameroptions } { \use:c { opt@beamer.cls } } + \str_if_eq:nVTF { #1 } \l_zunbeltz_aspectratio_tl { #2 } { #3 } + } +\NewDocumentCommand{\xifaspectratio}{mO{}} + { + % Recover the option from those passed to the class + \keys_set:nf { zunbeltz/beameroptions } { \use:c { opt@beamer.cls } } + \str_case:VnF \l_zunbeltz_aspectratio_tl { #1 } { #2 } + } +% We need to define only one key, the other are treated as `unknown' +\keys_define:nn { zunbeltz/beameroptions } + { + aspectratio .tl_set:N = \l_zunbeltz_aspectratio_tl, + aspectratio .initial:n = 43, + unknown .code:n = {}, + } + +% Generate the variants we need +\cs_generate_variant:Nn \keys_set:nn { nf } +\cs_generate_variant:Nn \str_if_eq:nnTF { nV } +\cs_generate_variant:Nn \str_case:nnF { V } +\ExplSyntaxOff + +\mode + +\usefonttheme{TACC16} +\useinnertheme{TACC16} +\useoutertheme{TACC16} +\usecolortheme{TACC16} + +\mode + + +\newcommand{\event}[1]{% + \makeatletter% + \def\TACC@eventname{#1}% + \makeatother} + +\newcommand{\sectionframe}[1]{\section{#1}\frame{\Large\textbf{#1}}} +\newcommand{\subsectionframe}[1]{\subsection{#1}\frame{\large\textbf{#1}}} diff --git a/my_docs/22/lmod_zoom_mtg_2022_03_01/figures b/my_docs/22/lmod_zoom_mtg_2022_03_01/figures deleted file mode 120000 index ddafd8974..000000000 --- a/my_docs/22/lmod_zoom_mtg_2022_03_01/figures +++ /dev/null @@ -1 +0,0 @@ -../../beamer/figures \ No newline at end of file diff --git a/my_docs/22/lmod_zoom_mtg_2022_03_01/figures/TACC_logo.pdf b/my_docs/22/lmod_zoom_mtg_2022_03_01/figures/TACC_logo.pdf new file mode 100755 index 000000000..c018a20cb Binary files /dev/null and b/my_docs/22/lmod_zoom_mtg_2022_03_01/figures/TACC_logo.pdf differ diff --git a/my_docs/22/lmod_zoom_mtg_2022_03_01/figures/UT_logo.pdf b/my_docs/22/lmod_zoom_mtg_2022_03_01/figures/UT_logo.pdf new file mode 100755 index 000000000..d5b42e752 Binary files /dev/null and b/my_docs/22/lmod_zoom_mtg_2022_03_01/figures/UT_logo.pdf differ diff --git a/my_docs/22/lmod_zoom_mtg_2022_03_01/figures/cc.png b/my_docs/22/lmod_zoom_mtg_2022_03_01/figures/cc.png new file mode 100644 index 000000000..8a532ff8f Binary files /dev/null and b/my_docs/22/lmod_zoom_mtg_2022_03_01/figures/cc.png differ diff --git a/my_docs/22/lmod_zoom_mtg_2022_03_01/figures/isa.png b/my_docs/22/lmod_zoom_mtg_2022_03_01/figures/isa.png new file mode 100644 index 000000000..f95d985e7 Binary files /dev/null and b/my_docs/22/lmod_zoom_mtg_2022_03_01/figures/isa.png differ diff --git a/my_docs/22/lmod_zoom_mtg_2022_03_01/figures/master.jpg b/my_docs/22/lmod_zoom_mtg_2022_03_01/figures/master.jpg new file mode 100644 index 000000000..f5c56c04a Binary files /dev/null and b/my_docs/22/lmod_zoom_mtg_2022_03_01/figures/master.jpg differ diff --git a/my_docs/22/lmod_zoom_mtg_2022_03_01/figures/master169.jpg b/my_docs/22/lmod_zoom_mtg_2022_03_01/figures/master169.jpg new file mode 100644 index 000000000..b215776eb Binary files /dev/null and b/my_docs/22/lmod_zoom_mtg_2022_03_01/figures/master169.jpg differ diff --git a/my_docs/22/lmod_zoom_mtg_2022_03_01/figures/master169.png b/my_docs/22/lmod_zoom_mtg_2022_03_01/figures/master169.png new file mode 100644 index 000000000..bc5c0ed12 Binary files /dev/null and b/my_docs/22/lmod_zoom_mtg_2022_03_01/figures/master169.png differ diff --git a/my_docs/22/lmod_zoom_mtg_2022_03_01/figures/secondary.jpg b/my_docs/22/lmod_zoom_mtg_2022_03_01/figures/secondary.jpg new file mode 100644 index 000000000..d905a95c9 Binary files /dev/null and b/my_docs/22/lmod_zoom_mtg_2022_03_01/figures/secondary.jpg differ diff --git a/my_docs/22/lmod_zoom_mtg_2022_03_01/figures/secondary169.jpg b/my_docs/22/lmod_zoom_mtg_2022_03_01/figures/secondary169.jpg new file mode 100644 index 000000000..4eb017957 Binary files /dev/null and b/my_docs/22/lmod_zoom_mtg_2022_03_01/figures/secondary169.jpg differ diff --git a/my_docs/22/lmod_zoom_mtg_2022_03_01/figures/secondary169.png b/my_docs/22/lmod_zoom_mtg_2022_03_01/figures/secondary169.png new file mode 100644 index 000000000..cb9060a56 Binary files /dev/null and b/my_docs/22/lmod_zoom_mtg_2022_03_01/figures/secondary169.png differ diff --git a/my_docs/22/lmod_zoom_mtg_2022_03_01/figures/secondary_right.jpg b/my_docs/22/lmod_zoom_mtg_2022_03_01/figures/secondary_right.jpg new file mode 100644 index 000000000..f25f93a58 Binary files /dev/null and b/my_docs/22/lmod_zoom_mtg_2022_03_01/figures/secondary_right.jpg differ diff --git a/my_docs/22/lmod_zoom_mtg_2022_03_01/figures/secondary_right169.jpg b/my_docs/22/lmod_zoom_mtg_2022_03_01/figures/secondary_right169.jpg new file mode 100644 index 000000000..567a1078f Binary files /dev/null and b/my_docs/22/lmod_zoom_mtg_2022_03_01/figures/secondary_right169.jpg differ diff --git a/my_docs/22/lmod_zoom_mtg_2022_03_01/themes b/my_docs/22/lmod_zoom_mtg_2022_03_01/themes deleted file mode 120000 index a98530730..000000000 --- a/my_docs/22/lmod_zoom_mtg_2022_03_01/themes +++ /dev/null @@ -1 +0,0 @@ -../../beamer/themes \ No newline at end of file diff --git a/my_docs/22/lmod_zoom_mtg_2022_03_01/themes/beamercolorthemeTACC16.sty b/my_docs/22/lmod_zoom_mtg_2022_03_01/themes/beamercolorthemeTACC16.sty new file mode 100644 index 000000000..248ae8cb6 --- /dev/null +++ b/my_docs/22/lmod_zoom_mtg_2022_03_01/themes/beamercolorthemeTACC16.sty @@ -0,0 +1,193 @@ +% Copyright 2003 by Till Tantau . +% +% This program can be redistributed and/or modified under the terms +% of the GNU Public License, version 2. + +\mode + +\usepackage{textcase,regexpatch} + +\setbeamertemplate{blocks}[rounded][shadow=true] + + +\definecolor{TACCred}{RGB}{180,13,29} +\definecolor{TACCorange}{RGB}{210,104,43} +\definecolor{TACCblue}{RGB}{21,77,122} +%\definecolor{TACCgreen}{RGB}{30,134,104} +\definecolor{TACCgreen}{RGB}{49,168,51} + +% I downloaded a gimp color palette from +% http://maururu.net/2007/latex-beamer-color-palette/ +% Which provides rgb values (I think) for several of the +% default beamer themes. You can open this in gimp by +% opening the Palettes dialog, right-clicking anywhere and choosing +% 'Import Palette'. A color in there called 'default added blue' +% appeared to be approximately what I wanted. It had the triple +% of values 141 145 208. If you double-click on this in the +% palette editor it gives you a bunch of information. You can't +% use these values directly to set a color...it just comes out white. +% I think definecolor is expecting something normalized by 255. Yes! + + +%%% +% Set the normal text color +%%% +\setbeamercolor{normal text}{fg=black} %,bg=white} +\setbeamercolor{example text}{fg=TACCgreen} +\setbeamercolor{alerted text}{fg=TACCorange} + + +\setbeamercolor{structure}{fg=black} +%\setbeamercolor{structure}{fg=black} + +\setbeamercolor{background canvas}{parent=normal text} +\setbeamercolor{background}{parent=background canvas} + +\setbeamercolor{palette primary}{use=structure,fg=structure.fg} +\setbeamercolor{palette secondary}{use=structure,fg=structure.fg!75!black} +\setbeamercolor{palette tertiary}{use=structure,fg=structure.fg!50!black} +\setbeamercolor{palette quaternary}{fg=black} + +\setbeamercolor{palette sidebar primary}{use=normal text,fg=normal text.fg} +\setbeamercolor{palette sidebar secondary}{use=structure,fg=structure.fg} +\setbeamercolor{palette sidebar tertiary}{use=normal text,fg=normal text.fg} +\setbeamercolor{palette sidebar quaternary}{use=structure,fg=structure.fg} + +\setbeamercolor{math text}{} +\setbeamercolor{math text inlined}{parent=math text} +\setbeamercolor{math text displayed}{parent=math text} + +\setbeamercolor{normal text in math text}{} + +\setbeamercolor{local structure}{parent=structure} + +\setbeamercolor{titlelike}{parent=structure} + +\setbeamercolor{title}{parent=titlelike} +\setbeamercolor{title in head/foot}{parent=palette quaternary} +\setbeamercolor{title in sidebar}{parent=palette sidebar quaternary} + +\setbeamercolor{subtitle}{parent=title} + +\setbeamercolor{author}{} +\setbeamercolor{author in head/foot}{parent=palette primary} +\setbeamercolor{author in sidebar}{use=palette sidebar tertiary,fg=palette sidebar tertiary.fg} + +\setbeamercolor{institute}{} +\setbeamercolor{institute in head/foot}{parent=palette tertiary} +\setbeamercolor{institute in sidebar}{use=palette sidebar tertiary,fg=palette sidebar tertiary.fg} + +\setbeamercolor{date}{} +\setbeamercolor{date in head/foot}{parent=palette secondary} +\setbeamercolor{date in sidebar}{use=palette sidebar tertiary,fg=palette sidebar tertiary.fg} + +\setbeamercolor{titlegraphic}{} + +\setbeamercolor{part name}{} +\setbeamercolor{part title}{parent=titlelike} + +\setbeamercolor{section in toc}{parent=structure} +\setbeamercolor{section in toc shaded}{parent=section in toc} +\setbeamercolor{section in head/foot}{parent=palette tertiary} +\setbeamercolor{section in sidebar}{parent=palette sidebar secondary} +\setbeamercolor{section in sidebar shaded}{use=section in sidebar,fg=section in sidebar.fg!40!bg} +\setbeamercolor{section number projected}{parent=item projected} + +\setbeamercolor{subsection in toc}{} +\setbeamercolor{subsection in toc shaded}{parent=subsection in toc} +\setbeamercolor{subsection in head/foot}{parent=palette secondary} +\setbeamercolor{subsection in sidebar}{parent=palette sidebar primary} +\setbeamercolor{subsection in sidebar shaded}{use=subsection in sidebar,fg=subsection in sidebar.fg!40!bg} +\setbeamercolor{subsection number projected}{parent={subitem projected}} + +\setbeamercolor{subsubsection in toc}{parent=subsection in toc} +\setbeamercolor{subsubsection in toc shaded}{parent=subsubsection in toc} +\setbeamercolor{subsubsection in head/foot}{parent=subsection in head/foot} +\setbeamercolor{subsubsection in sidebar}{parent=subsection in sidebar} +\setbeamercolor{subsubsection in sidebar shaded}{parent=subsection in sidebar shaded} +\setbeamercolor{subsubsection number projected}{parent=subsubitem projected} + +\setbeamercolor{headline}{} +\setbeamercolor{footline}{} + +\setbeamercolor{sidebar}{} +\setbeamercolor{sidebar left}{parent=sidebar} +\setbeamercolor{sidebar right}{parent=sidebar} + +\setbeamercolor{logo}{parent=palette secondary} + +\setbeamercolor{frametitle}{parent=titlelike} +\setbeamercolor{framesubtitle}{parent=frametitle} + +\setbeamercolor{frametitle right}{parent=frametitle} + +\setbeamercolor{caption}{} +\setbeamercolor{caption name}{parent=structure} + +\setbeamercolor{button}{use=local structure,bg=local structure.fg!50!bg,fg=white} +\setbeamercolor{button border}{use=button,fg=button.bg} +\setbeamercolor{navigation symbols}{use=structure,fg=structure.fg!40!bg} +\setbeamercolor{navigation symbols dimmed}{use=structure,fg=structure.fg!20!bg} +\setbeamercolor{mini frame}{parent=section in head/foot} + +\setbeamercolor{block body}{fg=black} +\setbeamercolor{block body alerted}{fg=black} +\setbeamercolor{block body example}{fg=black} + +\setbeamercolor{block title}{bg=TACCblue,fg=white} +\setbeamercolor{block title alerted}{bg=TACCred,fg=white} +\setbeamercolor{block title example}{bg=TACCgreen,fg=white} + +\setbeamercolor{item}{parent=local structure} +\setbeamercolor{subitem}{parent=item} +\setbeamercolor{subsubitem}{parent=subitem} + +\setbeamercolor{item projected}{parent=item,use=item,fg=black,bg=item.fg} +\setbeamercolor{subitem projected}{parent=item projected} +\setbeamercolor{subsubitem projected}{parent=subitem projected} + +\setbeamercolor{enumerate item}{parent=item} +\setbeamercolor{enumerate subitem}{parent=subitem} +\setbeamercolor{enumerate subsubitem}{parent=subsubitem} + +\setbeamercolor{itemize item}{parent=item} +\setbeamercolor{itemize subitem}{parent=subitem} +\setbeamercolor{itemize subsubitem}{parent=subsubitem} + +\setbeamercolor{itemize/enumerate body}{} +\setbeamercolor{itemize/enumerate subbody}{} +\setbeamercolor{itemize/enumerate subsubbody}{} + +\setbeamercolor{description item}{parent=item} + +\setbeamercolor{bibliography item}{parent=item} + +\setbeamercolor{bibliography entry author}{use=structure,fg=structure.fg} +\setbeamercolor{bibliography entry title}{use=normal text,fg=normal text.fg} +\setbeamercolor{bibliography entry location}{use=structure,fg=structure.fg!65!bg} +\setbeamercolor{bibliography entry note}{use=structure,fg=structure.fg!65!bg} + +\setbeamercolor{separation line}{} + +\setbeamercolor{upper separation line head}{parent=separation line} +\setbeamercolor{middle separation line head}{parent=separation line} +\setbeamercolor{lower separation line head}{parent=separation line} + +\setbeamercolor{upper separation line foot}{parent=separation line} +\setbeamercolor{middle separation line foot}{parent=separation line} +\setbeamercolor{lower separation line foot}{parent=separation line} + +\setbeamercolor{abstract}{} +\setbeamercolor{abstract title}{parent=structure} + +\setbeamercolor{verse}{} + +\setbeamercolor{quotation}{} +\setbeamercolor{quote}{parent=quotation} + +\setbeamercolor{page number in head/foot}{fg=fg!50!bg} + +\setbeamercolor{qed symbol}{parent=structure} + +\mode + diff --git a/my_docs/22/lmod_zoom_mtg_2022_03_01/themes/beamerfontthemeTACC16.sty b/my_docs/22/lmod_zoom_mtg_2022_03_01/themes/beamerfontthemeTACC16.sty new file mode 100644 index 000000000..d0fc325cc --- /dev/null +++ b/my_docs/22/lmod_zoom_mtg_2022_03_01/themes/beamerfontthemeTACC16.sty @@ -0,0 +1,21 @@ +% Copyright 2003 by Till Tantau +% +% This program can be redistributed and/or modified under the terms +% of the GNU Public License, version 2. + +\mode +\setbeamerfont{title}{parent=structure,size=\LARGE,series=\bfseries} +\setbeamerfont{author}{parent=structure,size=\large, series=\normalfont} +\setbeamerfont{frametitle}{parent=structure,size=\LARGE,series=\bfseries} +\setbeamerfont{framesubtitle}{parent=frametitle,size=\small} + +%\usefonttheme{professionalfonts} % using non standard fonts for beamer +%\usefonttheme{serif} % default family is serif +%\usepackage{fontspec} +%\setmainfont{Century Gothic} + +%\usepackage{fontspec} +\usepackage{libertine} + +\mode + diff --git a/my_docs/22/lmod_zoom_mtg_2022_03_01/themes/beamerinnerthemeTACC16.sty b/my_docs/22/lmod_zoom_mtg_2022_03_01/themes/beamerinnerthemeTACC16.sty new file mode 100644 index 000000000..f7f454e1d --- /dev/null +++ b/my_docs/22/lmod_zoom_mtg_2022_03_01/themes/beamerinnerthemeTACC16.sty @@ -0,0 +1,11 @@ +\mode + +\setbeamertemplate{itemize item}[triangle] +\setbeamertemplate{itemize subitem}[triangle] +\setbeamertemplate{itemize subsubitem}[triangle] +\setbeamertemplate{section in toc}{$\bullet$\hskip.5em\inserttocsection} +%\setbeamertemplate{subsection in toc}{} +\setbeamertemplate{subsubsection in toc}{} + +\mode + diff --git a/my_docs/22/lmod_zoom_mtg_2022_03_01/themes/beamerouterthemeTACC16-169.sty b/my_docs/22/lmod_zoom_mtg_2022_03_01/themes/beamerouterthemeTACC16-169.sty new file mode 100644 index 000000000..c62f9ed04 --- /dev/null +++ b/my_docs/22/lmod_zoom_mtg_2022_03_01/themes/beamerouterthemeTACC16-169.sty @@ -0,0 +1,247 @@ +% Copyright 2003 by Till Tantau +% +% This program can be redistributed and/or modified under the terms +% of the GNU Public License, version 2. + +\mode + +\usepackage{xcolor} +\usepackage{graphicx} +\usepackage{etoolbox} + +\pgfdeclareimage[width=\paperwidth]{titlebackground}{./figures/master169.png} +\pgfdeclareimage[width=\paperwidth]{background}{./figures/secondary169.png} + +\setbeamertemplate{background canvas}{% + \ifnum\c@framenumber=1% + \begin{picture}(0,0) + \put(-0.15,-250){% + \pgfuseimage{titlebackground} + } + %\put(0,-130.7){% + + %\begin{minipage}[b][45mm][t]{\textwidth}%{226mm} + %\begin{center} + % \usebeamerfont{title}{\MakeTextUppercase{\inserttitle}\par} + %\vspace{2ex} + %\usebeamerfont{author}{\insertauthor} + % \end{center} + %\end{minipage} + %} + \end{picture} + % On title page + \else% + % Other frames background + \begin{picture}(0,0) + \put(-0.15,-255.55){% + \pgfuseimage{background} + } + \end{picture} + \fi% +} + + +\setbeamertemplate{title page}{ +\vspace{40pt} +\begin{center} +\usebeamerfont{title} {\huge \inserttitle}\par +\vspace{4ex} +\usebeamerfont{author} { + \insertauthor +}\par +\vspace{2ex} +\usebeamerfont{institute}{ + \insertinstitute +} \par +\vspace{2ex} +\usebeamerfont{date}{ + \insertdate +} +\end{center} +} + + +\setbeamertemplate{frametitle}[default][center] +\setbeamertemplate{frametitle}{ + \makeatletter + \regexpatchcmd{\insertframetitle} + {(\c{usebeamertemplate}.*)\c{fi}} + {\c{NoCaseChange}\cB\{\1\cE\}\c{fi}} + {}{}% + \makeatother + \vskip1ex + \insertframetitle +} + +% Here we define what appears at the bottom of each slide: the "footline". +\setbeamertemplate{footline}{% + \leavevmode% + + % Horizontal line dividing the rest of the slide from the footer? + % hrule goes all the way across... + % \hrule height.3pt% + % With \rule, you can specify the thickness + % \rule[raise-height]{width}{thickness} + % \hspace{.025\textwidth}\rule{.95\textwidth}{.5pt} + + \hbox{% + \ifnum \thepage>1 + % On the left half of the footer, insert the TACC of + \begin{minipage}{.2\textwidth}% + \hskip .05\textwidth%Give horizontal space else this will set on the left edge of the slide! + % \includegraphics[width=.8\textwidth]{TACC_logo.png} + \end{minipage} + + + \begin{minipage}{\textwidth}% + % \vskip .023\textheight% + \raggedleft% + \setlength{\rightskip}{\textwidth} + \hbox{% + \begin{beamercolorbox}[wd=0.7\textwidth,ht=2.25ex,dp=1ex,left]{author in head/foot}% + \insertshorttitle{} \hskip .01\textwidth | \hskip .01\textwidth \insertdate{} \hskip .01\textwidth | \hskip .01\textwidth \insertframenumber{} + \end{beamercolorbox}% + } + + % + % If we are not on the first page, insert a page number + % For some reason, insertframenumber is buggy when you have fragile + % slides with verbatim environments in them... it tends to skip numbers + % for some reason! On the other hand, the pagenumber is incremented + % for *every* slide, including transition slides... + % \hfill\includegraphics[width=\textwidth]{tacc_ut.png} + \end{minipage}% + \begin{minipage}{.05\textwidth}% + \end{minipage}% + \fi %\thepage>1 + }% + \vskip .023\textheight% + +} + + + + +\ifTACCheadernav + +\usesectionheadtemplate +{\hfill\insertsectionhead} +{\hfill\color{fg!50!bg}\insertsectionhead} + +% Head +\ifbeamer@compress + +% Here we define how the top of the frame looks, the "headline". +\setbeamertemplate{headline} +{% + \ifnum \thepage>1 + \leavevmode% + \begin{beamercolorbox}[wd=.5\paperwidth,ht=2.5ex,dp=1.125ex]{% + section in head/foot}% + \insertsectionnavigationhorizontal{.5\paperwidth}{\hskip0pt plus1filll}{}% + \end{beamercolorbox}% + \begin{beamercolorbox}[wd=.5\paperwidth,ht=2.5ex,dp=1.125ex]{% + subsection in head/foot}% + \insertsubsectionnavigationhorizontal{% + .5\paperwidth}{}{\hskip0pt plus1filll}% + \end{beamercolorbox}% + \fi %\thepage>1 +} + +\else% Not compressed + +\setbeamertemplate{headline} +{% + \ifnum \thepage>1 + \leavevmode% + \@tempdimb=2.4375ex% + \ifnum\beamer@subsectionmax<\beamer@sectionmax% + \multiply\@tempdimb by\beamer@sectionmax% + \else% + \multiply\@tempdimb by\beamer@subsectionmax% + \fi% + \ifdim\@tempdimb>0pt% + \advance\@tempdimb by 1.125ex% + \begin{beamercolorbox}[wd=.5\paperwidth,ht=\@tempdimb]{% + section in head/foot}% + \vbox to\@tempdimb{\vfil\insertsectionnavigation{.5\paperwidth}\vfil}% + \end{beamercolorbox}% + \begin{beamercolorbox}[wd=.5\paperwidth,ht=\@tempdimb]{% + subsection in head/foot}% + \vbox to\@tempdimb{\vfil\insertsubsectionnavigation{.5\paperwidth}\vfil}% + \end{beamercolorbox}% + \fi% + \fi % \thepage>1 +} + +\fi % end if compressed +\fi % TACCheadernav + + +\ifTACCheadertree + +\setbeamertemplate{headline} +{ + \begin{beamercolorbox}[wd=\paperwidth,colsep=1.5pt]{upper separation line head} + \end{beamercolorbox} + % + % Place short title + % + \begin{beamercolorbox}[wd=\paperwidth,ht=2.5ex,dp=1.125ex,% + leftskip=.3cm,rightskip=.3cm plus1fil]{title in head/foot} + \usebeamerfont{title in head/foot}\insertshorttitle + \end{beamercolorbox} + + % + % Place section + % + \begin{beamercolorbox}[wd=\paperwidth,ht=2.5ex,dp=1.125ex,% + leftskip=.3cm,rightskip=.3cm plus1fil]{section in head/foot} + \usebeamerfont{section in head/foot}% + %\ifbeamer@tree@showhooks + \setbox\beamer@tempbox=\hbox{\insertsectionhead}% + \ifdim\wd\beamer@tempbox>1pt% + \hskip2pt\raise1.9pt\hbox{\vrule width0.4pt height1.875ex\vrule width 5pt height0.4pt}% + \hskip1pt% + \fi + \insertsectionhead + \end{beamercolorbox} + +% +% Place subsection +% +\begin{beamercolorbox}[wd=\paperwidth,ht=2.5ex,dp=1.125ex,% + leftskip=.3cm,rightskip=.3cm plus1fil]{subsection in head/foot} + \usebeamerfont{subsection in head/foot}% + %\ifbeamer@tree@showhooks + \setbox\beamer@tempbox=\hbox{\insertsubsectionhead}% + \ifdim\wd\beamer@tempbox>1pt% + \hskip9.4pt\raise1.9pt\hbox{\vrule width0.4pt height1.875ex\vrule width 5pt height0.4pt}% + \hskip1pt% + \fi + \insertsubsectionhead +\end{beamercolorbox} + +% +% Place final separation box +% + \begin{beamercolorbox}[wd=\paperwidth,colsep=1.5pt + ]{lower separation line head} + \end{beamercolorbox} + + % + % Another matching rule which helps to frame the content + % + \hspace{.025\textwidth}\rule{.95\textwidth}{.5pt} +} +\fi % TACCheadertree + + +% The following command suppresses all navigation symbols. This is +% necessary in the TACC theme, since it overlaps where we want the +% logo to be. +\setbeamertemplate{navigation symbols}{} + + +\mode + diff --git a/my_docs/22/lmod_zoom_mtg_2022_03_01/themes/beamerouterthemeTACC16.sty b/my_docs/22/lmod_zoom_mtg_2022_03_01/themes/beamerouterthemeTACC16.sty new file mode 100644 index 000000000..c5b178018 --- /dev/null +++ b/my_docs/22/lmod_zoom_mtg_2022_03_01/themes/beamerouterthemeTACC16.sty @@ -0,0 +1,247 @@ +% Copyright 2003 by Till Tantau +% +% This program can be redistributed and/or modified under the terms +% of the GNU Public License, version 2. + +\mode + +\usepackage{xcolor} +\usepackage{graphicx} +\usepackage{etoolbox} + +\pgfdeclareimage[width=\paperwidth]{titlebackground}{master.jpg} +\pgfdeclareimage[width=\paperwidth]{background}{secondary.jpg} + +\setbeamertemplate{background canvas}{% + \ifnum\c@framenumber=1% + \begin{picture}(0,0) + \put(0,-273){% + \pgfuseimage{titlebackground} + } + %\put(0,-130.7){% + + %\begin{minipage}[b][45mm][t]{\textwidth}%{226mm} + %\begin{center} + % \usebeamerfont{title}{\MakeTextUppercase{\inserttitle}\par} + %\vspace{2ex} + %\usebeamerfont{author}{\insertauthor} + % \end{center} + %\end{minipage} + %} + \end{picture} + % On title page + \else% + % Other frames background + \begin{picture}(0,0) + \put(0,-273){% + \pgfuseimage{background} + } + \end{picture} + \fi% +} + + +\setbeamertemplate{title page}{ +\vspace{40pt} +\begin{center} +\usebeamerfont{title} {\huge \inserttitle}\par +\vspace{4ex} +\usebeamerfont{author} { + \insertauthor +}\par +\vspace{2ex} +\usebeamerfont{institute}{ + \insertinstitute +} \par +\vspace{2ex} +\usebeamerfont{date}{ + \insertdate +} +\end{center} +} + + +\setbeamertemplate{frametitle}[default][center] +\setbeamertemplate{frametitle}{ + \makeatletter + \regexpatchcmd{\insertframetitle} + {(\c{usebeamertemplate}.*)\c{fi}} + {\c{NoCaseChange}\cB\{\1\cE\}\c{fi}} + {}{}% + \makeatother + \vskip1ex + \insertframetitle +} + +% Here we define what appears at the bottom of each slide: the "footline". +\setbeamertemplate{footline}{% + \leavevmode% + + % Horizontal line dividing the rest of the slide from the footer? + % hrule goes all the way across... + % \hrule height.3pt% + % With \rule, you can specify the thickness + % \rule[raise-height]{width}{thickness} + % \hspace{.025\textwidth}\rule{.95\textwidth}{.5pt} + + \hbox{% + \ifnum \thepage>1 + % On the left half of the footer, insert the TACC of + \begin{minipage}{.2\textwidth}% + \hskip .05\textwidth%Give horizontal space else this will set on the left edge of the slide! + % \includegraphics[width=.8\textwidth]{figures/TACC_logo.png} + \end{minipage} + + + \begin{minipage}{\textwidth}% + % \vskip .023\textheight% + \raggedleft% + \setlength{\rightskip}{\textwidth} + \hbox{% + \begin{beamercolorbox}[wd=0.7\textwidth,ht=2.25ex,dp=1ex,left]{author in head/foot}% + \insertshorttitle{} \hskip .01\textwidth | \hskip .01\textwidth \insertdate{} \hskip .01\textwidth | \hskip .01\textwidth \insertframenumber{} + \end{beamercolorbox}% + } + + % + % If we are not on the first page, insert a page number + % For some reason, insertframenumber is buggy when you have fragile + % slides with verbatim environments in them... it tends to skip numbers + % for some reason! On the other hand, the pagenumber is incremented + % for *every* slide, including transition slides... + % \hfill\includegraphics[width=\textwidth]{figures/tacc_ut.png} + \end{minipage}% + \begin{minipage}{.05\textwidth}% + \end{minipage}% + \fi %\thepage>1 + }% + \vskip .023\textheight% + +} + + + + +\ifTACCheadernav + +\usesectionheadtemplate +{\hfill\insertsectionhead} +{\hfill\color{fg!50!bg}\insertsectionhead} + +% Head +\ifbeamer@compress + +% Here we define how the top of the frame looks, the "headline". +\setbeamertemplate{headline} +{% + \ifnum \thepage>1 + \leavevmode% + \begin{beamercolorbox}[wd=.5\paperwidth,ht=2.5ex,dp=1.125ex]{% + section in head/foot}% + \insertsectionnavigationhorizontal{.5\paperwidth}{\hskip0pt plus1filll}{}% + \end{beamercolorbox}% + \begin{beamercolorbox}[wd=.5\paperwidth,ht=2.5ex,dp=1.125ex]{% + subsection in head/foot}% + \insertsubsectionnavigationhorizontal{% + .5\paperwidth}{}{\hskip0pt plus1filll}% + \end{beamercolorbox}% + \fi %\thepage>1 +} + +\else% Not compressed + +\setbeamertemplate{headline} +{% + \ifnum \thepage>1 + \leavevmode% + \@tempdimb=2.4375ex% + \ifnum\beamer@subsectionmax<\beamer@sectionmax% + \multiply\@tempdimb by\beamer@sectionmax% + \else% + \multiply\@tempdimb by\beamer@subsectionmax% + \fi% + \ifdim\@tempdimb>0pt% + \advance\@tempdimb by 1.125ex% + \begin{beamercolorbox}[wd=.5\paperwidth,ht=\@tempdimb]{% + section in head/foot}% + \vbox to\@tempdimb{\vfil\insertsectionnavigation{.5\paperwidth}\vfil}% + \end{beamercolorbox}% + \begin{beamercolorbox}[wd=.5\paperwidth,ht=\@tempdimb]{% + subsection in head/foot}% + \vbox to\@tempdimb{\vfil\insertsubsectionnavigation{.5\paperwidth}\vfil}% + \end{beamercolorbox}% + \fi% + \fi % \thepage>1 +} + +\fi % end if compressed +\fi % TACCheadernav + + +\ifTACCheadertree + +\setbeamertemplate{headline} +{ + \begin{beamercolorbox}[wd=\paperwidth,colsep=1.5pt]{upper separation line head} + \end{beamercolorbox} + % + % Place short title + % + \begin{beamercolorbox}[wd=\paperwidth,ht=2.5ex,dp=1.125ex,% + leftskip=.3cm,rightskip=.3cm plus1fil]{title in head/foot} + \usebeamerfont{title in head/foot}\insertshorttitle + \end{beamercolorbox} + + % + % Place section + % + \begin{beamercolorbox}[wd=\paperwidth,ht=2.5ex,dp=1.125ex,% + leftskip=.3cm,rightskip=.3cm plus1fil]{section in head/foot} + \usebeamerfont{section in head/foot}% + %\ifbeamer@tree@showhooks + \setbox\beamer@tempbox=\hbox{\insertsectionhead}% + \ifdim\wd\beamer@tempbox>1pt% + \hskip2pt\raise1.9pt\hbox{\vrule width0.4pt height1.875ex\vrule width 5pt height0.4pt}% + \hskip1pt% + \fi + \insertsectionhead + \end{beamercolorbox} + +% +% Place subsection +% +\begin{beamercolorbox}[wd=\paperwidth,ht=2.5ex,dp=1.125ex,% + leftskip=.3cm,rightskip=.3cm plus1fil]{subsection in head/foot} + \usebeamerfont{subsection in head/foot}% + %\ifbeamer@tree@showhooks + \setbox\beamer@tempbox=\hbox{\insertsubsectionhead}% + \ifdim\wd\beamer@tempbox>1pt% + \hskip9.4pt\raise1.9pt\hbox{\vrule width0.4pt height1.875ex\vrule width 5pt height0.4pt}% + \hskip1pt% + \fi + \insertsubsectionhead +\end{beamercolorbox} + +% +% Place final separation box +% + \begin{beamercolorbox}[wd=\paperwidth,colsep=1.5pt + ]{lower separation line head} + \end{beamercolorbox} + + % + % Another matching rule which helps to frame the content + % + \hspace{.025\textwidth}\rule{.95\textwidth}{.5pt} +} +\fi % TACCheadertree + + +% The following command suppresses all navigation symbols. This is +% necessary in the TACC theme, since it overlaps where we want the +% logo to be. +\setbeamertemplate{navigation symbols}{} + + +\mode + diff --git a/my_docs/22/lmod_zoom_mtg_2022_03_01/themes/beamerthemeTACC16-169.sty b/my_docs/22/lmod_zoom_mtg_2022_03_01/themes/beamerthemeTACC16-169.sty new file mode 100644 index 000000000..22caf9a05 --- /dev/null +++ b/my_docs/22/lmod_zoom_mtg_2022_03_01/themes/beamerthemeTACC16-169.sty @@ -0,0 +1,38 @@ +%% TACC theme for beamer + +\newif\ifTACCheadernav +\DeclareOption{headernav}{\global\TACCheadernavtrue} + +\newif\ifTACCheadertree +\DeclareOption{headertree}{\global\TACCheadertreetrue} +\ProcessOptions + +\mode + +\makeatletter + \def\beamer@calltheme#1#2#3{% + \def\beamer@themelist{#2} + \@for\beamer@themename:=\beamer@themelist\do + {\usepackage[{#1}]{\beamer@themelocation/#3\beamer@themename}}} + + \def\usefolder#1{ + \def\beamer@themelocation{#1} + } + \def\beamer@themelocation{} + +\usefolder{themes} +\usefonttheme{TACC16} +\useinnertheme{TACC16} +\useoutertheme{TACC16-169} +\usecolortheme{TACC16} + +\mode + + +\newcommand{\event}[1]{% + \makeatletter% + \def\TACC@eventname{#1}% + \makeatother} + +\newcommand{\sectionframe}[1]{\section{#1}\frame{\Large\textbf{#1}}} +\newcommand{\subsectionframe}[1]{\subsection{#1}\frame{\large\textbf{#1}}} diff --git a/my_docs/22/lmod_zoom_mtg_2022_03_01/themes/beamerthemeTACC16.sty b/my_docs/22/lmod_zoom_mtg_2022_03_01/themes/beamerthemeTACC16.sty new file mode 100644 index 000000000..750bdd388 --- /dev/null +++ b/my_docs/22/lmod_zoom_mtg_2022_03_01/themes/beamerthemeTACC16.sty @@ -0,0 +1,26 @@ +%% TACC theme for beamer + +\newif\ifTACCheadernav +\DeclareOption{headernav}{\global\TACCheadernavtrue} + +\newif\ifTACCheadertree +\DeclareOption{headertree}{\global\TACCheadertreetrue} +\ProcessOptions + +\mode + +\usefonttheme{TACC16} +\useinnertheme{TACC16} +\useoutertheme{TACC16} +\usecolortheme{TACC16} + +\mode + + +\newcommand{\event}[1]{% + \makeatletter% + \def\TACC@eventname{#1}% + \makeatother} + +\newcommand{\sectionframe}[1]{\section{#1}\frame{\Large\textbf{#1}}} +\newcommand{\subsectionframe}[1]{\subsection{#1}\frame{\large\textbf{#1}}} diff --git a/my_docs/22/lmod_zoom_mtg_2022_03_01/themes/example.pdf b/my_docs/22/lmod_zoom_mtg_2022_03_01/themes/example.pdf new file mode 100644 index 000000000..add373eee Binary files /dev/null and b/my_docs/22/lmod_zoom_mtg_2022_03_01/themes/example.pdf differ diff --git a/my_docs/22/lmod_zoom_mtg_2022_03_01/themes/license.tex b/my_docs/22/lmod_zoom_mtg_2022_03_01/themes/license.tex new file mode 100644 index 000000000..74ff86759 --- /dev/null +++ b/my_docs/22/lmod_zoom_mtg_2022_03_01/themes/license.tex @@ -0,0 +1,14 @@ + +\begin{frame}{License} +\footnotesize +\textcopyright The University of Texas at Austin, \the\year\\ +\vspace{0.5 cm} +This work is licensed under the Creative Commons Attribution Non-Commercial 3.0 Unported License. To view a copy of this license, +visit http://creativecommons.org/licenses/by-nc/3.0/\\ +\vspace{0.5 cm} +When attributing this work, please use the following text: +"Designing and Administering Large-scale Systems", Texas Advanced Computing Center, \the\year. Available under a Creative Commons Attribution Non-Commercial 3.0 Unported License. +\newline +\newline +\includegraphics[width=1cm]{./figures/cc.png} +\end{frame} \ No newline at end of file diff --git a/my_docs/22/lmod_zoom_mtg_2022_04_19/Lmod-4color@2x.png b/my_docs/22/lmod_zoom_mtg_2022_04_19/Lmod-4color@2x.png deleted file mode 120000 index 47d505dbf..000000000 --- a/my_docs/22/lmod_zoom_mtg_2022_04_19/Lmod-4color@2x.png +++ /dev/null @@ -1 +0,0 @@ -../../beamer/Lmod-4color@2x.png \ No newline at end of file diff --git a/my_docs/22/lmod_zoom_mtg_2022_04_19/Lmod-4color@2x.png b/my_docs/22/lmod_zoom_mtg_2022_04_19/Lmod-4color@2x.png new file mode 100644 index 000000000..4810d74c3 Binary files /dev/null and b/my_docs/22/lmod_zoom_mtg_2022_04_19/Lmod-4color@2x.png differ diff --git a/my_docs/22/lmod_zoom_mtg_2022_04_19/beamercolorthemeTACC.sty b/my_docs/22/lmod_zoom_mtg_2022_04_19/beamercolorthemeTACC.sty deleted file mode 120000 index 8d27e673a..000000000 --- a/my_docs/22/lmod_zoom_mtg_2022_04_19/beamercolorthemeTACC.sty +++ /dev/null @@ -1 +0,0 @@ -../../beamer/beamercolorthemeTACC.sty \ No newline at end of file diff --git a/my_docs/22/lmod_zoom_mtg_2022_04_19/beamercolorthemeTACC.sty b/my_docs/22/lmod_zoom_mtg_2022_04_19/beamercolorthemeTACC.sty new file mode 100755 index 000000000..78beb6a4a --- /dev/null +++ b/my_docs/22/lmod_zoom_mtg_2022_04_19/beamercolorthemeTACC.sty @@ -0,0 +1,323 @@ +% Copyright 2003 by Till Tantau . +% +% This program can be redistributed and/or modified under the terms +% of the GNU Public License, version 2. + +\mode + +% I downloaded a gimp color palette from +% http://maururu.net/2007/latex-beamer-color-palette/ +% Which provides rgb values (I think) for several of the +% default beamer themes. You can open this in gimp by +% opening the Palettes dialog, right-clicking anywhere and choosing +% 'Import Palette'. A color in there called 'default added blue' +% appeared to be approximately what I wanted. It had the triple +% of values 141 145 208. If you double-click on this in the +% palette editor it gives you a bunch of information. You can't +% use these values directly to set a color...it just comes out white. +% I think definecolor is expecting something normalized by 255. Yes! + + +% bluish colors +\definecolor{defaddedblue}{rgb}{0.5529,.5686,.8157} % 141,145,208 +\definecolor{defblockheader}{rgb}{.1921,.2235,.6824} % 49,57,174 +\definecolor{flyaddedblue}{rgb}{.5961,.6118,.8431} % 152,156,215 + +% bluish-greys +\definecolor{beetleaddedblue1}{rgb}{.3333,.4039,.6196} % 85 103 158, dark +\definecolor{beetleaddedblue2}{rgb}{.4510,.5098,.7020} % 115 130 179, medium +\definecolor{beetleaddedblue3}{rgb}{.7059,.7255,.7961} % 180 185 203, light (greyest) + +% very light blue-greys +\definecolor{deflightouter1}{rgb}{.7608,.7647,.9020} % 194 195 230, dark +\definecolor{deflightouter2}{rgb}{.8 ,.8039,.9176} % 204 205 234, medium +\definecolor{deflightouter3}{rgb}{.8392,.8431,.9373} % 214 215 239, light + +% reddish colors +\definecolor{flyalertblockheader}{rgb}{.7373,.1294,.1333} % 188 33 34 +\definecolor{flyaddedred}{rgb}{.8667,.5647,.5647}% 221 144 144 +\definecolor{beaverouterframe}{rgb}{.5529,.0980,.0980}% 141 25 25 + +% greens (green is used for 'examples' in beamer) +\definecolor{defexblock}{rgb}{.9098,.9333,.9020} % 232 238 230, light +\definecolor{defaddedgreen}{rgb}{.5412,.6510,.4706} % 138 166 120, medium +\definecolor{defexblockheader}{rgb}{.1686,.3647,.0392} % 43 93 10, dark + +\definecolor{lightexblock}{rgb}{.9137,.9451,.9020} % 233 241 230, light +\definecolor{lightexblockheader}{rgb}{.8235,.8980,.8} % 210 229 204, medium +\definecolor{lightexblockheadertext}{rgb}{.2431,.5098,.0745} % 62 130 19, dark + + +%%% +% Set the normal text color +%%% +\setbeamercolor{normal text}{fg=black,bg=white} + +%%% +% Set the alerted text color +%%% +% \setbeamercolor{alerted text}{fg=red} +\setbeamercolor{alerted text}{fg=red!50!black} % half black/half red for green bg +% \setbeamercolor{alerted text}{fg=beaverouterframe} +% \setbeamercolor{alerted text}{fg=defblockheader} % doesn't stand out enough + + +% Set the 'example' text +\setbeamercolor{example text}{fg=green!50!black} + +\setbeamercolor{structure}{fg=black} + +\setbeamercolor{background canvas}{parent=normal text} +\setbeamercolor{background}{parent=background canvas} + +\setbeamercolor{palette primary}{use=structure,fg=structure.fg} +\setbeamercolor{palette secondary}{use=structure,fg=structure.fg!75!black} +\setbeamercolor{palette tertiary}{use=structure,fg=structure.fg!50!black} +\setbeamercolor{palette quaternary}{fg=black} + +\setbeamercolor{palette sidebar primary}{use=normal text,fg=normal text.fg} +\setbeamercolor{palette sidebar secondary}{use=structure,fg=structure.fg} +\setbeamercolor{palette sidebar tertiary}{use=normal text,fg=normal text.fg} +\setbeamercolor{palette sidebar quaternary}{use=structure,fg=structure.fg} + +\setbeamercolor{math text}{} +\setbeamercolor{math text inlined}{parent=math text} +\setbeamercolor{math text displayed}{parent=math text} + +\setbeamercolor{normal text in math text}{} + +\setbeamercolor{local structure}{parent=structure} + +\setbeamercolor{titlelike}{parent=structure} + +\setbeamercolor{title}{parent=titlelike} +\setbeamercolor{title in head/foot}{parent=palette quaternary} +\setbeamercolor{title in sidebar}{parent=palette sidebar quaternary} + +\setbeamercolor{subtitle}{parent=title} + +\setbeamercolor{author}{} +\setbeamercolor{author in head/foot}{parent=palette primary} +\setbeamercolor{author in sidebar}{use=palette sidebar tertiary,fg=palette sidebar tertiary.fg} + +\setbeamercolor{institute}{} +\setbeamercolor{institute in head/foot}{parent=palette tertiary} +\setbeamercolor{institute in sidebar}{use=palette sidebar tertiary,fg=palette sidebar tertiary.fg} + +\setbeamercolor{date}{} +\setbeamercolor{date in head/foot}{parent=palette secondary} +\setbeamercolor{date in sidebar}{use=palette sidebar tertiary,fg=palette sidebar tertiary.fg} + +\setbeamercolor{titlegraphic}{} + +\setbeamercolor{part name}{} +\setbeamercolor{part title}{parent=titlelike} + +\setbeamercolor{section in toc}{parent=structure} +\setbeamercolor{section in toc shaded}{parent=section in toc} +\setbeamercolor{section in head/foot}{parent=palette tertiary} +\setbeamercolor{section in sidebar}{parent=palette sidebar secondary} +\setbeamercolor{section in sidebar shaded}{use=section in sidebar,fg=section in sidebar.fg!40!bg} +\setbeamercolor{section number projected}{parent=item projected} + +\setbeamercolor{subsection in toc}{} +\setbeamercolor{subsection in toc shaded}{parent=subsection in toc} +\setbeamercolor{subsection in head/foot}{parent=palette secondary} +\setbeamercolor{subsection in sidebar}{parent=palette sidebar primary} +\setbeamercolor{subsection in sidebar shaded}{use=subsection in sidebar,fg=subsection in sidebar.fg!40!bg} +\setbeamercolor{subsection number projected}{parent={subitem projected}} + +\setbeamercolor{subsubsection in toc}{parent=subsection in toc} +\setbeamercolor{subsubsection in toc shaded}{parent=subsubsection in toc} +\setbeamercolor{subsubsection in head/foot}{parent=subsection in head/foot} +\setbeamercolor{subsubsection in sidebar}{parent=subsection in sidebar} +\setbeamercolor{subsubsection in sidebar shaded}{parent=subsection in sidebar shaded} +\setbeamercolor{subsubsection number projected}{parent=subsubitem projected} + +\setbeamercolor{headline}{} +\setbeamercolor{footline}{} + +\setbeamercolor{sidebar}{} +\setbeamercolor{sidebar left}{parent=sidebar} +\setbeamercolor{sidebar right}{parent=sidebar} + +\setbeamercolor{logo}{parent=palette secondary} + +\setbeamercolor{frametitle}{parent=titlelike} +\setbeamercolor{framesubtitle}{parent=frametitle} + +\setbeamercolor{frametitle right}{parent=frametitle} + +\setbeamercolor{caption}{} +\setbeamercolor{caption name}{parent=structure} + +\setbeamercolor{button}{use=local structure,bg=local structure.fg!50!bg,fg=white} +\setbeamercolor{button border}{use=button,fg=button.bg} +\setbeamercolor{navigation symbols}{use=structure,fg=structure.fg!40!bg} +\setbeamercolor{navigation symbols dimmed}{use=structure,fg=structure.fg!20!bg} +\setbeamercolor{mini frame}{parent=section in head/foot} + +% Color expressions are defined in the xcolor package +% +% Ex: Mixture of 40% green, 60% yellow: green!40!yellow +% +% The complement of any color can be obtained by prepending +% a minus sign: -green!40!yellow +% +% One can also combine up to three colors (in differing proportions) +% using the rgb command. For example, the following command combines +% 3 parts of the first color, with 2 parts of the second, and one part +% "red" +% +%\color{rgb:-green!40!yellow,3;green!40!yellow,2;red,1} +% Unfortunately, I don't think this works as an argument to setbeamercolor... +% "Orange" bg=green!30!yellow!30!red +% close to burnt orange: red!75!green +% lightgray is a color, but gray!25!white looks better +% +% A nice pair of greens +% (dark, a little too dark to be under black text...) -red!75!green!50!blue!25 +% (light) -red!75!green!50!blue!25!gray +% +% Some colors are only available via options to the xcolor package, eg. +% x11names,DarkOliveGreen4 +% svgnames, Chartreuse +% dvipsnames, ForestGreen +% +% but beamer does not seem to have any of these. +% +% The base color names which are always available are: +% black +% blue +% brown +% cyan +% darkgray +% gray +% green +% lightgray +% lime +% magenta +% olive +% orange +% pink +% purple +% red +% teal +% violet +% white +% yellow + +% From the beamer user guide, pg. 167 +% Inner color themes only specify the colors of elements used in inner +% themes. Most noticably, they specify the colors used for blocks. +% ... + +% Example color definition +% beamercolorthemedefault.sty:\definecolor{beamer@blendedblue}{rgb}{0.2,0.2,0.7} +% beamercolorthemedefault.sty:\setbeamercolor{structure}{fg=beamer@blendedblue} + +% The greens +% \setbeamercolor{block body}{bg=-red!75!green!50!blue!25!gray} +% \setbeamercolor{block title}{parent=structure,bg=-red!75!green!50!blue!25,fg=-red!75!green!50!blue!25!gray} + +%%% +% Set the block body and title background/foreground colors +%%% +% \setbeamercolor{block body}{bg=flyaddedblue} +% \setbeamercolor{block title}{bg=defblockheader,fg=flyaddedblue} + +% Purplish blues, too dark overall +% \setbeamercolor{block body}{bg=beetleaddedblue3} +% \setbeamercolor{block title}{bg=beetleaddedblue2,fg=beetleaddedblue3} + +% Very light blue greys +% 1. Not enough contrast +% \setbeamercolor{block body}{bg=deflightouter3} +% \setbeamercolor{block title}{bg=deflightouter2,fg=deflightouter3} + +% 2. Not enough contrast +% \setbeamercolor{block body}{bg=deflightouter3} +% \setbeamercolor{block title}{bg=deflightouter1,fg=deflightouter3} + +% 3. Combination of deflightouter and fly. The block bg is +% lighter than the all-beetle color scheme I previously thought was best. +% Currently I like this one the best +\setbeamercolor{block body}{bg=deflightouter3} +\setbeamercolor{block title}{bg=beetleaddedblue2,fg=deflightouter3} + +% 4. Greens. Looks like a highlighter. I don't really trust greens +% on projectors... It's almost too bright/hurts your eyes. +% \setbeamercolor{block body}{bg=defexblock} +% \setbeamercolor{block title}{bg=defaddedgreen,fg=defexblock} + +% This looks pretty good ... it's similar to the greens we had before +% but should be lighter. The blocks are just a little too "mint" colored +% though... +% \setbeamercolor{block body}{bg=defexblock} +% \setbeamercolor{block title}{bg=defexblockheader,fg=defexblock} + +% Pea Soup! +%\setbeamercolor{block body}{bg=defaddedgreen} +%\setbeamercolor{block title}{bg=defexblockheader,fg=defaddedgreen} + + +% Changing these didn't seem to do anything...I had to change the +% 'alerted text' color instead +\setbeamercolor{block body alerted}{} +\setbeamercolor{block body example}{} +\setbeamercolor{block title alerted}{parent=alerted text} +\setbeamercolor{block title example}{parent=example text} + +\setbeamercolor{item}{parent=local structure} +\setbeamercolor{subitem}{parent=item} +\setbeamercolor{subsubitem}{parent=subitem} + +\setbeamercolor{item projected}{parent=item,use=item,fg=white,bg=item.fg} +\setbeamercolor{subitem projected}{parent=item projected} +\setbeamercolor{subsubitem projected}{parent=subitem projected} + +\setbeamercolor{enumerate item}{parent=item} +\setbeamercolor{enumerate subitem}{parent=subitem} +\setbeamercolor{enumerate subsubitem}{parent=subsubitem} + +\setbeamercolor{itemize item}{parent=item} +\setbeamercolor{itemize subitem}{parent=subitem} +\setbeamercolor{itemize subsubitem}{parent=subsubitem} + +\setbeamercolor{itemize/enumerate body}{} +\setbeamercolor{itemize/enumerate subbody}{} +\setbeamercolor{itemize/enumerate subsubbody}{} + +\setbeamercolor{description item}{parent=item} + +\setbeamercolor{bibliography item}{parent=item} + +\setbeamercolor{bibliography entry author}{use=structure,fg=structure.fg} +\setbeamercolor{bibliography entry title}{use=normal text,fg=normal text.fg} +\setbeamercolor{bibliography entry location}{use=structure,fg=structure.fg!65!bg} +\setbeamercolor{bibliography entry note}{use=structure,fg=structure.fg!65!bg} + +\setbeamercolor{separation line}{} + +\setbeamercolor{upper separation line head}{parent=separation line} +\setbeamercolor{middle separation line head}{parent=separation line} +\setbeamercolor{lower separation line head}{parent=separation line} + +\setbeamercolor{upper separation line foot}{parent=separation line} +\setbeamercolor{middle separation line foot}{parent=separation line} +\setbeamercolor{lower separation line foot}{parent=separation line} + +\setbeamercolor{abstract}{} +\setbeamercolor{abstract title}{parent=structure} + +\setbeamercolor{verse}{} + +\setbeamercolor{quotation}{} +\setbeamercolor{quote}{parent=quotation} + +\setbeamercolor{page number in head/foot}{fg=fg!50!bg} + +\setbeamercolor{qed symbol}{parent=structure} + +\mode + diff --git a/my_docs/22/lmod_zoom_mtg_2022_04_19/beamercolorthemeTACC16.sty b/my_docs/22/lmod_zoom_mtg_2022_04_19/beamercolorthemeTACC16.sty deleted file mode 120000 index 58415801b..000000000 --- a/my_docs/22/lmod_zoom_mtg_2022_04_19/beamercolorthemeTACC16.sty +++ /dev/null @@ -1 +0,0 @@ -../../beamer/beamercolorthemeTACC16.sty \ No newline at end of file diff --git a/my_docs/22/lmod_zoom_mtg_2022_04_19/beamercolorthemeTACC16.sty b/my_docs/22/lmod_zoom_mtg_2022_04_19/beamercolorthemeTACC16.sty new file mode 100755 index 000000000..779dde91f --- /dev/null +++ b/my_docs/22/lmod_zoom_mtg_2022_04_19/beamercolorthemeTACC16.sty @@ -0,0 +1,192 @@ +% Copyright 2003 by Till Tantau . +% +% This program can be redistributed and/or modified under the terms +% of the GNU Public License, version 2. + +\mode + +\usepackage{textcase,regexpatch} + +\setbeamertemplate{blocks}[rounded][shadow=true] + + +\definecolor{TACCred}{RGB}{180,13,29} +\definecolor{TACCorange}{RGB}{210,104,43} +\definecolor{TACCblue}{RGB}{108, 134, 191} +\definecolor{TACCgreen}{RGB}{23,106,70} + +% I downloaded a gimp color palette from +% http://maururu.net/2007/latex-beamer-color-palette/ +% Which provides rgb values (I think) for several of the +% default beamer themes. You can open this in gimp by +% opening the Palettes dialog, right-clicking anywhere and choosing +% 'Import Palette'. A color in there called 'default added blue' +% appeared to be approximately what I wanted. It had the triple +% of values 141 145 208. If you double-click on this in the +% palette editor it gives you a bunch of information. You can't +% use these values directly to set a color...it just comes out white. +% I think definecolor is expecting something normalized by 255. Yes! + + +%%% +% Set the normal text color +%%% +\setbeamercolor{normal text}{fg=black} %,bg=white} +\setbeamercolor{example text}{fg=TACCgreen} +\setbeamercolor{alerted text}{fg=TACCorange} + + +\setbeamercolor{structure}{fg=black} +%\setbeamercolor{structure}{fg=black} + +\setbeamercolor{background canvas}{parent=normal text} +\setbeamercolor{background}{parent=background canvas} + +\setbeamercolor{palette primary}{use=structure,fg=structure.fg} +\setbeamercolor{palette secondary}{use=structure,fg=structure.fg!75!black} +\setbeamercolor{palette tertiary}{use=structure,fg=structure.fg!50!black} +\setbeamercolor{palette quaternary}{fg=black} + +\setbeamercolor{palette sidebar primary}{use=normal text,fg=normal text.fg} +\setbeamercolor{palette sidebar secondary}{use=structure,fg=structure.fg} +\setbeamercolor{palette sidebar tertiary}{use=normal text,fg=normal text.fg} +\setbeamercolor{palette sidebar quaternary}{use=structure,fg=structure.fg} + +\setbeamercolor{math text}{} +\setbeamercolor{math text inlined}{parent=math text} +\setbeamercolor{math text displayed}{parent=math text} + +\setbeamercolor{normal text in math text}{} + +\setbeamercolor{local structure}{parent=structure} + +\setbeamercolor{titlelike}{parent=structure} + +\setbeamercolor{title}{parent=titlelike} +\setbeamercolor{title in head/foot}{parent=palette quaternary} +\setbeamercolor{title in sidebar}{parent=palette sidebar quaternary} + +\setbeamercolor{subtitle}{parent=title} + +\setbeamercolor{author}{} +\setbeamercolor{author in head/foot}{parent=palette primary} +\setbeamercolor{author in sidebar}{use=palette sidebar tertiary,fg=palette sidebar tertiary.fg} + +\setbeamercolor{institute}{} +\setbeamercolor{institute in head/foot}{parent=palette tertiary} +\setbeamercolor{institute in sidebar}{use=palette sidebar tertiary,fg=palette sidebar tertiary.fg} + +\setbeamercolor{date}{} +\setbeamercolor{date in head/foot}{parent=palette secondary} +\setbeamercolor{date in sidebar}{use=palette sidebar tertiary,fg=palette sidebar tertiary.fg} + +\setbeamercolor{titlegraphic}{} + +\setbeamercolor{part name}{} +\setbeamercolor{part title}{parent=titlelike} + +\setbeamercolor{section in toc}{parent=structure} +\setbeamercolor{section in toc shaded}{parent=section in toc} +\setbeamercolor{section in head/foot}{parent=palette tertiary} +\setbeamercolor{section in sidebar}{parent=palette sidebar secondary} +\setbeamercolor{section in sidebar shaded}{use=section in sidebar,fg=section in sidebar.fg!40!bg} +\setbeamercolor{section number projected}{parent=item projected} + +\setbeamercolor{subsection in toc}{} +\setbeamercolor{subsection in toc shaded}{parent=subsection in toc} +\setbeamercolor{subsection in head/foot}{parent=palette secondary} +\setbeamercolor{subsection in sidebar}{parent=palette sidebar primary} +\setbeamercolor{subsection in sidebar shaded}{use=subsection in sidebar,fg=subsection in sidebar.fg!40!bg} +\setbeamercolor{subsection number projected}{parent={subitem projected}} + +\setbeamercolor{subsubsection in toc}{parent=subsection in toc} +\setbeamercolor{subsubsection in toc shaded}{parent=subsubsection in toc} +\setbeamercolor{subsubsection in head/foot}{parent=subsection in head/foot} +\setbeamercolor{subsubsection in sidebar}{parent=subsection in sidebar} +\setbeamercolor{subsubsection in sidebar shaded}{parent=subsection in sidebar shaded} +\setbeamercolor{subsubsection number projected}{parent=subsubitem projected} + +\setbeamercolor{headline}{} +\setbeamercolor{footline}{} + +\setbeamercolor{sidebar}{} +\setbeamercolor{sidebar left}{parent=sidebar} +\setbeamercolor{sidebar right}{parent=sidebar} + +\setbeamercolor{logo}{parent=palette secondary} + +\setbeamercolor{frametitle}{parent=titlelike} +\setbeamercolor{framesubtitle}{parent=frametitle} + +\setbeamercolor{frametitle right}{parent=frametitle} + +\setbeamercolor{caption}{} +\setbeamercolor{caption name}{parent=structure} + +\setbeamercolor{button}{use=local structure,bg=local structure.fg!50!bg,fg=white} +\setbeamercolor{button border}{use=button,fg=button.bg} +\setbeamercolor{navigation symbols}{use=structure,fg=structure.fg!40!bg} +\setbeamercolor{navigation symbols dimmed}{use=structure,fg=structure.fg!20!bg} +\setbeamercolor{mini frame}{parent=section in head/foot} + +\setbeamercolor{block body}{fg=black} +\setbeamercolor{block body alerted}{fg=black} +\setbeamercolor{block body example}{fg=black} + +\setbeamercolor{block title}{bg=TACCblue,fg=white} +\setbeamercolor{block title alerted}{bg=TACCred,fg=white} +\setbeamercolor{block title example}{bg=TACCgreen,fg=white} + +\setbeamercolor{item}{parent=local structure} +\setbeamercolor{subitem}{parent=item} +\setbeamercolor{subsubitem}{parent=subitem} + +\setbeamercolor{item projected}{parent=item,use=item,fg=black,bg=item.fg} +\setbeamercolor{subitem projected}{parent=item projected} +\setbeamercolor{subsubitem projected}{parent=subitem projected} + +\setbeamercolor{enumerate item}{parent=item} +\setbeamercolor{enumerate subitem}{parent=subitem} +\setbeamercolor{enumerate subsubitem}{parent=subsubitem} + +\setbeamercolor{itemize item}{parent=item} +\setbeamercolor{itemize subitem}{parent=subitem} +\setbeamercolor{itemize subsubitem}{parent=subsubitem} + +\setbeamercolor{itemize/enumerate body}{} +\setbeamercolor{itemize/enumerate subbody}{} +\setbeamercolor{itemize/enumerate subsubbody}{} + +\setbeamercolor{description item}{parent=item} + +\setbeamercolor{bibliography item}{parent=item} + +\setbeamercolor{bibliography entry author}{use=structure,fg=structure.fg} +\setbeamercolor{bibliography entry title}{use=normal text,fg=normal text.fg} +\setbeamercolor{bibliography entry location}{use=structure,fg=structure.fg!65!bg} +\setbeamercolor{bibliography entry note}{use=structure,fg=structure.fg!65!bg} + +\setbeamercolor{separation line}{} + +\setbeamercolor{upper separation line head}{parent=separation line} +\setbeamercolor{middle separation line head}{parent=separation line} +\setbeamercolor{lower separation line head}{parent=separation line} + +\setbeamercolor{upper separation line foot}{parent=separation line} +\setbeamercolor{middle separation line foot}{parent=separation line} +\setbeamercolor{lower separation line foot}{parent=separation line} + +\setbeamercolor{abstract}{} +\setbeamercolor{abstract title}{parent=structure} + +\setbeamercolor{verse}{} + +\setbeamercolor{quotation}{} +\setbeamercolor{quote}{parent=quotation} + +\setbeamercolor{page number in head/foot}{fg=fg!50!bg} + +\setbeamercolor{qed symbol}{parent=structure} + +\mode + diff --git a/my_docs/22/lmod_zoom_mtg_2022_04_19/beamerfontthemeTACC.sty b/my_docs/22/lmod_zoom_mtg_2022_04_19/beamerfontthemeTACC.sty deleted file mode 120000 index 78e971fb8..000000000 --- a/my_docs/22/lmod_zoom_mtg_2022_04_19/beamerfontthemeTACC.sty +++ /dev/null @@ -1 +0,0 @@ -../../beamer/beamerfontthemeTACC.sty \ No newline at end of file diff --git a/my_docs/22/lmod_zoom_mtg_2022_04_19/beamerfontthemeTACC.sty b/my_docs/22/lmod_zoom_mtg_2022_04_19/beamerfontthemeTACC.sty new file mode 100755 index 000000000..ef9ce1e5e --- /dev/null +++ b/my_docs/22/lmod_zoom_mtg_2022_04_19/beamerfontthemeTACC.sty @@ -0,0 +1,12 @@ +% Copyright 2003 by Till Tantau +% +% This program can be redistributed and/or modified under the terms +% of the GNU Public License, version 2. + +\mode + +\setbeamerfont{frametitle}{parent=structure,size=\LARGE,series=\bfseries} +\setbeamerfont{framesubtitle}{parent=frametitle,size=\small} + +\mode + \ No newline at end of file diff --git a/my_docs/22/lmod_zoom_mtg_2022_04_19/beamerfontthemeTACC16.sty b/my_docs/22/lmod_zoom_mtg_2022_04_19/beamerfontthemeTACC16.sty deleted file mode 120000 index a1f2fa5f9..000000000 --- a/my_docs/22/lmod_zoom_mtg_2022_04_19/beamerfontthemeTACC16.sty +++ /dev/null @@ -1 +0,0 @@ -../../beamer/beamerfontthemeTACC16.sty \ No newline at end of file diff --git a/my_docs/22/lmod_zoom_mtg_2022_04_19/beamerfontthemeTACC16.sty b/my_docs/22/lmod_zoom_mtg_2022_04_19/beamerfontthemeTACC16.sty new file mode 100755 index 000000000..b65271835 --- /dev/null +++ b/my_docs/22/lmod_zoom_mtg_2022_04_19/beamerfontthemeTACC16.sty @@ -0,0 +1,21 @@ +% Copyright 2003 by Till Tantau +% +% This program can be redistributed and/or modified under the terms +% of the GNU Public License, version 2. + +\mode +\setbeamerfont{title}{parent=structure,size=\LARGE,series=\bfseries} +\setbeamerfont{author}{parent=structure,size=\large, series=\normalfont} +\setbeamerfont{frametitle}{parent=structure,size=\LARGE,series=\bfseries} +\setbeamerfont{framesubtitle}{parent=frametitle,size=\small} + +%\usefonttheme{professionalfonts} % using non standard fonts for beamer +%\usefonttheme{serif} % default family is serif +%\usepackage{fontspec} +%\setmainfont{Century Gothic} + +\usepackage{fontspec} +\usepackage{libertine} + +\mode + diff --git a/my_docs/22/lmod_zoom_mtg_2022_04_19/beamerinnerthemeTACC.sty b/my_docs/22/lmod_zoom_mtg_2022_04_19/beamerinnerthemeTACC.sty deleted file mode 120000 index 8d5ae3921..000000000 --- a/my_docs/22/lmod_zoom_mtg_2022_04_19/beamerinnerthemeTACC.sty +++ /dev/null @@ -1 +0,0 @@ -../../beamer/beamerinnerthemeTACC.sty \ No newline at end of file diff --git a/my_docs/22/lmod_zoom_mtg_2022_04_19/beamerinnerthemeTACC.sty b/my_docs/22/lmod_zoom_mtg_2022_04_19/beamerinnerthemeTACC.sty new file mode 100755 index 000000000..29e2bce81 --- /dev/null +++ b/my_docs/22/lmod_zoom_mtg_2022_04_19/beamerinnerthemeTACC.sty @@ -0,0 +1,11 @@ +\mode + +\setbeamertemplate{itemize item}[circle] +\setbeamertemplate{itemize subitem}{{}--{}} +\setbeamertemplate{itemize subsubitem}[circle] +\setbeamertemplate{section in toc}{$\bullet$\hskip.5em\inserttocsection} +%\setbeamertemplate{subsection in toc}{} +\setbeamertemplate{subsubsection in toc}{} + +\mode + diff --git a/my_docs/22/lmod_zoom_mtg_2022_04_19/beamerinnerthemeTACC16.sty b/my_docs/22/lmod_zoom_mtg_2022_04_19/beamerinnerthemeTACC16.sty deleted file mode 120000 index 5955acc99..000000000 --- a/my_docs/22/lmod_zoom_mtg_2022_04_19/beamerinnerthemeTACC16.sty +++ /dev/null @@ -1 +0,0 @@ -../../beamer/beamerinnerthemeTACC16.sty \ No newline at end of file diff --git a/my_docs/22/lmod_zoom_mtg_2022_04_19/beamerinnerthemeTACC16.sty b/my_docs/22/lmod_zoom_mtg_2022_04_19/beamerinnerthemeTACC16.sty new file mode 100755 index 000000000..f7f454e1d --- /dev/null +++ b/my_docs/22/lmod_zoom_mtg_2022_04_19/beamerinnerthemeTACC16.sty @@ -0,0 +1,11 @@ +\mode + +\setbeamertemplate{itemize item}[triangle] +\setbeamertemplate{itemize subitem}[triangle] +\setbeamertemplate{itemize subsubitem}[triangle] +\setbeamertemplate{section in toc}{$\bullet$\hskip.5em\inserttocsection} +%\setbeamertemplate{subsection in toc}{} +\setbeamertemplate{subsubsection in toc}{} + +\mode + diff --git a/my_docs/22/lmod_zoom_mtg_2022_04_19/beamerouterthemeTACC.sty b/my_docs/22/lmod_zoom_mtg_2022_04_19/beamerouterthemeTACC.sty deleted file mode 120000 index da0a45d33..000000000 --- a/my_docs/22/lmod_zoom_mtg_2022_04_19/beamerouterthemeTACC.sty +++ /dev/null @@ -1 +0,0 @@ -../../beamer/beamerouterthemeTACC.sty \ No newline at end of file diff --git a/my_docs/22/lmod_zoom_mtg_2022_04_19/beamerouterthemeTACC.sty b/my_docs/22/lmod_zoom_mtg_2022_04_19/beamerouterthemeTACC.sty new file mode 100755 index 000000000..038580303 --- /dev/null +++ b/my_docs/22/lmod_zoom_mtg_2022_04_19/beamerouterthemeTACC.sty @@ -0,0 +1,196 @@ +% Copyright 2003 by Till Tantau +% +% This program can be redistributed and/or modified under the terms +% of the GNU Public License, version 2. + +\mode + +\setbeamertemplate{frametitle}[default][center] +\addtobeamertemplate{frametitle}{\vskip 4ex minus 4ex}{} + +% Here we define what appears at the bottom of each slide: the "footline". +\setbeamertemplate{footline}{% + \leavevmode% + + % Horizontal line dividing the rest of the slide from the footer? + % hrule goes all the way across... + % \hrule height.3pt% + % With \rule, you can specify the thickness + % \rule[raise-height]{width}{thickness} + \hspace{.025\textwidth}\rule{.95\textwidth}{.5pt} + + \hbox{% + % On the left half of the footer, insert the TACC logo + \begin{minipage}{.5\textwidth}% + \hskip .033\textwidth%Give horizontal space else this will set on the left edge of the slide! + % TACC logo with custom viewport! + \includegraphics[viewport=1 -1 135 35, clip=true, width=.4\textwidth]{figures/TACC_logo} + \end{minipage} + % + \begin{minipage}{.5\textwidth}% + \vskip .023\textheight% + \raggedleft% + \setlength{\rightskip}{.033\textwidth} + % + % If we are not on the first page, insert a page number + % For some reason, insertframenumber is buggy when you have fragile + % slides with verbatim environments in them... it tends to skip numbers + % for some reason! On the other hand, the pagenumber is incremented + % for *every* slide, including transition slides... + \ifnum \thepage>1 + % \insertshorttitle + \insertframenumber + % \insertframenumber/\inserttotalframenumber + % \insertpagenumber + \else % Do a phantom of whatever you do on other pages, so spacing matches + %$\phantom{\insertshorttitle}$ + $\phantom{\insertframenumber}$ + %$\phantom{\insertframenumber/\inserttotalframenumber}$ + %$\phantom{\insertpagenumber}$ + \fi + \hfill\includegraphics[width=.5\textwidth]{figures/UT_logo}% + \end{minipage}% + }% + \vskip .023\textheight% +} + + + + +\ifTACCheadernav + +\usesectionheadtemplate +{\hfill\insertsectionhead} +{\hfill\color{fg!50!bg}\insertsectionhead} + +% Head +\ifbeamer@compress + +% Here we define how the top of the frame looks, the "headline". +\setbeamertemplate{headline} +{% + \ifnum \thepage>1 + \leavevmode% + \begin{beamercolorbox}[wd=.5\paperwidth,ht=2.5ex,dp=1.125ex]{% + section in head/foot}% + \insertsectionnavigationhorizontal{.5\paperwidth}{\hskip0pt plus1filll}{}% + \end{beamercolorbox}% + \begin{beamercolorbox}[wd=.5\paperwidth,ht=2.5ex,dp=1.125ex]{% + subsection in head/foot}% + \insertsubsectionnavigationhorizontal{% + .5\paperwidth}{}{\hskip0pt plus1filll}% + \end{beamercolorbox}% + \fi %\thepage>1 +} + +\else% Not compressed + +\setbeamertemplate{headline} +{% + \ifnum \thepage>1 + \leavevmode% + \@tempdimb=2.4375ex% + \ifnum\beamer@subsectionmax<\beamer@sectionmax% + \multiply\@tempdimb by\beamer@sectionmax% + \else% + \multiply\@tempdimb by\beamer@subsectionmax% + \fi% + \ifdim\@tempdimb>0pt% + \advance\@tempdimb by 1.125ex% + \begin{beamercolorbox}[wd=.5\paperwidth,ht=\@tempdimb]{% + section in head/foot}% + \vbox to\@tempdimb{\vfil\insertsectionnavigation{.5\paperwidth}\vfil}% + \end{beamercolorbox}% + \begin{beamercolorbox}[wd=.5\paperwidth,ht=\@tempdimb]{% + subsection in head/foot}% + \vbox to\@tempdimb{\vfil\insertsubsectionnavigation{.5\paperwidth}\vfil}% + \end{beamercolorbox}% + \fi% + \fi % \thepage>1 +} + +\fi % end if compressed +\fi % TACCheadernav + + +\ifTACCheadertree + +\setbeamertemplate{headline} +{ + \begin{beamercolorbox}[wd=\paperwidth,colsep=1.5pt + ]{upper separation line head} + \end{beamercolorbox} + % + % Place short title + % + \begin{beamercolorbox}[wd=\paperwidth,ht=2.5ex,dp=1.125ex,% + leftskip=.3cm,rightskip=.3cm plus1fil]{title in head/foot} + \usebeamerfont{title in head/foot}\insertshorttitle + \end{beamercolorbox} + + % + % Place section + % + \begin{beamercolorbox}[wd=\paperwidth,ht=2.5ex,dp=1.125ex,% + leftskip=.3cm,rightskip=.3cm plus1fil]{section in head/foot} + \usebeamerfont{section in head/foot}% + %\ifbeamer@tree@showhooks + \setbox\beamer@tempbox=\hbox{\insertsectionhead}% + \ifdim\wd\beamer@tempbox>1pt% + \hskip2pt\raise1.9pt\hbox{\vrule width0.4pt height1.875ex\vrule width 5pt height0.4pt}% + \hskip1pt% + \fi% \ifdim + %\else% + %\hskip6pt% + %\fi% \ifbeamer + \insertsectionhead + \end{beamercolorbox} + +% +% Place subsection +% +\begin{beamercolorbox}[wd=\paperwidth,ht=2.5ex,dp=1.125ex,% + leftskip=.3cm,rightskip=.3cm plus1fil]{subsection in head/foot} + \usebeamerfont{subsection in head/foot}% + %\ifbeamer@tree@showhooks + \setbox\beamer@tempbox=\hbox{\insertsubsectionhead}% + \ifdim\wd\beamer@tempbox>1pt% + \hskip9.4pt\raise1.9pt\hbox{\vrule width0.4pt height1.875ex\vrule width 5pt height0.4pt}% + \hskip1pt% + \fi% \ifdim + %\else% + %\hskip12pt% + %\fi% \ifbeamer + \insertsubsectionhead +\end{beamercolorbox} + +% +% Place final separation box +% + \begin{beamercolorbox}[wd=\paperwidth,colsep=1.5pt + ]{lower separation line head} + \end{beamercolorbox} + + % + % Another matching rule which helps to frame the content + % + \hspace{.025\textwidth}\rule{.95\textwidth}{.5pt} +} +\fi % TACCheadertree + + +% The following command suppresses all navigation symbols. This is +% necessary in the TACC theme, since it overlaps where we want the +% logo to be. +\setbeamertemplate{navigation symbols}{} + +% Align the navigation symbols vertically (still overlaps our logo!) +%\setbeamertemplate{navigation symbols}[vertical]{} + +% Only places the slide-forward and slide-back symbol, but yes, +% this still overlaps our logo! +%\setbeamertemplate{navigation symbols}[only frame symbol]{} + + +\mode + diff --git a/my_docs/22/lmod_zoom_mtg_2022_04_19/beamerouterthemeTACC16.sty b/my_docs/22/lmod_zoom_mtg_2022_04_19/beamerouterthemeTACC16.sty deleted file mode 120000 index 54bd09537..000000000 --- a/my_docs/22/lmod_zoom_mtg_2022_04_19/beamerouterthemeTACC16.sty +++ /dev/null @@ -1 +0,0 @@ -../../beamer/beamerouterthemeTACC16.sty \ No newline at end of file diff --git a/my_docs/22/lmod_zoom_mtg_2022_04_19/beamerouterthemeTACC16.sty b/my_docs/22/lmod_zoom_mtg_2022_04_19/beamerouterthemeTACC16.sty new file mode 100755 index 000000000..d5e6388c7 --- /dev/null +++ b/my_docs/22/lmod_zoom_mtg_2022_04_19/beamerouterthemeTACC16.sty @@ -0,0 +1,312 @@ +% Antonio Gomez (agomez@tacc.utexas.edu) +% 4-20-17. Added option to put the footer on the right side + + + +\mode + +\usepackage{xcolor} +\usepackage{graphicx} +\usepackage{etoolbox} + + + +% This theme accepts the "rightfooter" option +% When used, it will put the TACC logo at the bottom of the slide on the right side +% By default, it goes to the left + +\xifaspectratio{ + {169} { + \pgfdeclareimage[width=\paperwidth]{titlebackground}{./figures/master169.jpg} + \if@rightfooterOption + \pgfdeclareimage[width=\paperwidth]{background}{./figures/secondary_right169.jpg} +\else + \pgfdeclareimage[width=\paperwidth]{background}{./figures/secondary169.jpg} +\fi +} +}[ +\pgfdeclareimage[width=\paperwidth]{titlebackground}{./figures/master.jpg} + \if@rightfooterOption + \pgfdeclareimage[width=\paperwidth]{background}{./figures/secondary_right.jpg} +\else + \pgfdeclareimage[width=\paperwidth]{background}{./figures/secondary.jpg} +\fi +] + +\setbeamertemplate{background canvas}{% +\xifaspectratio{ + {169} { + \ifnum\c@framenumber=1 % + \begin{picture}(0,0) + \put(-3,-256){% + \pgfuseimage{titlebackground} + } + \end{picture} + \else% + \begin{picture}(0,0) + \put(-3,-260){% + \pgfuseimage{background} + } + \end{picture} + \fi + } + {43} { + \ifnum\c@framenumber=1 % + \begin{picture}(0,0) + \put(-4,-274){% + \pgfuseimage{titlebackground} + } + \end{picture} + \else% + \begin{picture}(0,0) + \put(-4,-274){% + \pgfuseimage{background} + } + \end{picture} + \fi + } +} +} + + + +%\setbeamertemplate{background canvas}{% +% % On title page +% \ifnum\c@framenumber=1 % +% \begin{picture}(0,0) +% \put(0,-253){% +% \pgfuseimage{titlebackground} +% } +% \end{picture} +% +% \else% +% \xifaspectratio{ +% {169} { +% % Other frames background +% \begin{picture}(0,0) +% \put(-4,-260){% +% \pgfuseimage{background} +% } +% \end{picture} +% } +% }[ +% % Other frames background +% \begin{picture}(0,0) +% \put(-4,-274){% +% \pgfuseimage{background} +% } +% \end{picture} +% ] +% \fi% +%} + + +\setbeamertemplate{title page}{ +\vspace{40pt} +\begin{center} +\usebeamerfont{title} {\huge \inserttitle}\par +\vspace{4ex} +\usebeamerfont{author} { + \insertauthor +}\par +\vspace{2ex} +\usebeamerfont{institute}{ + \insertinstitute +} \par +\vspace{2ex} +\usebeamerfont{date}{ + \insertdate +} +\end{center} +} + + +\setbeamertemplate{frametitle}[default][center] +\setbeamertemplate{frametitle}{ + \makeatletter + \regexpatchcmd{\insertframetitle} + {(\c{usebeamertemplate}.*)\c{fi}} + {\c{NoCaseChange}\cB\{\1\cE\}\c{fi}} + {}{}% + \makeatother + \vskip1ex + \insertframetitle +} + +% Here we define what appears at the bottom of each slide: the "footline". +\setbeamertemplate{footline}{% + \leavevmode% + + % Horizontal line dividing the rest of the slide from the footer? + % hrule goes all the way across... + % \hrule height.3pt% + % With \rule, you can specify the thickness + % \rule[raise-height]{width}{thickness} + % \hspace{.025\textwidth}\rule{.95\textwidth}{.5pt} + + \hbox{% + \ifnum \thepage>1 + \if@rightfooterOption + \begin{minipage}{.2\textwidth}% + \hskip .05\textwidth%Give horizontal space else this will set on the left edge of the slide! + \end{minipage} + \else + \begin{minipage}{.4\textwidth}% + \hskip .05\textwidth%Give horizontal space else this will set on the left edge of the slide! + \end{minipage} + \fi + + + \begin{minipage}{\textwidth}% + % \vskip .023\textheight% + \raggedleft% + \setlength{\rightskip}{\textwidth} + \if@rightfooterOption + \hbox{% + \begin{beamercolorbox}[wd=0.7\textwidth,ht=2.25ex,dp=1ex,left]{author in head/foot}% + \insertshorttitle{} \hskip .01\textwidth | \hskip .01\textwidth \insertdate{} \hskip .01\textwidth | \hskip .01\textwidth \insertframenumber{} + \end{beamercolorbox}% + } + \else + \hbox{% + \begin{beamercolorbox}[wd=0.5\textwidth,ht=2.25ex,dp=1ex,left]{author in head/foot}% + \insertshorttitle{} \hskip .01\textwidth | \hskip .01\textwidth \insertdate{} \hskip .01\textwidth | \hskip .01\textwidth \insertframenumber{} + \end{beamercolorbox}% + } + \fi + + \end{minipage}% + \begin{minipage}{.05\textwidth}% + \end{minipage}% + \fi %\thepage>1 + }% + \vskip .023\textheight% + +} + + + + +\ifTACCheadernav + +\usesectionheadtemplate +{\hfill\insertsectionhead} +{\hfill\color{fg!50!bg}\insertsectionhead} + +% Head +\ifbeamer@compress + +% Here we define how the top of the frame looks, the "headline". +\setbeamertemplate{headline} +{% + \ifnum \thepage>1 + \leavevmode% + \begin{beamercolorbox}[wd=.5\paperwidth,ht=2.5ex,dp=1.125ex]{% + section in head/foot}% + \insertsectionnavigationhorizontal{.5\paperwidth}{\hskip0pt plus1filll}{}% + \end{beamercolorbox}% + \begin{beamercolorbox}[wd=.5\paperwidth,ht=2.5ex,dp=1.125ex]{% + subsection in head/foot}% + \insertsubsectionnavigationhorizontal{% + .5\paperwidth}{}{\hskip0pt plus1filll}% + \end{beamercolorbox}% + \fi %\thepage>1 +} + +\else% Not compressed + +\setbeamertemplate{headline} +{% + \ifnum \thepage>1 + \leavevmode% + \@tempdimb=2.4375ex% + \ifnum\beamer@subsectionmax<\beamer@sectionmax% + \multiply\@tempdimb by\beamer@sectionmax% + \else% + \multiply\@tempdimb by\beamer@subsectionmax% + \fi% + \ifdim\@tempdimb>0pt% + \advance\@tempdimb by 1.125ex% + \begin{beamercolorbox}[wd=.5\paperwidth,ht=\@tempdimb]{% + section in head/foot}% + \vbox to\@tempdimb{\vfil\insertsectionnavigation{.5\paperwidth}\vfil}% + \end{beamercolorbox}% + \begin{beamercolorbox}[wd=.5\paperwidth,ht=\@tempdimb]{% + subsection in head/foot}% + \vbox to\@tempdimb{\vfil\insertsubsectionnavigation{.5\paperwidth}\vfil}% + \end{beamercolorbox}% + \fi% + \fi % \thepage>1 +} + +\fi % end if compressed +\fi % TACCheadernav + + +\ifTACCheadertree + +\setbeamertemplate{headline} +{ + \begin{beamercolorbox}[wd=\paperwidth,colsep=1.5pt]{upper separation line head} + \end{beamercolorbox} + % + % Place short title + % + \begin{beamercolorbox}[wd=\paperwidth,ht=2.5ex,dp=1.125ex,% + leftskip=.3cm,rightskip=.3cm plus1fil]{title in head/foot} + \usebeamerfont{title in head/foot}\insertshorttitle + \end{beamercolorbox} + + % + % Place section + % + \begin{beamercolorbox}[wd=\paperwidth,ht=2.5ex,dp=1.125ex,% + leftskip=.3cm,rightskip=.3cm plus1fil]{section in head/foot} + \usebeamerfont{section in head/foot}% + %\ifbeamer@tree@showhooks + \setbox\beamer@tempbox=\hbox{\insertsectionhead}% + \ifdim\wd\beamer@tempbox>1pt% + \hskip2pt\raise1.9pt\hbox{\vrule width0.4pt height1.875ex\vrule width 5pt height0.4pt}% + \hskip1pt% + \fi + \insertsectionhead + \end{beamercolorbox} + +% +% Place subsection +% +\begin{beamercolorbox}[wd=\paperwidth,ht=2.5ex,dp=1.125ex,% + leftskip=.3cm,rightskip=.3cm plus1fil]{subsection in head/foot} + \usebeamerfont{subsection in head/foot}% + %\ifbeamer@tree@showhooks + \setbox\beamer@tempbox=\hbox{\insertsubsectionhead}% + \ifdim\wd\beamer@tempbox>1pt% + \hskip9.4pt\raise1.9pt\hbox{\vrule width0.4pt height1.875ex\vrule width 5pt height0.4pt}% + \hskip1pt% + \fi + \insertsubsectionhead +\end{beamercolorbox} + +% +% Place final separation box +% + \begin{beamercolorbox}[wd=\paperwidth,colsep=1.5pt + ]{lower separation line head} + \end{beamercolorbox} + + % + % Another matching rule which helps to frame the content + % + \hspace{.025\textwidth}\rule{.95\textwidth}{.5pt} +} +\fi % TACCheadertree + + +% The following command suppresses all navigation symbols. This is +% necessary in the TACC theme, since it overlaps where we want the +% logo to be. +\setbeamertemplate{navigation symbols}{} + + +\mode + diff --git a/my_docs/22/lmod_zoom_mtg_2022_04_19/beamerthemeTACC.sty b/my_docs/22/lmod_zoom_mtg_2022_04_19/beamerthemeTACC.sty deleted file mode 120000 index 5c339abd4..000000000 --- a/my_docs/22/lmod_zoom_mtg_2022_04_19/beamerthemeTACC.sty +++ /dev/null @@ -1 +0,0 @@ -../../beamer/beamerthemeTACC.sty \ No newline at end of file diff --git a/my_docs/22/lmod_zoom_mtg_2022_04_19/beamerthemeTACC.sty b/my_docs/22/lmod_zoom_mtg_2022_04_19/beamerthemeTACC.sty new file mode 100755 index 000000000..c6a1b1269 --- /dev/null +++ b/my_docs/22/lmod_zoom_mtg_2022_04_19/beamerthemeTACC.sty @@ -0,0 +1,26 @@ +%% TACC theme for beamer + +\newif\ifTACCheadernav +\DeclareOption{headernav}{\global\TACCheadernavtrue} + +\newif\ifTACCheadertree +\DeclareOption{headertree}{\global\TACCheadertreetrue} +\ProcessOptions + +\mode + +\usefonttheme{TACC} +\usecolortheme{TACC} +\useinnertheme{TACC} +\useoutertheme{TACC} + +\mode + + +\newcommand{\event}[1]{% + \makeatletter% + \def\TACC@eventname{#1}% + \makeatother} + +\newcommand{\sectionframe}[1]{\section{#1}\frame{\Large\textbf{#1}}} +\newcommand{\subsectionframe}[1]{\subsection{#1}\frame{\large\textbf{#1}}} diff --git a/my_docs/22/lmod_zoom_mtg_2022_04_19/beamerthemeTACC16.sty b/my_docs/22/lmod_zoom_mtg_2022_04_19/beamerthemeTACC16.sty deleted file mode 120000 index 7a9d4d296..000000000 --- a/my_docs/22/lmod_zoom_mtg_2022_04_19/beamerthemeTACC16.sty +++ /dev/null @@ -1 +0,0 @@ -../../beamer/beamerthemeTACC16.sty \ No newline at end of file diff --git a/my_docs/22/lmod_zoom_mtg_2022_04_19/beamerthemeTACC16.sty b/my_docs/22/lmod_zoom_mtg_2022_04_19/beamerthemeTACC16.sty new file mode 100755 index 000000000..b522d0207 --- /dev/null +++ b/my_docs/22/lmod_zoom_mtg_2022_04_19/beamerthemeTACC16.sty @@ -0,0 +1,61 @@ +%% TACC theme for beamer + + +\newif\if@rightfooterOption +\@rightfooterOptionfalse +\DeclareOption{rightfooter}{\@rightfooterOptiontrue} +\ProcessOptions + + +\newif\ifTACCheadernav +\DeclareOption{headernav}{\global\TACCheadernavtrue} + +\newif\ifTACCheadertree +\DeclareOption{headertree}{\global\TACCheadertreetrue} +\ProcessOptions + +\usepackage{xparse} +\ExplSyntaxOn +\NewDocumentCommand{\ifaspectratio}{mmm} + { + % Recover the option from those passed to the class + \keys_set:nf { zunbeltz/beameroptions } { \use:c { opt@beamer.cls } } + \str_if_eq:nVTF { #1 } \l_zunbeltz_aspectratio_tl { #2 } { #3 } + } +\NewDocumentCommand{\xifaspectratio}{mO{}} + { + % Recover the option from those passed to the class + \keys_set:nf { zunbeltz/beameroptions } { \use:c { opt@beamer.cls } } + \str_case:VnF \l_zunbeltz_aspectratio_tl { #1 } { #2 } + } +% We need to define only one key, the other are treated as `unknown' +\keys_define:nn { zunbeltz/beameroptions } + { + aspectratio .tl_set:N = \l_zunbeltz_aspectratio_tl, + aspectratio .initial:n = 43, + unknown .code:n = {}, + } + +% Generate the variants we need +\cs_generate_variant:Nn \keys_set:nn { nf } +\cs_generate_variant:Nn \str_if_eq:nnTF { nV } +\cs_generate_variant:Nn \str_case:nnF { V } +\ExplSyntaxOff + +\mode + +\usefonttheme{TACC16} +\useinnertheme{TACC16} +\useoutertheme{TACC16} +\usecolortheme{TACC16} + +\mode + + +\newcommand{\event}[1]{% + \makeatletter% + \def\TACC@eventname{#1}% + \makeatother} + +\newcommand{\sectionframe}[1]{\section{#1}\frame{\Large\textbf{#1}}} +\newcommand{\subsectionframe}[1]{\subsection{#1}\frame{\large\textbf{#1}}} diff --git a/my_docs/22/lmod_zoom_mtg_2022_04_19/figures b/my_docs/22/lmod_zoom_mtg_2022_04_19/figures deleted file mode 120000 index ddafd8974..000000000 --- a/my_docs/22/lmod_zoom_mtg_2022_04_19/figures +++ /dev/null @@ -1 +0,0 @@ -../../beamer/figures \ No newline at end of file diff --git a/my_docs/22/lmod_zoom_mtg_2022_04_19/figures/TACC_logo.pdf b/my_docs/22/lmod_zoom_mtg_2022_04_19/figures/TACC_logo.pdf new file mode 100755 index 000000000..c018a20cb Binary files /dev/null and b/my_docs/22/lmod_zoom_mtg_2022_04_19/figures/TACC_logo.pdf differ diff --git a/my_docs/22/lmod_zoom_mtg_2022_04_19/figures/UT_logo.pdf b/my_docs/22/lmod_zoom_mtg_2022_04_19/figures/UT_logo.pdf new file mode 100755 index 000000000..d5b42e752 Binary files /dev/null and b/my_docs/22/lmod_zoom_mtg_2022_04_19/figures/UT_logo.pdf differ diff --git a/my_docs/22/lmod_zoom_mtg_2022_04_19/figures/cc.png b/my_docs/22/lmod_zoom_mtg_2022_04_19/figures/cc.png new file mode 100644 index 000000000..8a532ff8f Binary files /dev/null and b/my_docs/22/lmod_zoom_mtg_2022_04_19/figures/cc.png differ diff --git a/my_docs/22/lmod_zoom_mtg_2022_04_19/figures/isa.png b/my_docs/22/lmod_zoom_mtg_2022_04_19/figures/isa.png new file mode 100644 index 000000000..f95d985e7 Binary files /dev/null and b/my_docs/22/lmod_zoom_mtg_2022_04_19/figures/isa.png differ diff --git a/my_docs/22/lmod_zoom_mtg_2022_04_19/figures/master.jpg b/my_docs/22/lmod_zoom_mtg_2022_04_19/figures/master.jpg new file mode 100644 index 000000000..f5c56c04a Binary files /dev/null and b/my_docs/22/lmod_zoom_mtg_2022_04_19/figures/master.jpg differ diff --git a/my_docs/22/lmod_zoom_mtg_2022_04_19/figures/master169.jpg b/my_docs/22/lmod_zoom_mtg_2022_04_19/figures/master169.jpg new file mode 100644 index 000000000..b215776eb Binary files /dev/null and b/my_docs/22/lmod_zoom_mtg_2022_04_19/figures/master169.jpg differ diff --git a/my_docs/22/lmod_zoom_mtg_2022_04_19/figures/master169.png b/my_docs/22/lmod_zoom_mtg_2022_04_19/figures/master169.png new file mode 100644 index 000000000..bc5c0ed12 Binary files /dev/null and b/my_docs/22/lmod_zoom_mtg_2022_04_19/figures/master169.png differ diff --git a/my_docs/22/lmod_zoom_mtg_2022_04_19/figures/secondary.jpg b/my_docs/22/lmod_zoom_mtg_2022_04_19/figures/secondary.jpg new file mode 100644 index 000000000..d905a95c9 Binary files /dev/null and b/my_docs/22/lmod_zoom_mtg_2022_04_19/figures/secondary.jpg differ diff --git a/my_docs/22/lmod_zoom_mtg_2022_04_19/figures/secondary169.jpg b/my_docs/22/lmod_zoom_mtg_2022_04_19/figures/secondary169.jpg new file mode 100644 index 000000000..4eb017957 Binary files /dev/null and b/my_docs/22/lmod_zoom_mtg_2022_04_19/figures/secondary169.jpg differ diff --git a/my_docs/22/lmod_zoom_mtg_2022_04_19/figures/secondary169.png b/my_docs/22/lmod_zoom_mtg_2022_04_19/figures/secondary169.png new file mode 100644 index 000000000..cb9060a56 Binary files /dev/null and b/my_docs/22/lmod_zoom_mtg_2022_04_19/figures/secondary169.png differ diff --git a/my_docs/22/lmod_zoom_mtg_2022_04_19/figures/secondary_right.jpg b/my_docs/22/lmod_zoom_mtg_2022_04_19/figures/secondary_right.jpg new file mode 100644 index 000000000..f25f93a58 Binary files /dev/null and b/my_docs/22/lmod_zoom_mtg_2022_04_19/figures/secondary_right.jpg differ diff --git a/my_docs/22/lmod_zoom_mtg_2022_04_19/figures/secondary_right169.jpg b/my_docs/22/lmod_zoom_mtg_2022_04_19/figures/secondary_right169.jpg new file mode 100644 index 000000000..567a1078f Binary files /dev/null and b/my_docs/22/lmod_zoom_mtg_2022_04_19/figures/secondary_right169.jpg differ diff --git a/my_docs/22/lmod_zoom_mtg_2022_04_19/themes b/my_docs/22/lmod_zoom_mtg_2022_04_19/themes deleted file mode 120000 index a98530730..000000000 --- a/my_docs/22/lmod_zoom_mtg_2022_04_19/themes +++ /dev/null @@ -1 +0,0 @@ -../../beamer/themes \ No newline at end of file diff --git a/my_docs/22/lmod_zoom_mtg_2022_04_19/themes/beamercolorthemeTACC16.sty b/my_docs/22/lmod_zoom_mtg_2022_04_19/themes/beamercolorthemeTACC16.sty new file mode 100644 index 000000000..248ae8cb6 --- /dev/null +++ b/my_docs/22/lmod_zoom_mtg_2022_04_19/themes/beamercolorthemeTACC16.sty @@ -0,0 +1,193 @@ +% Copyright 2003 by Till Tantau . +% +% This program can be redistributed and/or modified under the terms +% of the GNU Public License, version 2. + +\mode + +\usepackage{textcase,regexpatch} + +\setbeamertemplate{blocks}[rounded][shadow=true] + + +\definecolor{TACCred}{RGB}{180,13,29} +\definecolor{TACCorange}{RGB}{210,104,43} +\definecolor{TACCblue}{RGB}{21,77,122} +%\definecolor{TACCgreen}{RGB}{30,134,104} +\definecolor{TACCgreen}{RGB}{49,168,51} + +% I downloaded a gimp color palette from +% http://maururu.net/2007/latex-beamer-color-palette/ +% Which provides rgb values (I think) for several of the +% default beamer themes. You can open this in gimp by +% opening the Palettes dialog, right-clicking anywhere and choosing +% 'Import Palette'. A color in there called 'default added blue' +% appeared to be approximately what I wanted. It had the triple +% of values 141 145 208. If you double-click on this in the +% palette editor it gives you a bunch of information. You can't +% use these values directly to set a color...it just comes out white. +% I think definecolor is expecting something normalized by 255. Yes! + + +%%% +% Set the normal text color +%%% +\setbeamercolor{normal text}{fg=black} %,bg=white} +\setbeamercolor{example text}{fg=TACCgreen} +\setbeamercolor{alerted text}{fg=TACCorange} + + +\setbeamercolor{structure}{fg=black} +%\setbeamercolor{structure}{fg=black} + +\setbeamercolor{background canvas}{parent=normal text} +\setbeamercolor{background}{parent=background canvas} + +\setbeamercolor{palette primary}{use=structure,fg=structure.fg} +\setbeamercolor{palette secondary}{use=structure,fg=structure.fg!75!black} +\setbeamercolor{palette tertiary}{use=structure,fg=structure.fg!50!black} +\setbeamercolor{palette quaternary}{fg=black} + +\setbeamercolor{palette sidebar primary}{use=normal text,fg=normal text.fg} +\setbeamercolor{palette sidebar secondary}{use=structure,fg=structure.fg} +\setbeamercolor{palette sidebar tertiary}{use=normal text,fg=normal text.fg} +\setbeamercolor{palette sidebar quaternary}{use=structure,fg=structure.fg} + +\setbeamercolor{math text}{} +\setbeamercolor{math text inlined}{parent=math text} +\setbeamercolor{math text displayed}{parent=math text} + +\setbeamercolor{normal text in math text}{} + +\setbeamercolor{local structure}{parent=structure} + +\setbeamercolor{titlelike}{parent=structure} + +\setbeamercolor{title}{parent=titlelike} +\setbeamercolor{title in head/foot}{parent=palette quaternary} +\setbeamercolor{title in sidebar}{parent=palette sidebar quaternary} + +\setbeamercolor{subtitle}{parent=title} + +\setbeamercolor{author}{} +\setbeamercolor{author in head/foot}{parent=palette primary} +\setbeamercolor{author in sidebar}{use=palette sidebar tertiary,fg=palette sidebar tertiary.fg} + +\setbeamercolor{institute}{} +\setbeamercolor{institute in head/foot}{parent=palette tertiary} +\setbeamercolor{institute in sidebar}{use=palette sidebar tertiary,fg=palette sidebar tertiary.fg} + +\setbeamercolor{date}{} +\setbeamercolor{date in head/foot}{parent=palette secondary} +\setbeamercolor{date in sidebar}{use=palette sidebar tertiary,fg=palette sidebar tertiary.fg} + +\setbeamercolor{titlegraphic}{} + +\setbeamercolor{part name}{} +\setbeamercolor{part title}{parent=titlelike} + +\setbeamercolor{section in toc}{parent=structure} +\setbeamercolor{section in toc shaded}{parent=section in toc} +\setbeamercolor{section in head/foot}{parent=palette tertiary} +\setbeamercolor{section in sidebar}{parent=palette sidebar secondary} +\setbeamercolor{section in sidebar shaded}{use=section in sidebar,fg=section in sidebar.fg!40!bg} +\setbeamercolor{section number projected}{parent=item projected} + +\setbeamercolor{subsection in toc}{} +\setbeamercolor{subsection in toc shaded}{parent=subsection in toc} +\setbeamercolor{subsection in head/foot}{parent=palette secondary} +\setbeamercolor{subsection in sidebar}{parent=palette sidebar primary} +\setbeamercolor{subsection in sidebar shaded}{use=subsection in sidebar,fg=subsection in sidebar.fg!40!bg} +\setbeamercolor{subsection number projected}{parent={subitem projected}} + +\setbeamercolor{subsubsection in toc}{parent=subsection in toc} +\setbeamercolor{subsubsection in toc shaded}{parent=subsubsection in toc} +\setbeamercolor{subsubsection in head/foot}{parent=subsection in head/foot} +\setbeamercolor{subsubsection in sidebar}{parent=subsection in sidebar} +\setbeamercolor{subsubsection in sidebar shaded}{parent=subsection in sidebar shaded} +\setbeamercolor{subsubsection number projected}{parent=subsubitem projected} + +\setbeamercolor{headline}{} +\setbeamercolor{footline}{} + +\setbeamercolor{sidebar}{} +\setbeamercolor{sidebar left}{parent=sidebar} +\setbeamercolor{sidebar right}{parent=sidebar} + +\setbeamercolor{logo}{parent=palette secondary} + +\setbeamercolor{frametitle}{parent=titlelike} +\setbeamercolor{framesubtitle}{parent=frametitle} + +\setbeamercolor{frametitle right}{parent=frametitle} + +\setbeamercolor{caption}{} +\setbeamercolor{caption name}{parent=structure} + +\setbeamercolor{button}{use=local structure,bg=local structure.fg!50!bg,fg=white} +\setbeamercolor{button border}{use=button,fg=button.bg} +\setbeamercolor{navigation symbols}{use=structure,fg=structure.fg!40!bg} +\setbeamercolor{navigation symbols dimmed}{use=structure,fg=structure.fg!20!bg} +\setbeamercolor{mini frame}{parent=section in head/foot} + +\setbeamercolor{block body}{fg=black} +\setbeamercolor{block body alerted}{fg=black} +\setbeamercolor{block body example}{fg=black} + +\setbeamercolor{block title}{bg=TACCblue,fg=white} +\setbeamercolor{block title alerted}{bg=TACCred,fg=white} +\setbeamercolor{block title example}{bg=TACCgreen,fg=white} + +\setbeamercolor{item}{parent=local structure} +\setbeamercolor{subitem}{parent=item} +\setbeamercolor{subsubitem}{parent=subitem} + +\setbeamercolor{item projected}{parent=item,use=item,fg=black,bg=item.fg} +\setbeamercolor{subitem projected}{parent=item projected} +\setbeamercolor{subsubitem projected}{parent=subitem projected} + +\setbeamercolor{enumerate item}{parent=item} +\setbeamercolor{enumerate subitem}{parent=subitem} +\setbeamercolor{enumerate subsubitem}{parent=subsubitem} + +\setbeamercolor{itemize item}{parent=item} +\setbeamercolor{itemize subitem}{parent=subitem} +\setbeamercolor{itemize subsubitem}{parent=subsubitem} + +\setbeamercolor{itemize/enumerate body}{} +\setbeamercolor{itemize/enumerate subbody}{} +\setbeamercolor{itemize/enumerate subsubbody}{} + +\setbeamercolor{description item}{parent=item} + +\setbeamercolor{bibliography item}{parent=item} + +\setbeamercolor{bibliography entry author}{use=structure,fg=structure.fg} +\setbeamercolor{bibliography entry title}{use=normal text,fg=normal text.fg} +\setbeamercolor{bibliography entry location}{use=structure,fg=structure.fg!65!bg} +\setbeamercolor{bibliography entry note}{use=structure,fg=structure.fg!65!bg} + +\setbeamercolor{separation line}{} + +\setbeamercolor{upper separation line head}{parent=separation line} +\setbeamercolor{middle separation line head}{parent=separation line} +\setbeamercolor{lower separation line head}{parent=separation line} + +\setbeamercolor{upper separation line foot}{parent=separation line} +\setbeamercolor{middle separation line foot}{parent=separation line} +\setbeamercolor{lower separation line foot}{parent=separation line} + +\setbeamercolor{abstract}{} +\setbeamercolor{abstract title}{parent=structure} + +\setbeamercolor{verse}{} + +\setbeamercolor{quotation}{} +\setbeamercolor{quote}{parent=quotation} + +\setbeamercolor{page number in head/foot}{fg=fg!50!bg} + +\setbeamercolor{qed symbol}{parent=structure} + +\mode + diff --git a/my_docs/22/lmod_zoom_mtg_2022_04_19/themes/beamerfontthemeTACC16.sty b/my_docs/22/lmod_zoom_mtg_2022_04_19/themes/beamerfontthemeTACC16.sty new file mode 100644 index 000000000..d0fc325cc --- /dev/null +++ b/my_docs/22/lmod_zoom_mtg_2022_04_19/themes/beamerfontthemeTACC16.sty @@ -0,0 +1,21 @@ +% Copyright 2003 by Till Tantau +% +% This program can be redistributed and/or modified under the terms +% of the GNU Public License, version 2. + +\mode +\setbeamerfont{title}{parent=structure,size=\LARGE,series=\bfseries} +\setbeamerfont{author}{parent=structure,size=\large, series=\normalfont} +\setbeamerfont{frametitle}{parent=structure,size=\LARGE,series=\bfseries} +\setbeamerfont{framesubtitle}{parent=frametitle,size=\small} + +%\usefonttheme{professionalfonts} % using non standard fonts for beamer +%\usefonttheme{serif} % default family is serif +%\usepackage{fontspec} +%\setmainfont{Century Gothic} + +%\usepackage{fontspec} +\usepackage{libertine} + +\mode + diff --git a/my_docs/22/lmod_zoom_mtg_2022_04_19/themes/beamerinnerthemeTACC16.sty b/my_docs/22/lmod_zoom_mtg_2022_04_19/themes/beamerinnerthemeTACC16.sty new file mode 100644 index 000000000..f7f454e1d --- /dev/null +++ b/my_docs/22/lmod_zoom_mtg_2022_04_19/themes/beamerinnerthemeTACC16.sty @@ -0,0 +1,11 @@ +\mode + +\setbeamertemplate{itemize item}[triangle] +\setbeamertemplate{itemize subitem}[triangle] +\setbeamertemplate{itemize subsubitem}[triangle] +\setbeamertemplate{section in toc}{$\bullet$\hskip.5em\inserttocsection} +%\setbeamertemplate{subsection in toc}{} +\setbeamertemplate{subsubsection in toc}{} + +\mode + diff --git a/my_docs/22/lmod_zoom_mtg_2022_04_19/themes/beamerouterthemeTACC16-169.sty b/my_docs/22/lmod_zoom_mtg_2022_04_19/themes/beamerouterthemeTACC16-169.sty new file mode 100644 index 000000000..c62f9ed04 --- /dev/null +++ b/my_docs/22/lmod_zoom_mtg_2022_04_19/themes/beamerouterthemeTACC16-169.sty @@ -0,0 +1,247 @@ +% Copyright 2003 by Till Tantau +% +% This program can be redistributed and/or modified under the terms +% of the GNU Public License, version 2. + +\mode + +\usepackage{xcolor} +\usepackage{graphicx} +\usepackage{etoolbox} + +\pgfdeclareimage[width=\paperwidth]{titlebackground}{./figures/master169.png} +\pgfdeclareimage[width=\paperwidth]{background}{./figures/secondary169.png} + +\setbeamertemplate{background canvas}{% + \ifnum\c@framenumber=1% + \begin{picture}(0,0) + \put(-0.15,-250){% + \pgfuseimage{titlebackground} + } + %\put(0,-130.7){% + + %\begin{minipage}[b][45mm][t]{\textwidth}%{226mm} + %\begin{center} + % \usebeamerfont{title}{\MakeTextUppercase{\inserttitle}\par} + %\vspace{2ex} + %\usebeamerfont{author}{\insertauthor} + % \end{center} + %\end{minipage} + %} + \end{picture} + % On title page + \else% + % Other frames background + \begin{picture}(0,0) + \put(-0.15,-255.55){% + \pgfuseimage{background} + } + \end{picture} + \fi% +} + + +\setbeamertemplate{title page}{ +\vspace{40pt} +\begin{center} +\usebeamerfont{title} {\huge \inserttitle}\par +\vspace{4ex} +\usebeamerfont{author} { + \insertauthor +}\par +\vspace{2ex} +\usebeamerfont{institute}{ + \insertinstitute +} \par +\vspace{2ex} +\usebeamerfont{date}{ + \insertdate +} +\end{center} +} + + +\setbeamertemplate{frametitle}[default][center] +\setbeamertemplate{frametitle}{ + \makeatletter + \regexpatchcmd{\insertframetitle} + {(\c{usebeamertemplate}.*)\c{fi}} + {\c{NoCaseChange}\cB\{\1\cE\}\c{fi}} + {}{}% + \makeatother + \vskip1ex + \insertframetitle +} + +% Here we define what appears at the bottom of each slide: the "footline". +\setbeamertemplate{footline}{% + \leavevmode% + + % Horizontal line dividing the rest of the slide from the footer? + % hrule goes all the way across... + % \hrule height.3pt% + % With \rule, you can specify the thickness + % \rule[raise-height]{width}{thickness} + % \hspace{.025\textwidth}\rule{.95\textwidth}{.5pt} + + \hbox{% + \ifnum \thepage>1 + % On the left half of the footer, insert the TACC of + \begin{minipage}{.2\textwidth}% + \hskip .05\textwidth%Give horizontal space else this will set on the left edge of the slide! + % \includegraphics[width=.8\textwidth]{TACC_logo.png} + \end{minipage} + + + \begin{minipage}{\textwidth}% + % \vskip .023\textheight% + \raggedleft% + \setlength{\rightskip}{\textwidth} + \hbox{% + \begin{beamercolorbox}[wd=0.7\textwidth,ht=2.25ex,dp=1ex,left]{author in head/foot}% + \insertshorttitle{} \hskip .01\textwidth | \hskip .01\textwidth \insertdate{} \hskip .01\textwidth | \hskip .01\textwidth \insertframenumber{} + \end{beamercolorbox}% + } + + % + % If we are not on the first page, insert a page number + % For some reason, insertframenumber is buggy when you have fragile + % slides with verbatim environments in them... it tends to skip numbers + % for some reason! On the other hand, the pagenumber is incremented + % for *every* slide, including transition slides... + % \hfill\includegraphics[width=\textwidth]{tacc_ut.png} + \end{minipage}% + \begin{minipage}{.05\textwidth}% + \end{minipage}% + \fi %\thepage>1 + }% + \vskip .023\textheight% + +} + + + + +\ifTACCheadernav + +\usesectionheadtemplate +{\hfill\insertsectionhead} +{\hfill\color{fg!50!bg}\insertsectionhead} + +% Head +\ifbeamer@compress + +% Here we define how the top of the frame looks, the "headline". +\setbeamertemplate{headline} +{% + \ifnum \thepage>1 + \leavevmode% + \begin{beamercolorbox}[wd=.5\paperwidth,ht=2.5ex,dp=1.125ex]{% + section in head/foot}% + \insertsectionnavigationhorizontal{.5\paperwidth}{\hskip0pt plus1filll}{}% + \end{beamercolorbox}% + \begin{beamercolorbox}[wd=.5\paperwidth,ht=2.5ex,dp=1.125ex]{% + subsection in head/foot}% + \insertsubsectionnavigationhorizontal{% + .5\paperwidth}{}{\hskip0pt plus1filll}% + \end{beamercolorbox}% + \fi %\thepage>1 +} + +\else% Not compressed + +\setbeamertemplate{headline} +{% + \ifnum \thepage>1 + \leavevmode% + \@tempdimb=2.4375ex% + \ifnum\beamer@subsectionmax<\beamer@sectionmax% + \multiply\@tempdimb by\beamer@sectionmax% + \else% + \multiply\@tempdimb by\beamer@subsectionmax% + \fi% + \ifdim\@tempdimb>0pt% + \advance\@tempdimb by 1.125ex% + \begin{beamercolorbox}[wd=.5\paperwidth,ht=\@tempdimb]{% + section in head/foot}% + \vbox to\@tempdimb{\vfil\insertsectionnavigation{.5\paperwidth}\vfil}% + \end{beamercolorbox}% + \begin{beamercolorbox}[wd=.5\paperwidth,ht=\@tempdimb]{% + subsection in head/foot}% + \vbox to\@tempdimb{\vfil\insertsubsectionnavigation{.5\paperwidth}\vfil}% + \end{beamercolorbox}% + \fi% + \fi % \thepage>1 +} + +\fi % end if compressed +\fi % TACCheadernav + + +\ifTACCheadertree + +\setbeamertemplate{headline} +{ + \begin{beamercolorbox}[wd=\paperwidth,colsep=1.5pt]{upper separation line head} + \end{beamercolorbox} + % + % Place short title + % + \begin{beamercolorbox}[wd=\paperwidth,ht=2.5ex,dp=1.125ex,% + leftskip=.3cm,rightskip=.3cm plus1fil]{title in head/foot} + \usebeamerfont{title in head/foot}\insertshorttitle + \end{beamercolorbox} + + % + % Place section + % + \begin{beamercolorbox}[wd=\paperwidth,ht=2.5ex,dp=1.125ex,% + leftskip=.3cm,rightskip=.3cm plus1fil]{section in head/foot} + \usebeamerfont{section in head/foot}% + %\ifbeamer@tree@showhooks + \setbox\beamer@tempbox=\hbox{\insertsectionhead}% + \ifdim\wd\beamer@tempbox>1pt% + \hskip2pt\raise1.9pt\hbox{\vrule width0.4pt height1.875ex\vrule width 5pt height0.4pt}% + \hskip1pt% + \fi + \insertsectionhead + \end{beamercolorbox} + +% +% Place subsection +% +\begin{beamercolorbox}[wd=\paperwidth,ht=2.5ex,dp=1.125ex,% + leftskip=.3cm,rightskip=.3cm plus1fil]{subsection in head/foot} + \usebeamerfont{subsection in head/foot}% + %\ifbeamer@tree@showhooks + \setbox\beamer@tempbox=\hbox{\insertsubsectionhead}% + \ifdim\wd\beamer@tempbox>1pt% + \hskip9.4pt\raise1.9pt\hbox{\vrule width0.4pt height1.875ex\vrule width 5pt height0.4pt}% + \hskip1pt% + \fi + \insertsubsectionhead +\end{beamercolorbox} + +% +% Place final separation box +% + \begin{beamercolorbox}[wd=\paperwidth,colsep=1.5pt + ]{lower separation line head} + \end{beamercolorbox} + + % + % Another matching rule which helps to frame the content + % + \hspace{.025\textwidth}\rule{.95\textwidth}{.5pt} +} +\fi % TACCheadertree + + +% The following command suppresses all navigation symbols. This is +% necessary in the TACC theme, since it overlaps where we want the +% logo to be. +\setbeamertemplate{navigation symbols}{} + + +\mode + diff --git a/my_docs/22/lmod_zoom_mtg_2022_04_19/themes/beamerouterthemeTACC16.sty b/my_docs/22/lmod_zoom_mtg_2022_04_19/themes/beamerouterthemeTACC16.sty new file mode 100644 index 000000000..c5b178018 --- /dev/null +++ b/my_docs/22/lmod_zoom_mtg_2022_04_19/themes/beamerouterthemeTACC16.sty @@ -0,0 +1,247 @@ +% Copyright 2003 by Till Tantau +% +% This program can be redistributed and/or modified under the terms +% of the GNU Public License, version 2. + +\mode + +\usepackage{xcolor} +\usepackage{graphicx} +\usepackage{etoolbox} + +\pgfdeclareimage[width=\paperwidth]{titlebackground}{master.jpg} +\pgfdeclareimage[width=\paperwidth]{background}{secondary.jpg} + +\setbeamertemplate{background canvas}{% + \ifnum\c@framenumber=1% + \begin{picture}(0,0) + \put(0,-273){% + \pgfuseimage{titlebackground} + } + %\put(0,-130.7){% + + %\begin{minipage}[b][45mm][t]{\textwidth}%{226mm} + %\begin{center} + % \usebeamerfont{title}{\MakeTextUppercase{\inserttitle}\par} + %\vspace{2ex} + %\usebeamerfont{author}{\insertauthor} + % \end{center} + %\end{minipage} + %} + \end{picture} + % On title page + \else% + % Other frames background + \begin{picture}(0,0) + \put(0,-273){% + \pgfuseimage{background} + } + \end{picture} + \fi% +} + + +\setbeamertemplate{title page}{ +\vspace{40pt} +\begin{center} +\usebeamerfont{title} {\huge \inserttitle}\par +\vspace{4ex} +\usebeamerfont{author} { + \insertauthor +}\par +\vspace{2ex} +\usebeamerfont{institute}{ + \insertinstitute +} \par +\vspace{2ex} +\usebeamerfont{date}{ + \insertdate +} +\end{center} +} + + +\setbeamertemplate{frametitle}[default][center] +\setbeamertemplate{frametitle}{ + \makeatletter + \regexpatchcmd{\insertframetitle} + {(\c{usebeamertemplate}.*)\c{fi}} + {\c{NoCaseChange}\cB\{\1\cE\}\c{fi}} + {}{}% + \makeatother + \vskip1ex + \insertframetitle +} + +% Here we define what appears at the bottom of each slide: the "footline". +\setbeamertemplate{footline}{% + \leavevmode% + + % Horizontal line dividing the rest of the slide from the footer? + % hrule goes all the way across... + % \hrule height.3pt% + % With \rule, you can specify the thickness + % \rule[raise-height]{width}{thickness} + % \hspace{.025\textwidth}\rule{.95\textwidth}{.5pt} + + \hbox{% + \ifnum \thepage>1 + % On the left half of the footer, insert the TACC of + \begin{minipage}{.2\textwidth}% + \hskip .05\textwidth%Give horizontal space else this will set on the left edge of the slide! + % \includegraphics[width=.8\textwidth]{figures/TACC_logo.png} + \end{minipage} + + + \begin{minipage}{\textwidth}% + % \vskip .023\textheight% + \raggedleft% + \setlength{\rightskip}{\textwidth} + \hbox{% + \begin{beamercolorbox}[wd=0.7\textwidth,ht=2.25ex,dp=1ex,left]{author in head/foot}% + \insertshorttitle{} \hskip .01\textwidth | \hskip .01\textwidth \insertdate{} \hskip .01\textwidth | \hskip .01\textwidth \insertframenumber{} + \end{beamercolorbox}% + } + + % + % If we are not on the first page, insert a page number + % For some reason, insertframenumber is buggy when you have fragile + % slides with verbatim environments in them... it tends to skip numbers + % for some reason! On the other hand, the pagenumber is incremented + % for *every* slide, including transition slides... + % \hfill\includegraphics[width=\textwidth]{figures/tacc_ut.png} + \end{minipage}% + \begin{minipage}{.05\textwidth}% + \end{minipage}% + \fi %\thepage>1 + }% + \vskip .023\textheight% + +} + + + + +\ifTACCheadernav + +\usesectionheadtemplate +{\hfill\insertsectionhead} +{\hfill\color{fg!50!bg}\insertsectionhead} + +% Head +\ifbeamer@compress + +% Here we define how the top of the frame looks, the "headline". +\setbeamertemplate{headline} +{% + \ifnum \thepage>1 + \leavevmode% + \begin{beamercolorbox}[wd=.5\paperwidth,ht=2.5ex,dp=1.125ex]{% + section in head/foot}% + \insertsectionnavigationhorizontal{.5\paperwidth}{\hskip0pt plus1filll}{}% + \end{beamercolorbox}% + \begin{beamercolorbox}[wd=.5\paperwidth,ht=2.5ex,dp=1.125ex]{% + subsection in head/foot}% + \insertsubsectionnavigationhorizontal{% + .5\paperwidth}{}{\hskip0pt plus1filll}% + \end{beamercolorbox}% + \fi %\thepage>1 +} + +\else% Not compressed + +\setbeamertemplate{headline} +{% + \ifnum \thepage>1 + \leavevmode% + \@tempdimb=2.4375ex% + \ifnum\beamer@subsectionmax<\beamer@sectionmax% + \multiply\@tempdimb by\beamer@sectionmax% + \else% + \multiply\@tempdimb by\beamer@subsectionmax% + \fi% + \ifdim\@tempdimb>0pt% + \advance\@tempdimb by 1.125ex% + \begin{beamercolorbox}[wd=.5\paperwidth,ht=\@tempdimb]{% + section in head/foot}% + \vbox to\@tempdimb{\vfil\insertsectionnavigation{.5\paperwidth}\vfil}% + \end{beamercolorbox}% + \begin{beamercolorbox}[wd=.5\paperwidth,ht=\@tempdimb]{% + subsection in head/foot}% + \vbox to\@tempdimb{\vfil\insertsubsectionnavigation{.5\paperwidth}\vfil}% + \end{beamercolorbox}% + \fi% + \fi % \thepage>1 +} + +\fi % end if compressed +\fi % TACCheadernav + + +\ifTACCheadertree + +\setbeamertemplate{headline} +{ + \begin{beamercolorbox}[wd=\paperwidth,colsep=1.5pt]{upper separation line head} + \end{beamercolorbox} + % + % Place short title + % + \begin{beamercolorbox}[wd=\paperwidth,ht=2.5ex,dp=1.125ex,% + leftskip=.3cm,rightskip=.3cm plus1fil]{title in head/foot} + \usebeamerfont{title in head/foot}\insertshorttitle + \end{beamercolorbox} + + % + % Place section + % + \begin{beamercolorbox}[wd=\paperwidth,ht=2.5ex,dp=1.125ex,% + leftskip=.3cm,rightskip=.3cm plus1fil]{section in head/foot} + \usebeamerfont{section in head/foot}% + %\ifbeamer@tree@showhooks + \setbox\beamer@tempbox=\hbox{\insertsectionhead}% + \ifdim\wd\beamer@tempbox>1pt% + \hskip2pt\raise1.9pt\hbox{\vrule width0.4pt height1.875ex\vrule width 5pt height0.4pt}% + \hskip1pt% + \fi + \insertsectionhead + \end{beamercolorbox} + +% +% Place subsection +% +\begin{beamercolorbox}[wd=\paperwidth,ht=2.5ex,dp=1.125ex,% + leftskip=.3cm,rightskip=.3cm plus1fil]{subsection in head/foot} + \usebeamerfont{subsection in head/foot}% + %\ifbeamer@tree@showhooks + \setbox\beamer@tempbox=\hbox{\insertsubsectionhead}% + \ifdim\wd\beamer@tempbox>1pt% + \hskip9.4pt\raise1.9pt\hbox{\vrule width0.4pt height1.875ex\vrule width 5pt height0.4pt}% + \hskip1pt% + \fi + \insertsubsectionhead +\end{beamercolorbox} + +% +% Place final separation box +% + \begin{beamercolorbox}[wd=\paperwidth,colsep=1.5pt + ]{lower separation line head} + \end{beamercolorbox} + + % + % Another matching rule which helps to frame the content + % + \hspace{.025\textwidth}\rule{.95\textwidth}{.5pt} +} +\fi % TACCheadertree + + +% The following command suppresses all navigation symbols. This is +% necessary in the TACC theme, since it overlaps where we want the +% logo to be. +\setbeamertemplate{navigation symbols}{} + + +\mode + diff --git a/my_docs/22/lmod_zoom_mtg_2022_04_19/themes/beamerthemeTACC16-169.sty b/my_docs/22/lmod_zoom_mtg_2022_04_19/themes/beamerthemeTACC16-169.sty new file mode 100644 index 000000000..22caf9a05 --- /dev/null +++ b/my_docs/22/lmod_zoom_mtg_2022_04_19/themes/beamerthemeTACC16-169.sty @@ -0,0 +1,38 @@ +%% TACC theme for beamer + +\newif\ifTACCheadernav +\DeclareOption{headernav}{\global\TACCheadernavtrue} + +\newif\ifTACCheadertree +\DeclareOption{headertree}{\global\TACCheadertreetrue} +\ProcessOptions + +\mode + +\makeatletter + \def\beamer@calltheme#1#2#3{% + \def\beamer@themelist{#2} + \@for\beamer@themename:=\beamer@themelist\do + {\usepackage[{#1}]{\beamer@themelocation/#3\beamer@themename}}} + + \def\usefolder#1{ + \def\beamer@themelocation{#1} + } + \def\beamer@themelocation{} + +\usefolder{themes} +\usefonttheme{TACC16} +\useinnertheme{TACC16} +\useoutertheme{TACC16-169} +\usecolortheme{TACC16} + +\mode + + +\newcommand{\event}[1]{% + \makeatletter% + \def\TACC@eventname{#1}% + \makeatother} + +\newcommand{\sectionframe}[1]{\section{#1}\frame{\Large\textbf{#1}}} +\newcommand{\subsectionframe}[1]{\subsection{#1}\frame{\large\textbf{#1}}} diff --git a/my_docs/22/lmod_zoom_mtg_2022_04_19/themes/beamerthemeTACC16.sty b/my_docs/22/lmod_zoom_mtg_2022_04_19/themes/beamerthemeTACC16.sty new file mode 100644 index 000000000..750bdd388 --- /dev/null +++ b/my_docs/22/lmod_zoom_mtg_2022_04_19/themes/beamerthemeTACC16.sty @@ -0,0 +1,26 @@ +%% TACC theme for beamer + +\newif\ifTACCheadernav +\DeclareOption{headernav}{\global\TACCheadernavtrue} + +\newif\ifTACCheadertree +\DeclareOption{headertree}{\global\TACCheadertreetrue} +\ProcessOptions + +\mode + +\usefonttheme{TACC16} +\useinnertheme{TACC16} +\useoutertheme{TACC16} +\usecolortheme{TACC16} + +\mode + + +\newcommand{\event}[1]{% + \makeatletter% + \def\TACC@eventname{#1}% + \makeatother} + +\newcommand{\sectionframe}[1]{\section{#1}\frame{\Large\textbf{#1}}} +\newcommand{\subsectionframe}[1]{\subsection{#1}\frame{\large\textbf{#1}}} diff --git a/my_docs/22/lmod_zoom_mtg_2022_04_19/themes/example.pdf b/my_docs/22/lmod_zoom_mtg_2022_04_19/themes/example.pdf new file mode 100644 index 000000000..add373eee Binary files /dev/null and b/my_docs/22/lmod_zoom_mtg_2022_04_19/themes/example.pdf differ diff --git a/my_docs/22/lmod_zoom_mtg_2022_04_19/themes/license.tex b/my_docs/22/lmod_zoom_mtg_2022_04_19/themes/license.tex new file mode 100644 index 000000000..74ff86759 --- /dev/null +++ b/my_docs/22/lmod_zoom_mtg_2022_04_19/themes/license.tex @@ -0,0 +1,14 @@ + +\begin{frame}{License} +\footnotesize +\textcopyright The University of Texas at Austin, \the\year\\ +\vspace{0.5 cm} +This work is licensed under the Creative Commons Attribution Non-Commercial 3.0 Unported License. To view a copy of this license, +visit http://creativecommons.org/licenses/by-nc/3.0/\\ +\vspace{0.5 cm} +When attributing this work, please use the following text: +"Designing and Administering Large-scale Systems", Texas Advanced Computing Center, \the\year. Available under a Creative Commons Attribution Non-Commercial 3.0 Unported License. +\newline +\newline +\includegraphics[width=1cm]{./figures/cc.png} +\end{frame} \ No newline at end of file diff --git a/my_docs/22/lmod_zoom_mtg_2022_05_03/Lmod-4color@2x.png b/my_docs/22/lmod_zoom_mtg_2022_05_03/Lmod-4color@2x.png deleted file mode 120000 index 47d505dbf..000000000 --- a/my_docs/22/lmod_zoom_mtg_2022_05_03/Lmod-4color@2x.png +++ /dev/null @@ -1 +0,0 @@ -../../beamer/Lmod-4color@2x.png \ No newline at end of file diff --git a/my_docs/22/lmod_zoom_mtg_2022_05_03/Lmod-4color@2x.png b/my_docs/22/lmod_zoom_mtg_2022_05_03/Lmod-4color@2x.png new file mode 100644 index 000000000..4810d74c3 Binary files /dev/null and b/my_docs/22/lmod_zoom_mtg_2022_05_03/Lmod-4color@2x.png differ diff --git a/my_docs/22/lmod_zoom_mtg_2022_05_03/beamercolorthemeTACC.sty b/my_docs/22/lmod_zoom_mtg_2022_05_03/beamercolorthemeTACC.sty deleted file mode 120000 index 8d27e673a..000000000 --- a/my_docs/22/lmod_zoom_mtg_2022_05_03/beamercolorthemeTACC.sty +++ /dev/null @@ -1 +0,0 @@ -../../beamer/beamercolorthemeTACC.sty \ No newline at end of file diff --git a/my_docs/22/lmod_zoom_mtg_2022_05_03/beamercolorthemeTACC.sty b/my_docs/22/lmod_zoom_mtg_2022_05_03/beamercolorthemeTACC.sty new file mode 100755 index 000000000..78beb6a4a --- /dev/null +++ b/my_docs/22/lmod_zoom_mtg_2022_05_03/beamercolorthemeTACC.sty @@ -0,0 +1,323 @@ +% Copyright 2003 by Till Tantau . +% +% This program can be redistributed and/or modified under the terms +% of the GNU Public License, version 2. + +\mode + +% I downloaded a gimp color palette from +% http://maururu.net/2007/latex-beamer-color-palette/ +% Which provides rgb values (I think) for several of the +% default beamer themes. You can open this in gimp by +% opening the Palettes dialog, right-clicking anywhere and choosing +% 'Import Palette'. A color in there called 'default added blue' +% appeared to be approximately what I wanted. It had the triple +% of values 141 145 208. If you double-click on this in the +% palette editor it gives you a bunch of information. You can't +% use these values directly to set a color...it just comes out white. +% I think definecolor is expecting something normalized by 255. Yes! + + +% bluish colors +\definecolor{defaddedblue}{rgb}{0.5529,.5686,.8157} % 141,145,208 +\definecolor{defblockheader}{rgb}{.1921,.2235,.6824} % 49,57,174 +\definecolor{flyaddedblue}{rgb}{.5961,.6118,.8431} % 152,156,215 + +% bluish-greys +\definecolor{beetleaddedblue1}{rgb}{.3333,.4039,.6196} % 85 103 158, dark +\definecolor{beetleaddedblue2}{rgb}{.4510,.5098,.7020} % 115 130 179, medium +\definecolor{beetleaddedblue3}{rgb}{.7059,.7255,.7961} % 180 185 203, light (greyest) + +% very light blue-greys +\definecolor{deflightouter1}{rgb}{.7608,.7647,.9020} % 194 195 230, dark +\definecolor{deflightouter2}{rgb}{.8 ,.8039,.9176} % 204 205 234, medium +\definecolor{deflightouter3}{rgb}{.8392,.8431,.9373} % 214 215 239, light + +% reddish colors +\definecolor{flyalertblockheader}{rgb}{.7373,.1294,.1333} % 188 33 34 +\definecolor{flyaddedred}{rgb}{.8667,.5647,.5647}% 221 144 144 +\definecolor{beaverouterframe}{rgb}{.5529,.0980,.0980}% 141 25 25 + +% greens (green is used for 'examples' in beamer) +\definecolor{defexblock}{rgb}{.9098,.9333,.9020} % 232 238 230, light +\definecolor{defaddedgreen}{rgb}{.5412,.6510,.4706} % 138 166 120, medium +\definecolor{defexblockheader}{rgb}{.1686,.3647,.0392} % 43 93 10, dark + +\definecolor{lightexblock}{rgb}{.9137,.9451,.9020} % 233 241 230, light +\definecolor{lightexblockheader}{rgb}{.8235,.8980,.8} % 210 229 204, medium +\definecolor{lightexblockheadertext}{rgb}{.2431,.5098,.0745} % 62 130 19, dark + + +%%% +% Set the normal text color +%%% +\setbeamercolor{normal text}{fg=black,bg=white} + +%%% +% Set the alerted text color +%%% +% \setbeamercolor{alerted text}{fg=red} +\setbeamercolor{alerted text}{fg=red!50!black} % half black/half red for green bg +% \setbeamercolor{alerted text}{fg=beaverouterframe} +% \setbeamercolor{alerted text}{fg=defblockheader} % doesn't stand out enough + + +% Set the 'example' text +\setbeamercolor{example text}{fg=green!50!black} + +\setbeamercolor{structure}{fg=black} + +\setbeamercolor{background canvas}{parent=normal text} +\setbeamercolor{background}{parent=background canvas} + +\setbeamercolor{palette primary}{use=structure,fg=structure.fg} +\setbeamercolor{palette secondary}{use=structure,fg=structure.fg!75!black} +\setbeamercolor{palette tertiary}{use=structure,fg=structure.fg!50!black} +\setbeamercolor{palette quaternary}{fg=black} + +\setbeamercolor{palette sidebar primary}{use=normal text,fg=normal text.fg} +\setbeamercolor{palette sidebar secondary}{use=structure,fg=structure.fg} +\setbeamercolor{palette sidebar tertiary}{use=normal text,fg=normal text.fg} +\setbeamercolor{palette sidebar quaternary}{use=structure,fg=structure.fg} + +\setbeamercolor{math text}{} +\setbeamercolor{math text inlined}{parent=math text} +\setbeamercolor{math text displayed}{parent=math text} + +\setbeamercolor{normal text in math text}{} + +\setbeamercolor{local structure}{parent=structure} + +\setbeamercolor{titlelike}{parent=structure} + +\setbeamercolor{title}{parent=titlelike} +\setbeamercolor{title in head/foot}{parent=palette quaternary} +\setbeamercolor{title in sidebar}{parent=palette sidebar quaternary} + +\setbeamercolor{subtitle}{parent=title} + +\setbeamercolor{author}{} +\setbeamercolor{author in head/foot}{parent=palette primary} +\setbeamercolor{author in sidebar}{use=palette sidebar tertiary,fg=palette sidebar tertiary.fg} + +\setbeamercolor{institute}{} +\setbeamercolor{institute in head/foot}{parent=palette tertiary} +\setbeamercolor{institute in sidebar}{use=palette sidebar tertiary,fg=palette sidebar tertiary.fg} + +\setbeamercolor{date}{} +\setbeamercolor{date in head/foot}{parent=palette secondary} +\setbeamercolor{date in sidebar}{use=palette sidebar tertiary,fg=palette sidebar tertiary.fg} + +\setbeamercolor{titlegraphic}{} + +\setbeamercolor{part name}{} +\setbeamercolor{part title}{parent=titlelike} + +\setbeamercolor{section in toc}{parent=structure} +\setbeamercolor{section in toc shaded}{parent=section in toc} +\setbeamercolor{section in head/foot}{parent=palette tertiary} +\setbeamercolor{section in sidebar}{parent=palette sidebar secondary} +\setbeamercolor{section in sidebar shaded}{use=section in sidebar,fg=section in sidebar.fg!40!bg} +\setbeamercolor{section number projected}{parent=item projected} + +\setbeamercolor{subsection in toc}{} +\setbeamercolor{subsection in toc shaded}{parent=subsection in toc} +\setbeamercolor{subsection in head/foot}{parent=palette secondary} +\setbeamercolor{subsection in sidebar}{parent=palette sidebar primary} +\setbeamercolor{subsection in sidebar shaded}{use=subsection in sidebar,fg=subsection in sidebar.fg!40!bg} +\setbeamercolor{subsection number projected}{parent={subitem projected}} + +\setbeamercolor{subsubsection in toc}{parent=subsection in toc} +\setbeamercolor{subsubsection in toc shaded}{parent=subsubsection in toc} +\setbeamercolor{subsubsection in head/foot}{parent=subsection in head/foot} +\setbeamercolor{subsubsection in sidebar}{parent=subsection in sidebar} +\setbeamercolor{subsubsection in sidebar shaded}{parent=subsection in sidebar shaded} +\setbeamercolor{subsubsection number projected}{parent=subsubitem projected} + +\setbeamercolor{headline}{} +\setbeamercolor{footline}{} + +\setbeamercolor{sidebar}{} +\setbeamercolor{sidebar left}{parent=sidebar} +\setbeamercolor{sidebar right}{parent=sidebar} + +\setbeamercolor{logo}{parent=palette secondary} + +\setbeamercolor{frametitle}{parent=titlelike} +\setbeamercolor{framesubtitle}{parent=frametitle} + +\setbeamercolor{frametitle right}{parent=frametitle} + +\setbeamercolor{caption}{} +\setbeamercolor{caption name}{parent=structure} + +\setbeamercolor{button}{use=local structure,bg=local structure.fg!50!bg,fg=white} +\setbeamercolor{button border}{use=button,fg=button.bg} +\setbeamercolor{navigation symbols}{use=structure,fg=structure.fg!40!bg} +\setbeamercolor{navigation symbols dimmed}{use=structure,fg=structure.fg!20!bg} +\setbeamercolor{mini frame}{parent=section in head/foot} + +% Color expressions are defined in the xcolor package +% +% Ex: Mixture of 40% green, 60% yellow: green!40!yellow +% +% The complement of any color can be obtained by prepending +% a minus sign: -green!40!yellow +% +% One can also combine up to three colors (in differing proportions) +% using the rgb command. For example, the following command combines +% 3 parts of the first color, with 2 parts of the second, and one part +% "red" +% +%\color{rgb:-green!40!yellow,3;green!40!yellow,2;red,1} +% Unfortunately, I don't think this works as an argument to setbeamercolor... +% "Orange" bg=green!30!yellow!30!red +% close to burnt orange: red!75!green +% lightgray is a color, but gray!25!white looks better +% +% A nice pair of greens +% (dark, a little too dark to be under black text...) -red!75!green!50!blue!25 +% (light) -red!75!green!50!blue!25!gray +% +% Some colors are only available via options to the xcolor package, eg. +% x11names,DarkOliveGreen4 +% svgnames, Chartreuse +% dvipsnames, ForestGreen +% +% but beamer does not seem to have any of these. +% +% The base color names which are always available are: +% black +% blue +% brown +% cyan +% darkgray +% gray +% green +% lightgray +% lime +% magenta +% olive +% orange +% pink +% purple +% red +% teal +% violet +% white +% yellow + +% From the beamer user guide, pg. 167 +% Inner color themes only specify the colors of elements used in inner +% themes. Most noticably, they specify the colors used for blocks. +% ... + +% Example color definition +% beamercolorthemedefault.sty:\definecolor{beamer@blendedblue}{rgb}{0.2,0.2,0.7} +% beamercolorthemedefault.sty:\setbeamercolor{structure}{fg=beamer@blendedblue} + +% The greens +% \setbeamercolor{block body}{bg=-red!75!green!50!blue!25!gray} +% \setbeamercolor{block title}{parent=structure,bg=-red!75!green!50!blue!25,fg=-red!75!green!50!blue!25!gray} + +%%% +% Set the block body and title background/foreground colors +%%% +% \setbeamercolor{block body}{bg=flyaddedblue} +% \setbeamercolor{block title}{bg=defblockheader,fg=flyaddedblue} + +% Purplish blues, too dark overall +% \setbeamercolor{block body}{bg=beetleaddedblue3} +% \setbeamercolor{block title}{bg=beetleaddedblue2,fg=beetleaddedblue3} + +% Very light blue greys +% 1. Not enough contrast +% \setbeamercolor{block body}{bg=deflightouter3} +% \setbeamercolor{block title}{bg=deflightouter2,fg=deflightouter3} + +% 2. Not enough contrast +% \setbeamercolor{block body}{bg=deflightouter3} +% \setbeamercolor{block title}{bg=deflightouter1,fg=deflightouter3} + +% 3. Combination of deflightouter and fly. The block bg is +% lighter than the all-beetle color scheme I previously thought was best. +% Currently I like this one the best +\setbeamercolor{block body}{bg=deflightouter3} +\setbeamercolor{block title}{bg=beetleaddedblue2,fg=deflightouter3} + +% 4. Greens. Looks like a highlighter. I don't really trust greens +% on projectors... It's almost too bright/hurts your eyes. +% \setbeamercolor{block body}{bg=defexblock} +% \setbeamercolor{block title}{bg=defaddedgreen,fg=defexblock} + +% This looks pretty good ... it's similar to the greens we had before +% but should be lighter. The blocks are just a little too "mint" colored +% though... +% \setbeamercolor{block body}{bg=defexblock} +% \setbeamercolor{block title}{bg=defexblockheader,fg=defexblock} + +% Pea Soup! +%\setbeamercolor{block body}{bg=defaddedgreen} +%\setbeamercolor{block title}{bg=defexblockheader,fg=defaddedgreen} + + +% Changing these didn't seem to do anything...I had to change the +% 'alerted text' color instead +\setbeamercolor{block body alerted}{} +\setbeamercolor{block body example}{} +\setbeamercolor{block title alerted}{parent=alerted text} +\setbeamercolor{block title example}{parent=example text} + +\setbeamercolor{item}{parent=local structure} +\setbeamercolor{subitem}{parent=item} +\setbeamercolor{subsubitem}{parent=subitem} + +\setbeamercolor{item projected}{parent=item,use=item,fg=white,bg=item.fg} +\setbeamercolor{subitem projected}{parent=item projected} +\setbeamercolor{subsubitem projected}{parent=subitem projected} + +\setbeamercolor{enumerate item}{parent=item} +\setbeamercolor{enumerate subitem}{parent=subitem} +\setbeamercolor{enumerate subsubitem}{parent=subsubitem} + +\setbeamercolor{itemize item}{parent=item} +\setbeamercolor{itemize subitem}{parent=subitem} +\setbeamercolor{itemize subsubitem}{parent=subsubitem} + +\setbeamercolor{itemize/enumerate body}{} +\setbeamercolor{itemize/enumerate subbody}{} +\setbeamercolor{itemize/enumerate subsubbody}{} + +\setbeamercolor{description item}{parent=item} + +\setbeamercolor{bibliography item}{parent=item} + +\setbeamercolor{bibliography entry author}{use=structure,fg=structure.fg} +\setbeamercolor{bibliography entry title}{use=normal text,fg=normal text.fg} +\setbeamercolor{bibliography entry location}{use=structure,fg=structure.fg!65!bg} +\setbeamercolor{bibliography entry note}{use=structure,fg=structure.fg!65!bg} + +\setbeamercolor{separation line}{} + +\setbeamercolor{upper separation line head}{parent=separation line} +\setbeamercolor{middle separation line head}{parent=separation line} +\setbeamercolor{lower separation line head}{parent=separation line} + +\setbeamercolor{upper separation line foot}{parent=separation line} +\setbeamercolor{middle separation line foot}{parent=separation line} +\setbeamercolor{lower separation line foot}{parent=separation line} + +\setbeamercolor{abstract}{} +\setbeamercolor{abstract title}{parent=structure} + +\setbeamercolor{verse}{} + +\setbeamercolor{quotation}{} +\setbeamercolor{quote}{parent=quotation} + +\setbeamercolor{page number in head/foot}{fg=fg!50!bg} + +\setbeamercolor{qed symbol}{parent=structure} + +\mode + diff --git a/my_docs/22/lmod_zoom_mtg_2022_05_03/beamercolorthemeTACC16.sty b/my_docs/22/lmod_zoom_mtg_2022_05_03/beamercolorthemeTACC16.sty deleted file mode 120000 index 58415801b..000000000 --- a/my_docs/22/lmod_zoom_mtg_2022_05_03/beamercolorthemeTACC16.sty +++ /dev/null @@ -1 +0,0 @@ -../../beamer/beamercolorthemeTACC16.sty \ No newline at end of file diff --git a/my_docs/22/lmod_zoom_mtg_2022_05_03/beamercolorthemeTACC16.sty b/my_docs/22/lmod_zoom_mtg_2022_05_03/beamercolorthemeTACC16.sty new file mode 100755 index 000000000..779dde91f --- /dev/null +++ b/my_docs/22/lmod_zoom_mtg_2022_05_03/beamercolorthemeTACC16.sty @@ -0,0 +1,192 @@ +% Copyright 2003 by Till Tantau . +% +% This program can be redistributed and/or modified under the terms +% of the GNU Public License, version 2. + +\mode + +\usepackage{textcase,regexpatch} + +\setbeamertemplate{blocks}[rounded][shadow=true] + + +\definecolor{TACCred}{RGB}{180,13,29} +\definecolor{TACCorange}{RGB}{210,104,43} +\definecolor{TACCblue}{RGB}{108, 134, 191} +\definecolor{TACCgreen}{RGB}{23,106,70} + +% I downloaded a gimp color palette from +% http://maururu.net/2007/latex-beamer-color-palette/ +% Which provides rgb values (I think) for several of the +% default beamer themes. You can open this in gimp by +% opening the Palettes dialog, right-clicking anywhere and choosing +% 'Import Palette'. A color in there called 'default added blue' +% appeared to be approximately what I wanted. It had the triple +% of values 141 145 208. If you double-click on this in the +% palette editor it gives you a bunch of information. You can't +% use these values directly to set a color...it just comes out white. +% I think definecolor is expecting something normalized by 255. Yes! + + +%%% +% Set the normal text color +%%% +\setbeamercolor{normal text}{fg=black} %,bg=white} +\setbeamercolor{example text}{fg=TACCgreen} +\setbeamercolor{alerted text}{fg=TACCorange} + + +\setbeamercolor{structure}{fg=black} +%\setbeamercolor{structure}{fg=black} + +\setbeamercolor{background canvas}{parent=normal text} +\setbeamercolor{background}{parent=background canvas} + +\setbeamercolor{palette primary}{use=structure,fg=structure.fg} +\setbeamercolor{palette secondary}{use=structure,fg=structure.fg!75!black} +\setbeamercolor{palette tertiary}{use=structure,fg=structure.fg!50!black} +\setbeamercolor{palette quaternary}{fg=black} + +\setbeamercolor{palette sidebar primary}{use=normal text,fg=normal text.fg} +\setbeamercolor{palette sidebar secondary}{use=structure,fg=structure.fg} +\setbeamercolor{palette sidebar tertiary}{use=normal text,fg=normal text.fg} +\setbeamercolor{palette sidebar quaternary}{use=structure,fg=structure.fg} + +\setbeamercolor{math text}{} +\setbeamercolor{math text inlined}{parent=math text} +\setbeamercolor{math text displayed}{parent=math text} + +\setbeamercolor{normal text in math text}{} + +\setbeamercolor{local structure}{parent=structure} + +\setbeamercolor{titlelike}{parent=structure} + +\setbeamercolor{title}{parent=titlelike} +\setbeamercolor{title in head/foot}{parent=palette quaternary} +\setbeamercolor{title in sidebar}{parent=palette sidebar quaternary} + +\setbeamercolor{subtitle}{parent=title} + +\setbeamercolor{author}{} +\setbeamercolor{author in head/foot}{parent=palette primary} +\setbeamercolor{author in sidebar}{use=palette sidebar tertiary,fg=palette sidebar tertiary.fg} + +\setbeamercolor{institute}{} +\setbeamercolor{institute in head/foot}{parent=palette tertiary} +\setbeamercolor{institute in sidebar}{use=palette sidebar tertiary,fg=palette sidebar tertiary.fg} + +\setbeamercolor{date}{} +\setbeamercolor{date in head/foot}{parent=palette secondary} +\setbeamercolor{date in sidebar}{use=palette sidebar tertiary,fg=palette sidebar tertiary.fg} + +\setbeamercolor{titlegraphic}{} + +\setbeamercolor{part name}{} +\setbeamercolor{part title}{parent=titlelike} + +\setbeamercolor{section in toc}{parent=structure} +\setbeamercolor{section in toc shaded}{parent=section in toc} +\setbeamercolor{section in head/foot}{parent=palette tertiary} +\setbeamercolor{section in sidebar}{parent=palette sidebar secondary} +\setbeamercolor{section in sidebar shaded}{use=section in sidebar,fg=section in sidebar.fg!40!bg} +\setbeamercolor{section number projected}{parent=item projected} + +\setbeamercolor{subsection in toc}{} +\setbeamercolor{subsection in toc shaded}{parent=subsection in toc} +\setbeamercolor{subsection in head/foot}{parent=palette secondary} +\setbeamercolor{subsection in sidebar}{parent=palette sidebar primary} +\setbeamercolor{subsection in sidebar shaded}{use=subsection in sidebar,fg=subsection in sidebar.fg!40!bg} +\setbeamercolor{subsection number projected}{parent={subitem projected}} + +\setbeamercolor{subsubsection in toc}{parent=subsection in toc} +\setbeamercolor{subsubsection in toc shaded}{parent=subsubsection in toc} +\setbeamercolor{subsubsection in head/foot}{parent=subsection in head/foot} +\setbeamercolor{subsubsection in sidebar}{parent=subsection in sidebar} +\setbeamercolor{subsubsection in sidebar shaded}{parent=subsection in sidebar shaded} +\setbeamercolor{subsubsection number projected}{parent=subsubitem projected} + +\setbeamercolor{headline}{} +\setbeamercolor{footline}{} + +\setbeamercolor{sidebar}{} +\setbeamercolor{sidebar left}{parent=sidebar} +\setbeamercolor{sidebar right}{parent=sidebar} + +\setbeamercolor{logo}{parent=palette secondary} + +\setbeamercolor{frametitle}{parent=titlelike} +\setbeamercolor{framesubtitle}{parent=frametitle} + +\setbeamercolor{frametitle right}{parent=frametitle} + +\setbeamercolor{caption}{} +\setbeamercolor{caption name}{parent=structure} + +\setbeamercolor{button}{use=local structure,bg=local structure.fg!50!bg,fg=white} +\setbeamercolor{button border}{use=button,fg=button.bg} +\setbeamercolor{navigation symbols}{use=structure,fg=structure.fg!40!bg} +\setbeamercolor{navigation symbols dimmed}{use=structure,fg=structure.fg!20!bg} +\setbeamercolor{mini frame}{parent=section in head/foot} + +\setbeamercolor{block body}{fg=black} +\setbeamercolor{block body alerted}{fg=black} +\setbeamercolor{block body example}{fg=black} + +\setbeamercolor{block title}{bg=TACCblue,fg=white} +\setbeamercolor{block title alerted}{bg=TACCred,fg=white} +\setbeamercolor{block title example}{bg=TACCgreen,fg=white} + +\setbeamercolor{item}{parent=local structure} +\setbeamercolor{subitem}{parent=item} +\setbeamercolor{subsubitem}{parent=subitem} + +\setbeamercolor{item projected}{parent=item,use=item,fg=black,bg=item.fg} +\setbeamercolor{subitem projected}{parent=item projected} +\setbeamercolor{subsubitem projected}{parent=subitem projected} + +\setbeamercolor{enumerate item}{parent=item} +\setbeamercolor{enumerate subitem}{parent=subitem} +\setbeamercolor{enumerate subsubitem}{parent=subsubitem} + +\setbeamercolor{itemize item}{parent=item} +\setbeamercolor{itemize subitem}{parent=subitem} +\setbeamercolor{itemize subsubitem}{parent=subsubitem} + +\setbeamercolor{itemize/enumerate body}{} +\setbeamercolor{itemize/enumerate subbody}{} +\setbeamercolor{itemize/enumerate subsubbody}{} + +\setbeamercolor{description item}{parent=item} + +\setbeamercolor{bibliography item}{parent=item} + +\setbeamercolor{bibliography entry author}{use=structure,fg=structure.fg} +\setbeamercolor{bibliography entry title}{use=normal text,fg=normal text.fg} +\setbeamercolor{bibliography entry location}{use=structure,fg=structure.fg!65!bg} +\setbeamercolor{bibliography entry note}{use=structure,fg=structure.fg!65!bg} + +\setbeamercolor{separation line}{} + +\setbeamercolor{upper separation line head}{parent=separation line} +\setbeamercolor{middle separation line head}{parent=separation line} +\setbeamercolor{lower separation line head}{parent=separation line} + +\setbeamercolor{upper separation line foot}{parent=separation line} +\setbeamercolor{middle separation line foot}{parent=separation line} +\setbeamercolor{lower separation line foot}{parent=separation line} + +\setbeamercolor{abstract}{} +\setbeamercolor{abstract title}{parent=structure} + +\setbeamercolor{verse}{} + +\setbeamercolor{quotation}{} +\setbeamercolor{quote}{parent=quotation} + +\setbeamercolor{page number in head/foot}{fg=fg!50!bg} + +\setbeamercolor{qed symbol}{parent=structure} + +\mode + diff --git a/my_docs/22/lmod_zoom_mtg_2022_05_03/beamerfontthemeTACC.sty b/my_docs/22/lmod_zoom_mtg_2022_05_03/beamerfontthemeTACC.sty deleted file mode 120000 index 78e971fb8..000000000 --- a/my_docs/22/lmod_zoom_mtg_2022_05_03/beamerfontthemeTACC.sty +++ /dev/null @@ -1 +0,0 @@ -../../beamer/beamerfontthemeTACC.sty \ No newline at end of file diff --git a/my_docs/22/lmod_zoom_mtg_2022_05_03/beamerfontthemeTACC.sty b/my_docs/22/lmod_zoom_mtg_2022_05_03/beamerfontthemeTACC.sty new file mode 100755 index 000000000..ef9ce1e5e --- /dev/null +++ b/my_docs/22/lmod_zoom_mtg_2022_05_03/beamerfontthemeTACC.sty @@ -0,0 +1,12 @@ +% Copyright 2003 by Till Tantau +% +% This program can be redistributed and/or modified under the terms +% of the GNU Public License, version 2. + +\mode + +\setbeamerfont{frametitle}{parent=structure,size=\LARGE,series=\bfseries} +\setbeamerfont{framesubtitle}{parent=frametitle,size=\small} + +\mode + \ No newline at end of file diff --git a/my_docs/22/lmod_zoom_mtg_2022_05_03/beamerfontthemeTACC16.sty b/my_docs/22/lmod_zoom_mtg_2022_05_03/beamerfontthemeTACC16.sty deleted file mode 120000 index a1f2fa5f9..000000000 --- a/my_docs/22/lmod_zoom_mtg_2022_05_03/beamerfontthemeTACC16.sty +++ /dev/null @@ -1 +0,0 @@ -../../beamer/beamerfontthemeTACC16.sty \ No newline at end of file diff --git a/my_docs/22/lmod_zoom_mtg_2022_05_03/beamerfontthemeTACC16.sty b/my_docs/22/lmod_zoom_mtg_2022_05_03/beamerfontthemeTACC16.sty new file mode 100755 index 000000000..b65271835 --- /dev/null +++ b/my_docs/22/lmod_zoom_mtg_2022_05_03/beamerfontthemeTACC16.sty @@ -0,0 +1,21 @@ +% Copyright 2003 by Till Tantau +% +% This program can be redistributed and/or modified under the terms +% of the GNU Public License, version 2. + +\mode +\setbeamerfont{title}{parent=structure,size=\LARGE,series=\bfseries} +\setbeamerfont{author}{parent=structure,size=\large, series=\normalfont} +\setbeamerfont{frametitle}{parent=structure,size=\LARGE,series=\bfseries} +\setbeamerfont{framesubtitle}{parent=frametitle,size=\small} + +%\usefonttheme{professionalfonts} % using non standard fonts for beamer +%\usefonttheme{serif} % default family is serif +%\usepackage{fontspec} +%\setmainfont{Century Gothic} + +\usepackage{fontspec} +\usepackage{libertine} + +\mode + diff --git a/my_docs/22/lmod_zoom_mtg_2022_05_03/beamerinnerthemeTACC.sty b/my_docs/22/lmod_zoom_mtg_2022_05_03/beamerinnerthemeTACC.sty deleted file mode 120000 index 8d5ae3921..000000000 --- a/my_docs/22/lmod_zoom_mtg_2022_05_03/beamerinnerthemeTACC.sty +++ /dev/null @@ -1 +0,0 @@ -../../beamer/beamerinnerthemeTACC.sty \ No newline at end of file diff --git a/my_docs/22/lmod_zoom_mtg_2022_05_03/beamerinnerthemeTACC.sty b/my_docs/22/lmod_zoom_mtg_2022_05_03/beamerinnerthemeTACC.sty new file mode 100755 index 000000000..29e2bce81 --- /dev/null +++ b/my_docs/22/lmod_zoom_mtg_2022_05_03/beamerinnerthemeTACC.sty @@ -0,0 +1,11 @@ +\mode + +\setbeamertemplate{itemize item}[circle] +\setbeamertemplate{itemize subitem}{{}--{}} +\setbeamertemplate{itemize subsubitem}[circle] +\setbeamertemplate{section in toc}{$\bullet$\hskip.5em\inserttocsection} +%\setbeamertemplate{subsection in toc}{} +\setbeamertemplate{subsubsection in toc}{} + +\mode + diff --git a/my_docs/22/lmod_zoom_mtg_2022_05_03/beamerinnerthemeTACC16.sty b/my_docs/22/lmod_zoom_mtg_2022_05_03/beamerinnerthemeTACC16.sty deleted file mode 120000 index 5955acc99..000000000 --- a/my_docs/22/lmod_zoom_mtg_2022_05_03/beamerinnerthemeTACC16.sty +++ /dev/null @@ -1 +0,0 @@ -../../beamer/beamerinnerthemeTACC16.sty \ No newline at end of file diff --git a/my_docs/22/lmod_zoom_mtg_2022_05_03/beamerinnerthemeTACC16.sty b/my_docs/22/lmod_zoom_mtg_2022_05_03/beamerinnerthemeTACC16.sty new file mode 100755 index 000000000..f7f454e1d --- /dev/null +++ b/my_docs/22/lmod_zoom_mtg_2022_05_03/beamerinnerthemeTACC16.sty @@ -0,0 +1,11 @@ +\mode + +\setbeamertemplate{itemize item}[triangle] +\setbeamertemplate{itemize subitem}[triangle] +\setbeamertemplate{itemize subsubitem}[triangle] +\setbeamertemplate{section in toc}{$\bullet$\hskip.5em\inserttocsection} +%\setbeamertemplate{subsection in toc}{} +\setbeamertemplate{subsubsection in toc}{} + +\mode + diff --git a/my_docs/22/lmod_zoom_mtg_2022_05_03/beamerouterthemeTACC.sty b/my_docs/22/lmod_zoom_mtg_2022_05_03/beamerouterthemeTACC.sty deleted file mode 120000 index da0a45d33..000000000 --- a/my_docs/22/lmod_zoom_mtg_2022_05_03/beamerouterthemeTACC.sty +++ /dev/null @@ -1 +0,0 @@ -../../beamer/beamerouterthemeTACC.sty \ No newline at end of file diff --git a/my_docs/22/lmod_zoom_mtg_2022_05_03/beamerouterthemeTACC.sty b/my_docs/22/lmod_zoom_mtg_2022_05_03/beamerouterthemeTACC.sty new file mode 100755 index 000000000..038580303 --- /dev/null +++ b/my_docs/22/lmod_zoom_mtg_2022_05_03/beamerouterthemeTACC.sty @@ -0,0 +1,196 @@ +% Copyright 2003 by Till Tantau +% +% This program can be redistributed and/or modified under the terms +% of the GNU Public License, version 2. + +\mode + +\setbeamertemplate{frametitle}[default][center] +\addtobeamertemplate{frametitle}{\vskip 4ex minus 4ex}{} + +% Here we define what appears at the bottom of each slide: the "footline". +\setbeamertemplate{footline}{% + \leavevmode% + + % Horizontal line dividing the rest of the slide from the footer? + % hrule goes all the way across... + % \hrule height.3pt% + % With \rule, you can specify the thickness + % \rule[raise-height]{width}{thickness} + \hspace{.025\textwidth}\rule{.95\textwidth}{.5pt} + + \hbox{% + % On the left half of the footer, insert the TACC logo + \begin{minipage}{.5\textwidth}% + \hskip .033\textwidth%Give horizontal space else this will set on the left edge of the slide! + % TACC logo with custom viewport! + \includegraphics[viewport=1 -1 135 35, clip=true, width=.4\textwidth]{figures/TACC_logo} + \end{minipage} + % + \begin{minipage}{.5\textwidth}% + \vskip .023\textheight% + \raggedleft% + \setlength{\rightskip}{.033\textwidth} + % + % If we are not on the first page, insert a page number + % For some reason, insertframenumber is buggy when you have fragile + % slides with verbatim environments in them... it tends to skip numbers + % for some reason! On the other hand, the pagenumber is incremented + % for *every* slide, including transition slides... + \ifnum \thepage>1 + % \insertshorttitle + \insertframenumber + % \insertframenumber/\inserttotalframenumber + % \insertpagenumber + \else % Do a phantom of whatever you do on other pages, so spacing matches + %$\phantom{\insertshorttitle}$ + $\phantom{\insertframenumber}$ + %$\phantom{\insertframenumber/\inserttotalframenumber}$ + %$\phantom{\insertpagenumber}$ + \fi + \hfill\includegraphics[width=.5\textwidth]{figures/UT_logo}% + \end{minipage}% + }% + \vskip .023\textheight% +} + + + + +\ifTACCheadernav + +\usesectionheadtemplate +{\hfill\insertsectionhead} +{\hfill\color{fg!50!bg}\insertsectionhead} + +% Head +\ifbeamer@compress + +% Here we define how the top of the frame looks, the "headline". +\setbeamertemplate{headline} +{% + \ifnum \thepage>1 + \leavevmode% + \begin{beamercolorbox}[wd=.5\paperwidth,ht=2.5ex,dp=1.125ex]{% + section in head/foot}% + \insertsectionnavigationhorizontal{.5\paperwidth}{\hskip0pt plus1filll}{}% + \end{beamercolorbox}% + \begin{beamercolorbox}[wd=.5\paperwidth,ht=2.5ex,dp=1.125ex]{% + subsection in head/foot}% + \insertsubsectionnavigationhorizontal{% + .5\paperwidth}{}{\hskip0pt plus1filll}% + \end{beamercolorbox}% + \fi %\thepage>1 +} + +\else% Not compressed + +\setbeamertemplate{headline} +{% + \ifnum \thepage>1 + \leavevmode% + \@tempdimb=2.4375ex% + \ifnum\beamer@subsectionmax<\beamer@sectionmax% + \multiply\@tempdimb by\beamer@sectionmax% + \else% + \multiply\@tempdimb by\beamer@subsectionmax% + \fi% + \ifdim\@tempdimb>0pt% + \advance\@tempdimb by 1.125ex% + \begin{beamercolorbox}[wd=.5\paperwidth,ht=\@tempdimb]{% + section in head/foot}% + \vbox to\@tempdimb{\vfil\insertsectionnavigation{.5\paperwidth}\vfil}% + \end{beamercolorbox}% + \begin{beamercolorbox}[wd=.5\paperwidth,ht=\@tempdimb]{% + subsection in head/foot}% + \vbox to\@tempdimb{\vfil\insertsubsectionnavigation{.5\paperwidth}\vfil}% + \end{beamercolorbox}% + \fi% + \fi % \thepage>1 +} + +\fi % end if compressed +\fi % TACCheadernav + + +\ifTACCheadertree + +\setbeamertemplate{headline} +{ + \begin{beamercolorbox}[wd=\paperwidth,colsep=1.5pt + ]{upper separation line head} + \end{beamercolorbox} + % + % Place short title + % + \begin{beamercolorbox}[wd=\paperwidth,ht=2.5ex,dp=1.125ex,% + leftskip=.3cm,rightskip=.3cm plus1fil]{title in head/foot} + \usebeamerfont{title in head/foot}\insertshorttitle + \end{beamercolorbox} + + % + % Place section + % + \begin{beamercolorbox}[wd=\paperwidth,ht=2.5ex,dp=1.125ex,% + leftskip=.3cm,rightskip=.3cm plus1fil]{section in head/foot} + \usebeamerfont{section in head/foot}% + %\ifbeamer@tree@showhooks + \setbox\beamer@tempbox=\hbox{\insertsectionhead}% + \ifdim\wd\beamer@tempbox>1pt% + \hskip2pt\raise1.9pt\hbox{\vrule width0.4pt height1.875ex\vrule width 5pt height0.4pt}% + \hskip1pt% + \fi% \ifdim + %\else% + %\hskip6pt% + %\fi% \ifbeamer + \insertsectionhead + \end{beamercolorbox} + +% +% Place subsection +% +\begin{beamercolorbox}[wd=\paperwidth,ht=2.5ex,dp=1.125ex,% + leftskip=.3cm,rightskip=.3cm plus1fil]{subsection in head/foot} + \usebeamerfont{subsection in head/foot}% + %\ifbeamer@tree@showhooks + \setbox\beamer@tempbox=\hbox{\insertsubsectionhead}% + \ifdim\wd\beamer@tempbox>1pt% + \hskip9.4pt\raise1.9pt\hbox{\vrule width0.4pt height1.875ex\vrule width 5pt height0.4pt}% + \hskip1pt% + \fi% \ifdim + %\else% + %\hskip12pt% + %\fi% \ifbeamer + \insertsubsectionhead +\end{beamercolorbox} + +% +% Place final separation box +% + \begin{beamercolorbox}[wd=\paperwidth,colsep=1.5pt + ]{lower separation line head} + \end{beamercolorbox} + + % + % Another matching rule which helps to frame the content + % + \hspace{.025\textwidth}\rule{.95\textwidth}{.5pt} +} +\fi % TACCheadertree + + +% The following command suppresses all navigation symbols. This is +% necessary in the TACC theme, since it overlaps where we want the +% logo to be. +\setbeamertemplate{navigation symbols}{} + +% Align the navigation symbols vertically (still overlaps our logo!) +%\setbeamertemplate{navigation symbols}[vertical]{} + +% Only places the slide-forward and slide-back symbol, but yes, +% this still overlaps our logo! +%\setbeamertemplate{navigation symbols}[only frame symbol]{} + + +\mode + diff --git a/my_docs/22/lmod_zoom_mtg_2022_05_03/beamerouterthemeTACC16.sty b/my_docs/22/lmod_zoom_mtg_2022_05_03/beamerouterthemeTACC16.sty deleted file mode 120000 index 54bd09537..000000000 --- a/my_docs/22/lmod_zoom_mtg_2022_05_03/beamerouterthemeTACC16.sty +++ /dev/null @@ -1 +0,0 @@ -../../beamer/beamerouterthemeTACC16.sty \ No newline at end of file diff --git a/my_docs/22/lmod_zoom_mtg_2022_05_03/beamerouterthemeTACC16.sty b/my_docs/22/lmod_zoom_mtg_2022_05_03/beamerouterthemeTACC16.sty new file mode 100755 index 000000000..d5e6388c7 --- /dev/null +++ b/my_docs/22/lmod_zoom_mtg_2022_05_03/beamerouterthemeTACC16.sty @@ -0,0 +1,312 @@ +% Antonio Gomez (agomez@tacc.utexas.edu) +% 4-20-17. Added option to put the footer on the right side + + + +\mode + +\usepackage{xcolor} +\usepackage{graphicx} +\usepackage{etoolbox} + + + +% This theme accepts the "rightfooter" option +% When used, it will put the TACC logo at the bottom of the slide on the right side +% By default, it goes to the left + +\xifaspectratio{ + {169} { + \pgfdeclareimage[width=\paperwidth]{titlebackground}{./figures/master169.jpg} + \if@rightfooterOption + \pgfdeclareimage[width=\paperwidth]{background}{./figures/secondary_right169.jpg} +\else + \pgfdeclareimage[width=\paperwidth]{background}{./figures/secondary169.jpg} +\fi +} +}[ +\pgfdeclareimage[width=\paperwidth]{titlebackground}{./figures/master.jpg} + \if@rightfooterOption + \pgfdeclareimage[width=\paperwidth]{background}{./figures/secondary_right.jpg} +\else + \pgfdeclareimage[width=\paperwidth]{background}{./figures/secondary.jpg} +\fi +] + +\setbeamertemplate{background canvas}{% +\xifaspectratio{ + {169} { + \ifnum\c@framenumber=1 % + \begin{picture}(0,0) + \put(-3,-256){% + \pgfuseimage{titlebackground} + } + \end{picture} + \else% + \begin{picture}(0,0) + \put(-3,-260){% + \pgfuseimage{background} + } + \end{picture} + \fi + } + {43} { + \ifnum\c@framenumber=1 % + \begin{picture}(0,0) + \put(-4,-274){% + \pgfuseimage{titlebackground} + } + \end{picture} + \else% + \begin{picture}(0,0) + \put(-4,-274){% + \pgfuseimage{background} + } + \end{picture} + \fi + } +} +} + + + +%\setbeamertemplate{background canvas}{% +% % On title page +% \ifnum\c@framenumber=1 % +% \begin{picture}(0,0) +% \put(0,-253){% +% \pgfuseimage{titlebackground} +% } +% \end{picture} +% +% \else% +% \xifaspectratio{ +% {169} { +% % Other frames background +% \begin{picture}(0,0) +% \put(-4,-260){% +% \pgfuseimage{background} +% } +% \end{picture} +% } +% }[ +% % Other frames background +% \begin{picture}(0,0) +% \put(-4,-274){% +% \pgfuseimage{background} +% } +% \end{picture} +% ] +% \fi% +%} + + +\setbeamertemplate{title page}{ +\vspace{40pt} +\begin{center} +\usebeamerfont{title} {\huge \inserttitle}\par +\vspace{4ex} +\usebeamerfont{author} { + \insertauthor +}\par +\vspace{2ex} +\usebeamerfont{institute}{ + \insertinstitute +} \par +\vspace{2ex} +\usebeamerfont{date}{ + \insertdate +} +\end{center} +} + + +\setbeamertemplate{frametitle}[default][center] +\setbeamertemplate{frametitle}{ + \makeatletter + \regexpatchcmd{\insertframetitle} + {(\c{usebeamertemplate}.*)\c{fi}} + {\c{NoCaseChange}\cB\{\1\cE\}\c{fi}} + {}{}% + \makeatother + \vskip1ex + \insertframetitle +} + +% Here we define what appears at the bottom of each slide: the "footline". +\setbeamertemplate{footline}{% + \leavevmode% + + % Horizontal line dividing the rest of the slide from the footer? + % hrule goes all the way across... + % \hrule height.3pt% + % With \rule, you can specify the thickness + % \rule[raise-height]{width}{thickness} + % \hspace{.025\textwidth}\rule{.95\textwidth}{.5pt} + + \hbox{% + \ifnum \thepage>1 + \if@rightfooterOption + \begin{minipage}{.2\textwidth}% + \hskip .05\textwidth%Give horizontal space else this will set on the left edge of the slide! + \end{minipage} + \else + \begin{minipage}{.4\textwidth}% + \hskip .05\textwidth%Give horizontal space else this will set on the left edge of the slide! + \end{minipage} + \fi + + + \begin{minipage}{\textwidth}% + % \vskip .023\textheight% + \raggedleft% + \setlength{\rightskip}{\textwidth} + \if@rightfooterOption + \hbox{% + \begin{beamercolorbox}[wd=0.7\textwidth,ht=2.25ex,dp=1ex,left]{author in head/foot}% + \insertshorttitle{} \hskip .01\textwidth | \hskip .01\textwidth \insertdate{} \hskip .01\textwidth | \hskip .01\textwidth \insertframenumber{} + \end{beamercolorbox}% + } + \else + \hbox{% + \begin{beamercolorbox}[wd=0.5\textwidth,ht=2.25ex,dp=1ex,left]{author in head/foot}% + \insertshorttitle{} \hskip .01\textwidth | \hskip .01\textwidth \insertdate{} \hskip .01\textwidth | \hskip .01\textwidth \insertframenumber{} + \end{beamercolorbox}% + } + \fi + + \end{minipage}% + \begin{minipage}{.05\textwidth}% + \end{minipage}% + \fi %\thepage>1 + }% + \vskip .023\textheight% + +} + + + + +\ifTACCheadernav + +\usesectionheadtemplate +{\hfill\insertsectionhead} +{\hfill\color{fg!50!bg}\insertsectionhead} + +% Head +\ifbeamer@compress + +% Here we define how the top of the frame looks, the "headline". +\setbeamertemplate{headline} +{% + \ifnum \thepage>1 + \leavevmode% + \begin{beamercolorbox}[wd=.5\paperwidth,ht=2.5ex,dp=1.125ex]{% + section in head/foot}% + \insertsectionnavigationhorizontal{.5\paperwidth}{\hskip0pt plus1filll}{}% + \end{beamercolorbox}% + \begin{beamercolorbox}[wd=.5\paperwidth,ht=2.5ex,dp=1.125ex]{% + subsection in head/foot}% + \insertsubsectionnavigationhorizontal{% + .5\paperwidth}{}{\hskip0pt plus1filll}% + \end{beamercolorbox}% + \fi %\thepage>1 +} + +\else% Not compressed + +\setbeamertemplate{headline} +{% + \ifnum \thepage>1 + \leavevmode% + \@tempdimb=2.4375ex% + \ifnum\beamer@subsectionmax<\beamer@sectionmax% + \multiply\@tempdimb by\beamer@sectionmax% + \else% + \multiply\@tempdimb by\beamer@subsectionmax% + \fi% + \ifdim\@tempdimb>0pt% + \advance\@tempdimb by 1.125ex% + \begin{beamercolorbox}[wd=.5\paperwidth,ht=\@tempdimb]{% + section in head/foot}% + \vbox to\@tempdimb{\vfil\insertsectionnavigation{.5\paperwidth}\vfil}% + \end{beamercolorbox}% + \begin{beamercolorbox}[wd=.5\paperwidth,ht=\@tempdimb]{% + subsection in head/foot}% + \vbox to\@tempdimb{\vfil\insertsubsectionnavigation{.5\paperwidth}\vfil}% + \end{beamercolorbox}% + \fi% + \fi % \thepage>1 +} + +\fi % end if compressed +\fi % TACCheadernav + + +\ifTACCheadertree + +\setbeamertemplate{headline} +{ + \begin{beamercolorbox}[wd=\paperwidth,colsep=1.5pt]{upper separation line head} + \end{beamercolorbox} + % + % Place short title + % + \begin{beamercolorbox}[wd=\paperwidth,ht=2.5ex,dp=1.125ex,% + leftskip=.3cm,rightskip=.3cm plus1fil]{title in head/foot} + \usebeamerfont{title in head/foot}\insertshorttitle + \end{beamercolorbox} + + % + % Place section + % + \begin{beamercolorbox}[wd=\paperwidth,ht=2.5ex,dp=1.125ex,% + leftskip=.3cm,rightskip=.3cm plus1fil]{section in head/foot} + \usebeamerfont{section in head/foot}% + %\ifbeamer@tree@showhooks + \setbox\beamer@tempbox=\hbox{\insertsectionhead}% + \ifdim\wd\beamer@tempbox>1pt% + \hskip2pt\raise1.9pt\hbox{\vrule width0.4pt height1.875ex\vrule width 5pt height0.4pt}% + \hskip1pt% + \fi + \insertsectionhead + \end{beamercolorbox} + +% +% Place subsection +% +\begin{beamercolorbox}[wd=\paperwidth,ht=2.5ex,dp=1.125ex,% + leftskip=.3cm,rightskip=.3cm plus1fil]{subsection in head/foot} + \usebeamerfont{subsection in head/foot}% + %\ifbeamer@tree@showhooks + \setbox\beamer@tempbox=\hbox{\insertsubsectionhead}% + \ifdim\wd\beamer@tempbox>1pt% + \hskip9.4pt\raise1.9pt\hbox{\vrule width0.4pt height1.875ex\vrule width 5pt height0.4pt}% + \hskip1pt% + \fi + \insertsubsectionhead +\end{beamercolorbox} + +% +% Place final separation box +% + \begin{beamercolorbox}[wd=\paperwidth,colsep=1.5pt + ]{lower separation line head} + \end{beamercolorbox} + + % + % Another matching rule which helps to frame the content + % + \hspace{.025\textwidth}\rule{.95\textwidth}{.5pt} +} +\fi % TACCheadertree + + +% The following command suppresses all navigation symbols. This is +% necessary in the TACC theme, since it overlaps where we want the +% logo to be. +\setbeamertemplate{navigation symbols}{} + + +\mode + diff --git a/my_docs/22/lmod_zoom_mtg_2022_05_03/beamerthemeTACC.sty b/my_docs/22/lmod_zoom_mtg_2022_05_03/beamerthemeTACC.sty deleted file mode 120000 index 5c339abd4..000000000 --- a/my_docs/22/lmod_zoom_mtg_2022_05_03/beamerthemeTACC.sty +++ /dev/null @@ -1 +0,0 @@ -../../beamer/beamerthemeTACC.sty \ No newline at end of file diff --git a/my_docs/22/lmod_zoom_mtg_2022_05_03/beamerthemeTACC.sty b/my_docs/22/lmod_zoom_mtg_2022_05_03/beamerthemeTACC.sty new file mode 100755 index 000000000..c6a1b1269 --- /dev/null +++ b/my_docs/22/lmod_zoom_mtg_2022_05_03/beamerthemeTACC.sty @@ -0,0 +1,26 @@ +%% TACC theme for beamer + +\newif\ifTACCheadernav +\DeclareOption{headernav}{\global\TACCheadernavtrue} + +\newif\ifTACCheadertree +\DeclareOption{headertree}{\global\TACCheadertreetrue} +\ProcessOptions + +\mode + +\usefonttheme{TACC} +\usecolortheme{TACC} +\useinnertheme{TACC} +\useoutertheme{TACC} + +\mode + + +\newcommand{\event}[1]{% + \makeatletter% + \def\TACC@eventname{#1}% + \makeatother} + +\newcommand{\sectionframe}[1]{\section{#1}\frame{\Large\textbf{#1}}} +\newcommand{\subsectionframe}[1]{\subsection{#1}\frame{\large\textbf{#1}}} diff --git a/my_docs/22/lmod_zoom_mtg_2022_05_03/beamerthemeTACC16.sty b/my_docs/22/lmod_zoom_mtg_2022_05_03/beamerthemeTACC16.sty deleted file mode 120000 index 7a9d4d296..000000000 --- a/my_docs/22/lmod_zoom_mtg_2022_05_03/beamerthemeTACC16.sty +++ /dev/null @@ -1 +0,0 @@ -../../beamer/beamerthemeTACC16.sty \ No newline at end of file diff --git a/my_docs/22/lmod_zoom_mtg_2022_05_03/beamerthemeTACC16.sty b/my_docs/22/lmod_zoom_mtg_2022_05_03/beamerthemeTACC16.sty new file mode 100755 index 000000000..b522d0207 --- /dev/null +++ b/my_docs/22/lmod_zoom_mtg_2022_05_03/beamerthemeTACC16.sty @@ -0,0 +1,61 @@ +%% TACC theme for beamer + + +\newif\if@rightfooterOption +\@rightfooterOptionfalse +\DeclareOption{rightfooter}{\@rightfooterOptiontrue} +\ProcessOptions + + +\newif\ifTACCheadernav +\DeclareOption{headernav}{\global\TACCheadernavtrue} + +\newif\ifTACCheadertree +\DeclareOption{headertree}{\global\TACCheadertreetrue} +\ProcessOptions + +\usepackage{xparse} +\ExplSyntaxOn +\NewDocumentCommand{\ifaspectratio}{mmm} + { + % Recover the option from those passed to the class + \keys_set:nf { zunbeltz/beameroptions } { \use:c { opt@beamer.cls } } + \str_if_eq:nVTF { #1 } \l_zunbeltz_aspectratio_tl { #2 } { #3 } + } +\NewDocumentCommand{\xifaspectratio}{mO{}} + { + % Recover the option from those passed to the class + \keys_set:nf { zunbeltz/beameroptions } { \use:c { opt@beamer.cls } } + \str_case:VnF \l_zunbeltz_aspectratio_tl { #1 } { #2 } + } +% We need to define only one key, the other are treated as `unknown' +\keys_define:nn { zunbeltz/beameroptions } + { + aspectratio .tl_set:N = \l_zunbeltz_aspectratio_tl, + aspectratio .initial:n = 43, + unknown .code:n = {}, + } + +% Generate the variants we need +\cs_generate_variant:Nn \keys_set:nn { nf } +\cs_generate_variant:Nn \str_if_eq:nnTF { nV } +\cs_generate_variant:Nn \str_case:nnF { V } +\ExplSyntaxOff + +\mode + +\usefonttheme{TACC16} +\useinnertheme{TACC16} +\useoutertheme{TACC16} +\usecolortheme{TACC16} + +\mode + + +\newcommand{\event}[1]{% + \makeatletter% + \def\TACC@eventname{#1}% + \makeatother} + +\newcommand{\sectionframe}[1]{\section{#1}\frame{\Large\textbf{#1}}} +\newcommand{\subsectionframe}[1]{\subsection{#1}\frame{\large\textbf{#1}}} diff --git a/my_docs/22/lmod_zoom_mtg_2022_05_03/figures b/my_docs/22/lmod_zoom_mtg_2022_05_03/figures deleted file mode 120000 index ddafd8974..000000000 --- a/my_docs/22/lmod_zoom_mtg_2022_05_03/figures +++ /dev/null @@ -1 +0,0 @@ -../../beamer/figures \ No newline at end of file diff --git a/my_docs/22/lmod_zoom_mtg_2022_05_03/figures/TACC_logo.pdf b/my_docs/22/lmod_zoom_mtg_2022_05_03/figures/TACC_logo.pdf new file mode 100755 index 000000000..c018a20cb Binary files /dev/null and b/my_docs/22/lmod_zoom_mtg_2022_05_03/figures/TACC_logo.pdf differ diff --git a/my_docs/22/lmod_zoom_mtg_2022_05_03/figures/UT_logo.pdf b/my_docs/22/lmod_zoom_mtg_2022_05_03/figures/UT_logo.pdf new file mode 100755 index 000000000..d5b42e752 Binary files /dev/null and b/my_docs/22/lmod_zoom_mtg_2022_05_03/figures/UT_logo.pdf differ diff --git a/my_docs/22/lmod_zoom_mtg_2022_05_03/figures/cc.png b/my_docs/22/lmod_zoom_mtg_2022_05_03/figures/cc.png new file mode 100644 index 000000000..8a532ff8f Binary files /dev/null and b/my_docs/22/lmod_zoom_mtg_2022_05_03/figures/cc.png differ diff --git a/my_docs/22/lmod_zoom_mtg_2022_05_03/figures/isa.png b/my_docs/22/lmod_zoom_mtg_2022_05_03/figures/isa.png new file mode 100644 index 000000000..f95d985e7 Binary files /dev/null and b/my_docs/22/lmod_zoom_mtg_2022_05_03/figures/isa.png differ diff --git a/my_docs/22/lmod_zoom_mtg_2022_05_03/figures/master.jpg b/my_docs/22/lmod_zoom_mtg_2022_05_03/figures/master.jpg new file mode 100644 index 000000000..f5c56c04a Binary files /dev/null and b/my_docs/22/lmod_zoom_mtg_2022_05_03/figures/master.jpg differ diff --git a/my_docs/22/lmod_zoom_mtg_2022_05_03/figures/master169.jpg b/my_docs/22/lmod_zoom_mtg_2022_05_03/figures/master169.jpg new file mode 100644 index 000000000..b215776eb Binary files /dev/null and b/my_docs/22/lmod_zoom_mtg_2022_05_03/figures/master169.jpg differ diff --git a/my_docs/22/lmod_zoom_mtg_2022_05_03/figures/master169.png b/my_docs/22/lmod_zoom_mtg_2022_05_03/figures/master169.png new file mode 100644 index 000000000..bc5c0ed12 Binary files /dev/null and b/my_docs/22/lmod_zoom_mtg_2022_05_03/figures/master169.png differ diff --git a/my_docs/22/lmod_zoom_mtg_2022_05_03/figures/secondary.jpg b/my_docs/22/lmod_zoom_mtg_2022_05_03/figures/secondary.jpg new file mode 100644 index 000000000..d905a95c9 Binary files /dev/null and b/my_docs/22/lmod_zoom_mtg_2022_05_03/figures/secondary.jpg differ diff --git a/my_docs/22/lmod_zoom_mtg_2022_05_03/figures/secondary169.jpg b/my_docs/22/lmod_zoom_mtg_2022_05_03/figures/secondary169.jpg new file mode 100644 index 000000000..4eb017957 Binary files /dev/null and b/my_docs/22/lmod_zoom_mtg_2022_05_03/figures/secondary169.jpg differ diff --git a/my_docs/22/lmod_zoom_mtg_2022_05_03/figures/secondary169.png b/my_docs/22/lmod_zoom_mtg_2022_05_03/figures/secondary169.png new file mode 100644 index 000000000..cb9060a56 Binary files /dev/null and b/my_docs/22/lmod_zoom_mtg_2022_05_03/figures/secondary169.png differ diff --git a/my_docs/22/lmod_zoom_mtg_2022_05_03/figures/secondary_right.jpg b/my_docs/22/lmod_zoom_mtg_2022_05_03/figures/secondary_right.jpg new file mode 100644 index 000000000..f25f93a58 Binary files /dev/null and b/my_docs/22/lmod_zoom_mtg_2022_05_03/figures/secondary_right.jpg differ diff --git a/my_docs/22/lmod_zoom_mtg_2022_05_03/figures/secondary_right169.jpg b/my_docs/22/lmod_zoom_mtg_2022_05_03/figures/secondary_right169.jpg new file mode 100644 index 000000000..567a1078f Binary files /dev/null and b/my_docs/22/lmod_zoom_mtg_2022_05_03/figures/secondary_right169.jpg differ diff --git a/my_docs/22/lmod_zoom_mtg_2022_05_03/themes b/my_docs/22/lmod_zoom_mtg_2022_05_03/themes deleted file mode 120000 index a98530730..000000000 --- a/my_docs/22/lmod_zoom_mtg_2022_05_03/themes +++ /dev/null @@ -1 +0,0 @@ -../../beamer/themes \ No newline at end of file diff --git a/my_docs/22/lmod_zoom_mtg_2022_05_03/themes/beamercolorthemeTACC16.sty b/my_docs/22/lmod_zoom_mtg_2022_05_03/themes/beamercolorthemeTACC16.sty new file mode 100644 index 000000000..248ae8cb6 --- /dev/null +++ b/my_docs/22/lmod_zoom_mtg_2022_05_03/themes/beamercolorthemeTACC16.sty @@ -0,0 +1,193 @@ +% Copyright 2003 by Till Tantau . +% +% This program can be redistributed and/or modified under the terms +% of the GNU Public License, version 2. + +\mode + +\usepackage{textcase,regexpatch} + +\setbeamertemplate{blocks}[rounded][shadow=true] + + +\definecolor{TACCred}{RGB}{180,13,29} +\definecolor{TACCorange}{RGB}{210,104,43} +\definecolor{TACCblue}{RGB}{21,77,122} +%\definecolor{TACCgreen}{RGB}{30,134,104} +\definecolor{TACCgreen}{RGB}{49,168,51} + +% I downloaded a gimp color palette from +% http://maururu.net/2007/latex-beamer-color-palette/ +% Which provides rgb values (I think) for several of the +% default beamer themes. You can open this in gimp by +% opening the Palettes dialog, right-clicking anywhere and choosing +% 'Import Palette'. A color in there called 'default added blue' +% appeared to be approximately what I wanted. It had the triple +% of values 141 145 208. If you double-click on this in the +% palette editor it gives you a bunch of information. You can't +% use these values directly to set a color...it just comes out white. +% I think definecolor is expecting something normalized by 255. Yes! + + +%%% +% Set the normal text color +%%% +\setbeamercolor{normal text}{fg=black} %,bg=white} +\setbeamercolor{example text}{fg=TACCgreen} +\setbeamercolor{alerted text}{fg=TACCorange} + + +\setbeamercolor{structure}{fg=black} +%\setbeamercolor{structure}{fg=black} + +\setbeamercolor{background canvas}{parent=normal text} +\setbeamercolor{background}{parent=background canvas} + +\setbeamercolor{palette primary}{use=structure,fg=structure.fg} +\setbeamercolor{palette secondary}{use=structure,fg=structure.fg!75!black} +\setbeamercolor{palette tertiary}{use=structure,fg=structure.fg!50!black} +\setbeamercolor{palette quaternary}{fg=black} + +\setbeamercolor{palette sidebar primary}{use=normal text,fg=normal text.fg} +\setbeamercolor{palette sidebar secondary}{use=structure,fg=structure.fg} +\setbeamercolor{palette sidebar tertiary}{use=normal text,fg=normal text.fg} +\setbeamercolor{palette sidebar quaternary}{use=structure,fg=structure.fg} + +\setbeamercolor{math text}{} +\setbeamercolor{math text inlined}{parent=math text} +\setbeamercolor{math text displayed}{parent=math text} + +\setbeamercolor{normal text in math text}{} + +\setbeamercolor{local structure}{parent=structure} + +\setbeamercolor{titlelike}{parent=structure} + +\setbeamercolor{title}{parent=titlelike} +\setbeamercolor{title in head/foot}{parent=palette quaternary} +\setbeamercolor{title in sidebar}{parent=palette sidebar quaternary} + +\setbeamercolor{subtitle}{parent=title} + +\setbeamercolor{author}{} +\setbeamercolor{author in head/foot}{parent=palette primary} +\setbeamercolor{author in sidebar}{use=palette sidebar tertiary,fg=palette sidebar tertiary.fg} + +\setbeamercolor{institute}{} +\setbeamercolor{institute in head/foot}{parent=palette tertiary} +\setbeamercolor{institute in sidebar}{use=palette sidebar tertiary,fg=palette sidebar tertiary.fg} + +\setbeamercolor{date}{} +\setbeamercolor{date in head/foot}{parent=palette secondary} +\setbeamercolor{date in sidebar}{use=palette sidebar tertiary,fg=palette sidebar tertiary.fg} + +\setbeamercolor{titlegraphic}{} + +\setbeamercolor{part name}{} +\setbeamercolor{part title}{parent=titlelike} + +\setbeamercolor{section in toc}{parent=structure} +\setbeamercolor{section in toc shaded}{parent=section in toc} +\setbeamercolor{section in head/foot}{parent=palette tertiary} +\setbeamercolor{section in sidebar}{parent=palette sidebar secondary} +\setbeamercolor{section in sidebar shaded}{use=section in sidebar,fg=section in sidebar.fg!40!bg} +\setbeamercolor{section number projected}{parent=item projected} + +\setbeamercolor{subsection in toc}{} +\setbeamercolor{subsection in toc shaded}{parent=subsection in toc} +\setbeamercolor{subsection in head/foot}{parent=palette secondary} +\setbeamercolor{subsection in sidebar}{parent=palette sidebar primary} +\setbeamercolor{subsection in sidebar shaded}{use=subsection in sidebar,fg=subsection in sidebar.fg!40!bg} +\setbeamercolor{subsection number projected}{parent={subitem projected}} + +\setbeamercolor{subsubsection in toc}{parent=subsection in toc} +\setbeamercolor{subsubsection in toc shaded}{parent=subsubsection in toc} +\setbeamercolor{subsubsection in head/foot}{parent=subsection in head/foot} +\setbeamercolor{subsubsection in sidebar}{parent=subsection in sidebar} +\setbeamercolor{subsubsection in sidebar shaded}{parent=subsection in sidebar shaded} +\setbeamercolor{subsubsection number projected}{parent=subsubitem projected} + +\setbeamercolor{headline}{} +\setbeamercolor{footline}{} + +\setbeamercolor{sidebar}{} +\setbeamercolor{sidebar left}{parent=sidebar} +\setbeamercolor{sidebar right}{parent=sidebar} + +\setbeamercolor{logo}{parent=palette secondary} + +\setbeamercolor{frametitle}{parent=titlelike} +\setbeamercolor{framesubtitle}{parent=frametitle} + +\setbeamercolor{frametitle right}{parent=frametitle} + +\setbeamercolor{caption}{} +\setbeamercolor{caption name}{parent=structure} + +\setbeamercolor{button}{use=local structure,bg=local structure.fg!50!bg,fg=white} +\setbeamercolor{button border}{use=button,fg=button.bg} +\setbeamercolor{navigation symbols}{use=structure,fg=structure.fg!40!bg} +\setbeamercolor{navigation symbols dimmed}{use=structure,fg=structure.fg!20!bg} +\setbeamercolor{mini frame}{parent=section in head/foot} + +\setbeamercolor{block body}{fg=black} +\setbeamercolor{block body alerted}{fg=black} +\setbeamercolor{block body example}{fg=black} + +\setbeamercolor{block title}{bg=TACCblue,fg=white} +\setbeamercolor{block title alerted}{bg=TACCred,fg=white} +\setbeamercolor{block title example}{bg=TACCgreen,fg=white} + +\setbeamercolor{item}{parent=local structure} +\setbeamercolor{subitem}{parent=item} +\setbeamercolor{subsubitem}{parent=subitem} + +\setbeamercolor{item projected}{parent=item,use=item,fg=black,bg=item.fg} +\setbeamercolor{subitem projected}{parent=item projected} +\setbeamercolor{subsubitem projected}{parent=subitem projected} + +\setbeamercolor{enumerate item}{parent=item} +\setbeamercolor{enumerate subitem}{parent=subitem} +\setbeamercolor{enumerate subsubitem}{parent=subsubitem} + +\setbeamercolor{itemize item}{parent=item} +\setbeamercolor{itemize subitem}{parent=subitem} +\setbeamercolor{itemize subsubitem}{parent=subsubitem} + +\setbeamercolor{itemize/enumerate body}{} +\setbeamercolor{itemize/enumerate subbody}{} +\setbeamercolor{itemize/enumerate subsubbody}{} + +\setbeamercolor{description item}{parent=item} + +\setbeamercolor{bibliography item}{parent=item} + +\setbeamercolor{bibliography entry author}{use=structure,fg=structure.fg} +\setbeamercolor{bibliography entry title}{use=normal text,fg=normal text.fg} +\setbeamercolor{bibliography entry location}{use=structure,fg=structure.fg!65!bg} +\setbeamercolor{bibliography entry note}{use=structure,fg=structure.fg!65!bg} + +\setbeamercolor{separation line}{} + +\setbeamercolor{upper separation line head}{parent=separation line} +\setbeamercolor{middle separation line head}{parent=separation line} +\setbeamercolor{lower separation line head}{parent=separation line} + +\setbeamercolor{upper separation line foot}{parent=separation line} +\setbeamercolor{middle separation line foot}{parent=separation line} +\setbeamercolor{lower separation line foot}{parent=separation line} + +\setbeamercolor{abstract}{} +\setbeamercolor{abstract title}{parent=structure} + +\setbeamercolor{verse}{} + +\setbeamercolor{quotation}{} +\setbeamercolor{quote}{parent=quotation} + +\setbeamercolor{page number in head/foot}{fg=fg!50!bg} + +\setbeamercolor{qed symbol}{parent=structure} + +\mode + diff --git a/my_docs/22/lmod_zoom_mtg_2022_05_03/themes/beamerfontthemeTACC16.sty b/my_docs/22/lmod_zoom_mtg_2022_05_03/themes/beamerfontthemeTACC16.sty new file mode 100644 index 000000000..d0fc325cc --- /dev/null +++ b/my_docs/22/lmod_zoom_mtg_2022_05_03/themes/beamerfontthemeTACC16.sty @@ -0,0 +1,21 @@ +% Copyright 2003 by Till Tantau +% +% This program can be redistributed and/or modified under the terms +% of the GNU Public License, version 2. + +\mode +\setbeamerfont{title}{parent=structure,size=\LARGE,series=\bfseries} +\setbeamerfont{author}{parent=structure,size=\large, series=\normalfont} +\setbeamerfont{frametitle}{parent=structure,size=\LARGE,series=\bfseries} +\setbeamerfont{framesubtitle}{parent=frametitle,size=\small} + +%\usefonttheme{professionalfonts} % using non standard fonts for beamer +%\usefonttheme{serif} % default family is serif +%\usepackage{fontspec} +%\setmainfont{Century Gothic} + +%\usepackage{fontspec} +\usepackage{libertine} + +\mode + diff --git a/my_docs/22/lmod_zoom_mtg_2022_05_03/themes/beamerinnerthemeTACC16.sty b/my_docs/22/lmod_zoom_mtg_2022_05_03/themes/beamerinnerthemeTACC16.sty new file mode 100644 index 000000000..f7f454e1d --- /dev/null +++ b/my_docs/22/lmod_zoom_mtg_2022_05_03/themes/beamerinnerthemeTACC16.sty @@ -0,0 +1,11 @@ +\mode + +\setbeamertemplate{itemize item}[triangle] +\setbeamertemplate{itemize subitem}[triangle] +\setbeamertemplate{itemize subsubitem}[triangle] +\setbeamertemplate{section in toc}{$\bullet$\hskip.5em\inserttocsection} +%\setbeamertemplate{subsection in toc}{} +\setbeamertemplate{subsubsection in toc}{} + +\mode + diff --git a/my_docs/22/lmod_zoom_mtg_2022_05_03/themes/beamerouterthemeTACC16-169.sty b/my_docs/22/lmod_zoom_mtg_2022_05_03/themes/beamerouterthemeTACC16-169.sty new file mode 100644 index 000000000..c62f9ed04 --- /dev/null +++ b/my_docs/22/lmod_zoom_mtg_2022_05_03/themes/beamerouterthemeTACC16-169.sty @@ -0,0 +1,247 @@ +% Copyright 2003 by Till Tantau +% +% This program can be redistributed and/or modified under the terms +% of the GNU Public License, version 2. + +\mode + +\usepackage{xcolor} +\usepackage{graphicx} +\usepackage{etoolbox} + +\pgfdeclareimage[width=\paperwidth]{titlebackground}{./figures/master169.png} +\pgfdeclareimage[width=\paperwidth]{background}{./figures/secondary169.png} + +\setbeamertemplate{background canvas}{% + \ifnum\c@framenumber=1% + \begin{picture}(0,0) + \put(-0.15,-250){% + \pgfuseimage{titlebackground} + } + %\put(0,-130.7){% + + %\begin{minipage}[b][45mm][t]{\textwidth}%{226mm} + %\begin{center} + % \usebeamerfont{title}{\MakeTextUppercase{\inserttitle}\par} + %\vspace{2ex} + %\usebeamerfont{author}{\insertauthor} + % \end{center} + %\end{minipage} + %} + \end{picture} + % On title page + \else% + % Other frames background + \begin{picture}(0,0) + \put(-0.15,-255.55){% + \pgfuseimage{background} + } + \end{picture} + \fi% +} + + +\setbeamertemplate{title page}{ +\vspace{40pt} +\begin{center} +\usebeamerfont{title} {\huge \inserttitle}\par +\vspace{4ex} +\usebeamerfont{author} { + \insertauthor +}\par +\vspace{2ex} +\usebeamerfont{institute}{ + \insertinstitute +} \par +\vspace{2ex} +\usebeamerfont{date}{ + \insertdate +} +\end{center} +} + + +\setbeamertemplate{frametitle}[default][center] +\setbeamertemplate{frametitle}{ + \makeatletter + \regexpatchcmd{\insertframetitle} + {(\c{usebeamertemplate}.*)\c{fi}} + {\c{NoCaseChange}\cB\{\1\cE\}\c{fi}} + {}{}% + \makeatother + \vskip1ex + \insertframetitle +} + +% Here we define what appears at the bottom of each slide: the "footline". +\setbeamertemplate{footline}{% + \leavevmode% + + % Horizontal line dividing the rest of the slide from the footer? + % hrule goes all the way across... + % \hrule height.3pt% + % With \rule, you can specify the thickness + % \rule[raise-height]{width}{thickness} + % \hspace{.025\textwidth}\rule{.95\textwidth}{.5pt} + + \hbox{% + \ifnum \thepage>1 + % On the left half of the footer, insert the TACC of + \begin{minipage}{.2\textwidth}% + \hskip .05\textwidth%Give horizontal space else this will set on the left edge of the slide! + % \includegraphics[width=.8\textwidth]{TACC_logo.png} + \end{minipage} + + + \begin{minipage}{\textwidth}% + % \vskip .023\textheight% + \raggedleft% + \setlength{\rightskip}{\textwidth} + \hbox{% + \begin{beamercolorbox}[wd=0.7\textwidth,ht=2.25ex,dp=1ex,left]{author in head/foot}% + \insertshorttitle{} \hskip .01\textwidth | \hskip .01\textwidth \insertdate{} \hskip .01\textwidth | \hskip .01\textwidth \insertframenumber{} + \end{beamercolorbox}% + } + + % + % If we are not on the first page, insert a page number + % For some reason, insertframenumber is buggy when you have fragile + % slides with verbatim environments in them... it tends to skip numbers + % for some reason! On the other hand, the pagenumber is incremented + % for *every* slide, including transition slides... + % \hfill\includegraphics[width=\textwidth]{tacc_ut.png} + \end{minipage}% + \begin{minipage}{.05\textwidth}% + \end{minipage}% + \fi %\thepage>1 + }% + \vskip .023\textheight% + +} + + + + +\ifTACCheadernav + +\usesectionheadtemplate +{\hfill\insertsectionhead} +{\hfill\color{fg!50!bg}\insertsectionhead} + +% Head +\ifbeamer@compress + +% Here we define how the top of the frame looks, the "headline". +\setbeamertemplate{headline} +{% + \ifnum \thepage>1 + \leavevmode% + \begin{beamercolorbox}[wd=.5\paperwidth,ht=2.5ex,dp=1.125ex]{% + section in head/foot}% + \insertsectionnavigationhorizontal{.5\paperwidth}{\hskip0pt plus1filll}{}% + \end{beamercolorbox}% + \begin{beamercolorbox}[wd=.5\paperwidth,ht=2.5ex,dp=1.125ex]{% + subsection in head/foot}% + \insertsubsectionnavigationhorizontal{% + .5\paperwidth}{}{\hskip0pt plus1filll}% + \end{beamercolorbox}% + \fi %\thepage>1 +} + +\else% Not compressed + +\setbeamertemplate{headline} +{% + \ifnum \thepage>1 + \leavevmode% + \@tempdimb=2.4375ex% + \ifnum\beamer@subsectionmax<\beamer@sectionmax% + \multiply\@tempdimb by\beamer@sectionmax% + \else% + \multiply\@tempdimb by\beamer@subsectionmax% + \fi% + \ifdim\@tempdimb>0pt% + \advance\@tempdimb by 1.125ex% + \begin{beamercolorbox}[wd=.5\paperwidth,ht=\@tempdimb]{% + section in head/foot}% + \vbox to\@tempdimb{\vfil\insertsectionnavigation{.5\paperwidth}\vfil}% + \end{beamercolorbox}% + \begin{beamercolorbox}[wd=.5\paperwidth,ht=\@tempdimb]{% + subsection in head/foot}% + \vbox to\@tempdimb{\vfil\insertsubsectionnavigation{.5\paperwidth}\vfil}% + \end{beamercolorbox}% + \fi% + \fi % \thepage>1 +} + +\fi % end if compressed +\fi % TACCheadernav + + +\ifTACCheadertree + +\setbeamertemplate{headline} +{ + \begin{beamercolorbox}[wd=\paperwidth,colsep=1.5pt]{upper separation line head} + \end{beamercolorbox} + % + % Place short title + % + \begin{beamercolorbox}[wd=\paperwidth,ht=2.5ex,dp=1.125ex,% + leftskip=.3cm,rightskip=.3cm plus1fil]{title in head/foot} + \usebeamerfont{title in head/foot}\insertshorttitle + \end{beamercolorbox} + + % + % Place section + % + \begin{beamercolorbox}[wd=\paperwidth,ht=2.5ex,dp=1.125ex,% + leftskip=.3cm,rightskip=.3cm plus1fil]{section in head/foot} + \usebeamerfont{section in head/foot}% + %\ifbeamer@tree@showhooks + \setbox\beamer@tempbox=\hbox{\insertsectionhead}% + \ifdim\wd\beamer@tempbox>1pt% + \hskip2pt\raise1.9pt\hbox{\vrule width0.4pt height1.875ex\vrule width 5pt height0.4pt}% + \hskip1pt% + \fi + \insertsectionhead + \end{beamercolorbox} + +% +% Place subsection +% +\begin{beamercolorbox}[wd=\paperwidth,ht=2.5ex,dp=1.125ex,% + leftskip=.3cm,rightskip=.3cm plus1fil]{subsection in head/foot} + \usebeamerfont{subsection in head/foot}% + %\ifbeamer@tree@showhooks + \setbox\beamer@tempbox=\hbox{\insertsubsectionhead}% + \ifdim\wd\beamer@tempbox>1pt% + \hskip9.4pt\raise1.9pt\hbox{\vrule width0.4pt height1.875ex\vrule width 5pt height0.4pt}% + \hskip1pt% + \fi + \insertsubsectionhead +\end{beamercolorbox} + +% +% Place final separation box +% + \begin{beamercolorbox}[wd=\paperwidth,colsep=1.5pt + ]{lower separation line head} + \end{beamercolorbox} + + % + % Another matching rule which helps to frame the content + % + \hspace{.025\textwidth}\rule{.95\textwidth}{.5pt} +} +\fi % TACCheadertree + + +% The following command suppresses all navigation symbols. This is +% necessary in the TACC theme, since it overlaps where we want the +% logo to be. +\setbeamertemplate{navigation symbols}{} + + +\mode + diff --git a/my_docs/22/lmod_zoom_mtg_2022_05_03/themes/beamerouterthemeTACC16.sty b/my_docs/22/lmod_zoom_mtg_2022_05_03/themes/beamerouterthemeTACC16.sty new file mode 100644 index 000000000..c5b178018 --- /dev/null +++ b/my_docs/22/lmod_zoom_mtg_2022_05_03/themes/beamerouterthemeTACC16.sty @@ -0,0 +1,247 @@ +% Copyright 2003 by Till Tantau +% +% This program can be redistributed and/or modified under the terms +% of the GNU Public License, version 2. + +\mode + +\usepackage{xcolor} +\usepackage{graphicx} +\usepackage{etoolbox} + +\pgfdeclareimage[width=\paperwidth]{titlebackground}{master.jpg} +\pgfdeclareimage[width=\paperwidth]{background}{secondary.jpg} + +\setbeamertemplate{background canvas}{% + \ifnum\c@framenumber=1% + \begin{picture}(0,0) + \put(0,-273){% + \pgfuseimage{titlebackground} + } + %\put(0,-130.7){% + + %\begin{minipage}[b][45mm][t]{\textwidth}%{226mm} + %\begin{center} + % \usebeamerfont{title}{\MakeTextUppercase{\inserttitle}\par} + %\vspace{2ex} + %\usebeamerfont{author}{\insertauthor} + % \end{center} + %\end{minipage} + %} + \end{picture} + % On title page + \else% + % Other frames background + \begin{picture}(0,0) + \put(0,-273){% + \pgfuseimage{background} + } + \end{picture} + \fi% +} + + +\setbeamertemplate{title page}{ +\vspace{40pt} +\begin{center} +\usebeamerfont{title} {\huge \inserttitle}\par +\vspace{4ex} +\usebeamerfont{author} { + \insertauthor +}\par +\vspace{2ex} +\usebeamerfont{institute}{ + \insertinstitute +} \par +\vspace{2ex} +\usebeamerfont{date}{ + \insertdate +} +\end{center} +} + + +\setbeamertemplate{frametitle}[default][center] +\setbeamertemplate{frametitle}{ + \makeatletter + \regexpatchcmd{\insertframetitle} + {(\c{usebeamertemplate}.*)\c{fi}} + {\c{NoCaseChange}\cB\{\1\cE\}\c{fi}} + {}{}% + \makeatother + \vskip1ex + \insertframetitle +} + +% Here we define what appears at the bottom of each slide: the "footline". +\setbeamertemplate{footline}{% + \leavevmode% + + % Horizontal line dividing the rest of the slide from the footer? + % hrule goes all the way across... + % \hrule height.3pt% + % With \rule, you can specify the thickness + % \rule[raise-height]{width}{thickness} + % \hspace{.025\textwidth}\rule{.95\textwidth}{.5pt} + + \hbox{% + \ifnum \thepage>1 + % On the left half of the footer, insert the TACC of + \begin{minipage}{.2\textwidth}% + \hskip .05\textwidth%Give horizontal space else this will set on the left edge of the slide! + % \includegraphics[width=.8\textwidth]{figures/TACC_logo.png} + \end{minipage} + + + \begin{minipage}{\textwidth}% + % \vskip .023\textheight% + \raggedleft% + \setlength{\rightskip}{\textwidth} + \hbox{% + \begin{beamercolorbox}[wd=0.7\textwidth,ht=2.25ex,dp=1ex,left]{author in head/foot}% + \insertshorttitle{} \hskip .01\textwidth | \hskip .01\textwidth \insertdate{} \hskip .01\textwidth | \hskip .01\textwidth \insertframenumber{} + \end{beamercolorbox}% + } + + % + % If we are not on the first page, insert a page number + % For some reason, insertframenumber is buggy when you have fragile + % slides with verbatim environments in them... it tends to skip numbers + % for some reason! On the other hand, the pagenumber is incremented + % for *every* slide, including transition slides... + % \hfill\includegraphics[width=\textwidth]{figures/tacc_ut.png} + \end{minipage}% + \begin{minipage}{.05\textwidth}% + \end{minipage}% + \fi %\thepage>1 + }% + \vskip .023\textheight% + +} + + + + +\ifTACCheadernav + +\usesectionheadtemplate +{\hfill\insertsectionhead} +{\hfill\color{fg!50!bg}\insertsectionhead} + +% Head +\ifbeamer@compress + +% Here we define how the top of the frame looks, the "headline". +\setbeamertemplate{headline} +{% + \ifnum \thepage>1 + \leavevmode% + \begin{beamercolorbox}[wd=.5\paperwidth,ht=2.5ex,dp=1.125ex]{% + section in head/foot}% + \insertsectionnavigationhorizontal{.5\paperwidth}{\hskip0pt plus1filll}{}% + \end{beamercolorbox}% + \begin{beamercolorbox}[wd=.5\paperwidth,ht=2.5ex,dp=1.125ex]{% + subsection in head/foot}% + \insertsubsectionnavigationhorizontal{% + .5\paperwidth}{}{\hskip0pt plus1filll}% + \end{beamercolorbox}% + \fi %\thepage>1 +} + +\else% Not compressed + +\setbeamertemplate{headline} +{% + \ifnum \thepage>1 + \leavevmode% + \@tempdimb=2.4375ex% + \ifnum\beamer@subsectionmax<\beamer@sectionmax% + \multiply\@tempdimb by\beamer@sectionmax% + \else% + \multiply\@tempdimb by\beamer@subsectionmax% + \fi% + \ifdim\@tempdimb>0pt% + \advance\@tempdimb by 1.125ex% + \begin{beamercolorbox}[wd=.5\paperwidth,ht=\@tempdimb]{% + section in head/foot}% + \vbox to\@tempdimb{\vfil\insertsectionnavigation{.5\paperwidth}\vfil}% + \end{beamercolorbox}% + \begin{beamercolorbox}[wd=.5\paperwidth,ht=\@tempdimb]{% + subsection in head/foot}% + \vbox to\@tempdimb{\vfil\insertsubsectionnavigation{.5\paperwidth}\vfil}% + \end{beamercolorbox}% + \fi% + \fi % \thepage>1 +} + +\fi % end if compressed +\fi % TACCheadernav + + +\ifTACCheadertree + +\setbeamertemplate{headline} +{ + \begin{beamercolorbox}[wd=\paperwidth,colsep=1.5pt]{upper separation line head} + \end{beamercolorbox} + % + % Place short title + % + \begin{beamercolorbox}[wd=\paperwidth,ht=2.5ex,dp=1.125ex,% + leftskip=.3cm,rightskip=.3cm plus1fil]{title in head/foot} + \usebeamerfont{title in head/foot}\insertshorttitle + \end{beamercolorbox} + + % + % Place section + % + \begin{beamercolorbox}[wd=\paperwidth,ht=2.5ex,dp=1.125ex,% + leftskip=.3cm,rightskip=.3cm plus1fil]{section in head/foot} + \usebeamerfont{section in head/foot}% + %\ifbeamer@tree@showhooks + \setbox\beamer@tempbox=\hbox{\insertsectionhead}% + \ifdim\wd\beamer@tempbox>1pt% + \hskip2pt\raise1.9pt\hbox{\vrule width0.4pt height1.875ex\vrule width 5pt height0.4pt}% + \hskip1pt% + \fi + \insertsectionhead + \end{beamercolorbox} + +% +% Place subsection +% +\begin{beamercolorbox}[wd=\paperwidth,ht=2.5ex,dp=1.125ex,% + leftskip=.3cm,rightskip=.3cm plus1fil]{subsection in head/foot} + \usebeamerfont{subsection in head/foot}% + %\ifbeamer@tree@showhooks + \setbox\beamer@tempbox=\hbox{\insertsubsectionhead}% + \ifdim\wd\beamer@tempbox>1pt% + \hskip9.4pt\raise1.9pt\hbox{\vrule width0.4pt height1.875ex\vrule width 5pt height0.4pt}% + \hskip1pt% + \fi + \insertsubsectionhead +\end{beamercolorbox} + +% +% Place final separation box +% + \begin{beamercolorbox}[wd=\paperwidth,colsep=1.5pt + ]{lower separation line head} + \end{beamercolorbox} + + % + % Another matching rule which helps to frame the content + % + \hspace{.025\textwidth}\rule{.95\textwidth}{.5pt} +} +\fi % TACCheadertree + + +% The following command suppresses all navigation symbols. This is +% necessary in the TACC theme, since it overlaps where we want the +% logo to be. +\setbeamertemplate{navigation symbols}{} + + +\mode + diff --git a/my_docs/22/lmod_zoom_mtg_2022_05_03/themes/beamerthemeTACC16-169.sty b/my_docs/22/lmod_zoom_mtg_2022_05_03/themes/beamerthemeTACC16-169.sty new file mode 100644 index 000000000..22caf9a05 --- /dev/null +++ b/my_docs/22/lmod_zoom_mtg_2022_05_03/themes/beamerthemeTACC16-169.sty @@ -0,0 +1,38 @@ +%% TACC theme for beamer + +\newif\ifTACCheadernav +\DeclareOption{headernav}{\global\TACCheadernavtrue} + +\newif\ifTACCheadertree +\DeclareOption{headertree}{\global\TACCheadertreetrue} +\ProcessOptions + +\mode + +\makeatletter + \def\beamer@calltheme#1#2#3{% + \def\beamer@themelist{#2} + \@for\beamer@themename:=\beamer@themelist\do + {\usepackage[{#1}]{\beamer@themelocation/#3\beamer@themename}}} + + \def\usefolder#1{ + \def\beamer@themelocation{#1} + } + \def\beamer@themelocation{} + +\usefolder{themes} +\usefonttheme{TACC16} +\useinnertheme{TACC16} +\useoutertheme{TACC16-169} +\usecolortheme{TACC16} + +\mode + + +\newcommand{\event}[1]{% + \makeatletter% + \def\TACC@eventname{#1}% + \makeatother} + +\newcommand{\sectionframe}[1]{\section{#1}\frame{\Large\textbf{#1}}} +\newcommand{\subsectionframe}[1]{\subsection{#1}\frame{\large\textbf{#1}}} diff --git a/my_docs/22/lmod_zoom_mtg_2022_05_03/themes/beamerthemeTACC16.sty b/my_docs/22/lmod_zoom_mtg_2022_05_03/themes/beamerthemeTACC16.sty new file mode 100644 index 000000000..750bdd388 --- /dev/null +++ b/my_docs/22/lmod_zoom_mtg_2022_05_03/themes/beamerthemeTACC16.sty @@ -0,0 +1,26 @@ +%% TACC theme for beamer + +\newif\ifTACCheadernav +\DeclareOption{headernav}{\global\TACCheadernavtrue} + +\newif\ifTACCheadertree +\DeclareOption{headertree}{\global\TACCheadertreetrue} +\ProcessOptions + +\mode + +\usefonttheme{TACC16} +\useinnertheme{TACC16} +\useoutertheme{TACC16} +\usecolortheme{TACC16} + +\mode + + +\newcommand{\event}[1]{% + \makeatletter% + \def\TACC@eventname{#1}% + \makeatother} + +\newcommand{\sectionframe}[1]{\section{#1}\frame{\Large\textbf{#1}}} +\newcommand{\subsectionframe}[1]{\subsection{#1}\frame{\large\textbf{#1}}} diff --git a/my_docs/22/lmod_zoom_mtg_2022_05_03/themes/example.pdf b/my_docs/22/lmod_zoom_mtg_2022_05_03/themes/example.pdf new file mode 100644 index 000000000..add373eee Binary files /dev/null and b/my_docs/22/lmod_zoom_mtg_2022_05_03/themes/example.pdf differ diff --git a/my_docs/22/lmod_zoom_mtg_2022_05_03/themes/license.tex b/my_docs/22/lmod_zoom_mtg_2022_05_03/themes/license.tex new file mode 100644 index 000000000..74ff86759 --- /dev/null +++ b/my_docs/22/lmod_zoom_mtg_2022_05_03/themes/license.tex @@ -0,0 +1,14 @@ + +\begin{frame}{License} +\footnotesize +\textcopyright The University of Texas at Austin, \the\year\\ +\vspace{0.5 cm} +This work is licensed under the Creative Commons Attribution Non-Commercial 3.0 Unported License. To view a copy of this license, +visit http://creativecommons.org/licenses/by-nc/3.0/\\ +\vspace{0.5 cm} +When attributing this work, please use the following text: +"Designing and Administering Large-scale Systems", Texas Advanced Computing Center, \the\year. Available under a Creative Commons Attribution Non-Commercial 3.0 Unported License. +\newline +\newline +\includegraphics[width=1cm]{./figures/cc.png} +\end{frame} \ No newline at end of file diff --git a/my_docs/22/lmod_zoom_mtg_2022_06_07/Lmod-4color@2x.png b/my_docs/22/lmod_zoom_mtg_2022_06_07/Lmod-4color@2x.png deleted file mode 120000 index 47d505dbf..000000000 --- a/my_docs/22/lmod_zoom_mtg_2022_06_07/Lmod-4color@2x.png +++ /dev/null @@ -1 +0,0 @@ -../../beamer/Lmod-4color@2x.png \ No newline at end of file diff --git a/my_docs/22/lmod_zoom_mtg_2022_06_07/Lmod-4color@2x.png b/my_docs/22/lmod_zoom_mtg_2022_06_07/Lmod-4color@2x.png new file mode 100644 index 000000000..4810d74c3 Binary files /dev/null and b/my_docs/22/lmod_zoom_mtg_2022_06_07/Lmod-4color@2x.png differ diff --git a/my_docs/22/lmod_zoom_mtg_2022_06_07/beamercolorthemeTACC.sty b/my_docs/22/lmod_zoom_mtg_2022_06_07/beamercolorthemeTACC.sty deleted file mode 120000 index 8d27e673a..000000000 --- a/my_docs/22/lmod_zoom_mtg_2022_06_07/beamercolorthemeTACC.sty +++ /dev/null @@ -1 +0,0 @@ -../../beamer/beamercolorthemeTACC.sty \ No newline at end of file diff --git a/my_docs/22/lmod_zoom_mtg_2022_06_07/beamercolorthemeTACC.sty b/my_docs/22/lmod_zoom_mtg_2022_06_07/beamercolorthemeTACC.sty new file mode 100755 index 000000000..78beb6a4a --- /dev/null +++ b/my_docs/22/lmod_zoom_mtg_2022_06_07/beamercolorthemeTACC.sty @@ -0,0 +1,323 @@ +% Copyright 2003 by Till Tantau . +% +% This program can be redistributed and/or modified under the terms +% of the GNU Public License, version 2. + +\mode + +% I downloaded a gimp color palette from +% http://maururu.net/2007/latex-beamer-color-palette/ +% Which provides rgb values (I think) for several of the +% default beamer themes. You can open this in gimp by +% opening the Palettes dialog, right-clicking anywhere and choosing +% 'Import Palette'. A color in there called 'default added blue' +% appeared to be approximately what I wanted. It had the triple +% of values 141 145 208. If you double-click on this in the +% palette editor it gives you a bunch of information. You can't +% use these values directly to set a color...it just comes out white. +% I think definecolor is expecting something normalized by 255. Yes! + + +% bluish colors +\definecolor{defaddedblue}{rgb}{0.5529,.5686,.8157} % 141,145,208 +\definecolor{defblockheader}{rgb}{.1921,.2235,.6824} % 49,57,174 +\definecolor{flyaddedblue}{rgb}{.5961,.6118,.8431} % 152,156,215 + +% bluish-greys +\definecolor{beetleaddedblue1}{rgb}{.3333,.4039,.6196} % 85 103 158, dark +\definecolor{beetleaddedblue2}{rgb}{.4510,.5098,.7020} % 115 130 179, medium +\definecolor{beetleaddedblue3}{rgb}{.7059,.7255,.7961} % 180 185 203, light (greyest) + +% very light blue-greys +\definecolor{deflightouter1}{rgb}{.7608,.7647,.9020} % 194 195 230, dark +\definecolor{deflightouter2}{rgb}{.8 ,.8039,.9176} % 204 205 234, medium +\definecolor{deflightouter3}{rgb}{.8392,.8431,.9373} % 214 215 239, light + +% reddish colors +\definecolor{flyalertblockheader}{rgb}{.7373,.1294,.1333} % 188 33 34 +\definecolor{flyaddedred}{rgb}{.8667,.5647,.5647}% 221 144 144 +\definecolor{beaverouterframe}{rgb}{.5529,.0980,.0980}% 141 25 25 + +% greens (green is used for 'examples' in beamer) +\definecolor{defexblock}{rgb}{.9098,.9333,.9020} % 232 238 230, light +\definecolor{defaddedgreen}{rgb}{.5412,.6510,.4706} % 138 166 120, medium +\definecolor{defexblockheader}{rgb}{.1686,.3647,.0392} % 43 93 10, dark + +\definecolor{lightexblock}{rgb}{.9137,.9451,.9020} % 233 241 230, light +\definecolor{lightexblockheader}{rgb}{.8235,.8980,.8} % 210 229 204, medium +\definecolor{lightexblockheadertext}{rgb}{.2431,.5098,.0745} % 62 130 19, dark + + +%%% +% Set the normal text color +%%% +\setbeamercolor{normal text}{fg=black,bg=white} + +%%% +% Set the alerted text color +%%% +% \setbeamercolor{alerted text}{fg=red} +\setbeamercolor{alerted text}{fg=red!50!black} % half black/half red for green bg +% \setbeamercolor{alerted text}{fg=beaverouterframe} +% \setbeamercolor{alerted text}{fg=defblockheader} % doesn't stand out enough + + +% Set the 'example' text +\setbeamercolor{example text}{fg=green!50!black} + +\setbeamercolor{structure}{fg=black} + +\setbeamercolor{background canvas}{parent=normal text} +\setbeamercolor{background}{parent=background canvas} + +\setbeamercolor{palette primary}{use=structure,fg=structure.fg} +\setbeamercolor{palette secondary}{use=structure,fg=structure.fg!75!black} +\setbeamercolor{palette tertiary}{use=structure,fg=structure.fg!50!black} +\setbeamercolor{palette quaternary}{fg=black} + +\setbeamercolor{palette sidebar primary}{use=normal text,fg=normal text.fg} +\setbeamercolor{palette sidebar secondary}{use=structure,fg=structure.fg} +\setbeamercolor{palette sidebar tertiary}{use=normal text,fg=normal text.fg} +\setbeamercolor{palette sidebar quaternary}{use=structure,fg=structure.fg} + +\setbeamercolor{math text}{} +\setbeamercolor{math text inlined}{parent=math text} +\setbeamercolor{math text displayed}{parent=math text} + +\setbeamercolor{normal text in math text}{} + +\setbeamercolor{local structure}{parent=structure} + +\setbeamercolor{titlelike}{parent=structure} + +\setbeamercolor{title}{parent=titlelike} +\setbeamercolor{title in head/foot}{parent=palette quaternary} +\setbeamercolor{title in sidebar}{parent=palette sidebar quaternary} + +\setbeamercolor{subtitle}{parent=title} + +\setbeamercolor{author}{} +\setbeamercolor{author in head/foot}{parent=palette primary} +\setbeamercolor{author in sidebar}{use=palette sidebar tertiary,fg=palette sidebar tertiary.fg} + +\setbeamercolor{institute}{} +\setbeamercolor{institute in head/foot}{parent=palette tertiary} +\setbeamercolor{institute in sidebar}{use=palette sidebar tertiary,fg=palette sidebar tertiary.fg} + +\setbeamercolor{date}{} +\setbeamercolor{date in head/foot}{parent=palette secondary} +\setbeamercolor{date in sidebar}{use=palette sidebar tertiary,fg=palette sidebar tertiary.fg} + +\setbeamercolor{titlegraphic}{} + +\setbeamercolor{part name}{} +\setbeamercolor{part title}{parent=titlelike} + +\setbeamercolor{section in toc}{parent=structure} +\setbeamercolor{section in toc shaded}{parent=section in toc} +\setbeamercolor{section in head/foot}{parent=palette tertiary} +\setbeamercolor{section in sidebar}{parent=palette sidebar secondary} +\setbeamercolor{section in sidebar shaded}{use=section in sidebar,fg=section in sidebar.fg!40!bg} +\setbeamercolor{section number projected}{parent=item projected} + +\setbeamercolor{subsection in toc}{} +\setbeamercolor{subsection in toc shaded}{parent=subsection in toc} +\setbeamercolor{subsection in head/foot}{parent=palette secondary} +\setbeamercolor{subsection in sidebar}{parent=palette sidebar primary} +\setbeamercolor{subsection in sidebar shaded}{use=subsection in sidebar,fg=subsection in sidebar.fg!40!bg} +\setbeamercolor{subsection number projected}{parent={subitem projected}} + +\setbeamercolor{subsubsection in toc}{parent=subsection in toc} +\setbeamercolor{subsubsection in toc shaded}{parent=subsubsection in toc} +\setbeamercolor{subsubsection in head/foot}{parent=subsection in head/foot} +\setbeamercolor{subsubsection in sidebar}{parent=subsection in sidebar} +\setbeamercolor{subsubsection in sidebar shaded}{parent=subsection in sidebar shaded} +\setbeamercolor{subsubsection number projected}{parent=subsubitem projected} + +\setbeamercolor{headline}{} +\setbeamercolor{footline}{} + +\setbeamercolor{sidebar}{} +\setbeamercolor{sidebar left}{parent=sidebar} +\setbeamercolor{sidebar right}{parent=sidebar} + +\setbeamercolor{logo}{parent=palette secondary} + +\setbeamercolor{frametitle}{parent=titlelike} +\setbeamercolor{framesubtitle}{parent=frametitle} + +\setbeamercolor{frametitle right}{parent=frametitle} + +\setbeamercolor{caption}{} +\setbeamercolor{caption name}{parent=structure} + +\setbeamercolor{button}{use=local structure,bg=local structure.fg!50!bg,fg=white} +\setbeamercolor{button border}{use=button,fg=button.bg} +\setbeamercolor{navigation symbols}{use=structure,fg=structure.fg!40!bg} +\setbeamercolor{navigation symbols dimmed}{use=structure,fg=structure.fg!20!bg} +\setbeamercolor{mini frame}{parent=section in head/foot} + +% Color expressions are defined in the xcolor package +% +% Ex: Mixture of 40% green, 60% yellow: green!40!yellow +% +% The complement of any color can be obtained by prepending +% a minus sign: -green!40!yellow +% +% One can also combine up to three colors (in differing proportions) +% using the rgb command. For example, the following command combines +% 3 parts of the first color, with 2 parts of the second, and one part +% "red" +% +%\color{rgb:-green!40!yellow,3;green!40!yellow,2;red,1} +% Unfortunately, I don't think this works as an argument to setbeamercolor... +% "Orange" bg=green!30!yellow!30!red +% close to burnt orange: red!75!green +% lightgray is a color, but gray!25!white looks better +% +% A nice pair of greens +% (dark, a little too dark to be under black text...) -red!75!green!50!blue!25 +% (light) -red!75!green!50!blue!25!gray +% +% Some colors are only available via options to the xcolor package, eg. +% x11names,DarkOliveGreen4 +% svgnames, Chartreuse +% dvipsnames, ForestGreen +% +% but beamer does not seem to have any of these. +% +% The base color names which are always available are: +% black +% blue +% brown +% cyan +% darkgray +% gray +% green +% lightgray +% lime +% magenta +% olive +% orange +% pink +% purple +% red +% teal +% violet +% white +% yellow + +% From the beamer user guide, pg. 167 +% Inner color themes only specify the colors of elements used in inner +% themes. Most noticably, they specify the colors used for blocks. +% ... + +% Example color definition +% beamercolorthemedefault.sty:\definecolor{beamer@blendedblue}{rgb}{0.2,0.2,0.7} +% beamercolorthemedefault.sty:\setbeamercolor{structure}{fg=beamer@blendedblue} + +% The greens +% \setbeamercolor{block body}{bg=-red!75!green!50!blue!25!gray} +% \setbeamercolor{block title}{parent=structure,bg=-red!75!green!50!blue!25,fg=-red!75!green!50!blue!25!gray} + +%%% +% Set the block body and title background/foreground colors +%%% +% \setbeamercolor{block body}{bg=flyaddedblue} +% \setbeamercolor{block title}{bg=defblockheader,fg=flyaddedblue} + +% Purplish blues, too dark overall +% \setbeamercolor{block body}{bg=beetleaddedblue3} +% \setbeamercolor{block title}{bg=beetleaddedblue2,fg=beetleaddedblue3} + +% Very light blue greys +% 1. Not enough contrast +% \setbeamercolor{block body}{bg=deflightouter3} +% \setbeamercolor{block title}{bg=deflightouter2,fg=deflightouter3} + +% 2. Not enough contrast +% \setbeamercolor{block body}{bg=deflightouter3} +% \setbeamercolor{block title}{bg=deflightouter1,fg=deflightouter3} + +% 3. Combination of deflightouter and fly. The block bg is +% lighter than the all-beetle color scheme I previously thought was best. +% Currently I like this one the best +\setbeamercolor{block body}{bg=deflightouter3} +\setbeamercolor{block title}{bg=beetleaddedblue2,fg=deflightouter3} + +% 4. Greens. Looks like a highlighter. I don't really trust greens +% on projectors... It's almost too bright/hurts your eyes. +% \setbeamercolor{block body}{bg=defexblock} +% \setbeamercolor{block title}{bg=defaddedgreen,fg=defexblock} + +% This looks pretty good ... it's similar to the greens we had before +% but should be lighter. The blocks are just a little too "mint" colored +% though... +% \setbeamercolor{block body}{bg=defexblock} +% \setbeamercolor{block title}{bg=defexblockheader,fg=defexblock} + +% Pea Soup! +%\setbeamercolor{block body}{bg=defaddedgreen} +%\setbeamercolor{block title}{bg=defexblockheader,fg=defaddedgreen} + + +% Changing these didn't seem to do anything...I had to change the +% 'alerted text' color instead +\setbeamercolor{block body alerted}{} +\setbeamercolor{block body example}{} +\setbeamercolor{block title alerted}{parent=alerted text} +\setbeamercolor{block title example}{parent=example text} + +\setbeamercolor{item}{parent=local structure} +\setbeamercolor{subitem}{parent=item} +\setbeamercolor{subsubitem}{parent=subitem} + +\setbeamercolor{item projected}{parent=item,use=item,fg=white,bg=item.fg} +\setbeamercolor{subitem projected}{parent=item projected} +\setbeamercolor{subsubitem projected}{parent=subitem projected} + +\setbeamercolor{enumerate item}{parent=item} +\setbeamercolor{enumerate subitem}{parent=subitem} +\setbeamercolor{enumerate subsubitem}{parent=subsubitem} + +\setbeamercolor{itemize item}{parent=item} +\setbeamercolor{itemize subitem}{parent=subitem} +\setbeamercolor{itemize subsubitem}{parent=subsubitem} + +\setbeamercolor{itemize/enumerate body}{} +\setbeamercolor{itemize/enumerate subbody}{} +\setbeamercolor{itemize/enumerate subsubbody}{} + +\setbeamercolor{description item}{parent=item} + +\setbeamercolor{bibliography item}{parent=item} + +\setbeamercolor{bibliography entry author}{use=structure,fg=structure.fg} +\setbeamercolor{bibliography entry title}{use=normal text,fg=normal text.fg} +\setbeamercolor{bibliography entry location}{use=structure,fg=structure.fg!65!bg} +\setbeamercolor{bibliography entry note}{use=structure,fg=structure.fg!65!bg} + +\setbeamercolor{separation line}{} + +\setbeamercolor{upper separation line head}{parent=separation line} +\setbeamercolor{middle separation line head}{parent=separation line} +\setbeamercolor{lower separation line head}{parent=separation line} + +\setbeamercolor{upper separation line foot}{parent=separation line} +\setbeamercolor{middle separation line foot}{parent=separation line} +\setbeamercolor{lower separation line foot}{parent=separation line} + +\setbeamercolor{abstract}{} +\setbeamercolor{abstract title}{parent=structure} + +\setbeamercolor{verse}{} + +\setbeamercolor{quotation}{} +\setbeamercolor{quote}{parent=quotation} + +\setbeamercolor{page number in head/foot}{fg=fg!50!bg} + +\setbeamercolor{qed symbol}{parent=structure} + +\mode + diff --git a/my_docs/22/lmod_zoom_mtg_2022_06_07/beamercolorthemeTACC16.sty b/my_docs/22/lmod_zoom_mtg_2022_06_07/beamercolorthemeTACC16.sty deleted file mode 120000 index 58415801b..000000000 --- a/my_docs/22/lmod_zoom_mtg_2022_06_07/beamercolorthemeTACC16.sty +++ /dev/null @@ -1 +0,0 @@ -../../beamer/beamercolorthemeTACC16.sty \ No newline at end of file diff --git a/my_docs/22/lmod_zoom_mtg_2022_06_07/beamercolorthemeTACC16.sty b/my_docs/22/lmod_zoom_mtg_2022_06_07/beamercolorthemeTACC16.sty new file mode 100755 index 000000000..779dde91f --- /dev/null +++ b/my_docs/22/lmod_zoom_mtg_2022_06_07/beamercolorthemeTACC16.sty @@ -0,0 +1,192 @@ +% Copyright 2003 by Till Tantau . +% +% This program can be redistributed and/or modified under the terms +% of the GNU Public License, version 2. + +\mode + +\usepackage{textcase,regexpatch} + +\setbeamertemplate{blocks}[rounded][shadow=true] + + +\definecolor{TACCred}{RGB}{180,13,29} +\definecolor{TACCorange}{RGB}{210,104,43} +\definecolor{TACCblue}{RGB}{108, 134, 191} +\definecolor{TACCgreen}{RGB}{23,106,70} + +% I downloaded a gimp color palette from +% http://maururu.net/2007/latex-beamer-color-palette/ +% Which provides rgb values (I think) for several of the +% default beamer themes. You can open this in gimp by +% opening the Palettes dialog, right-clicking anywhere and choosing +% 'Import Palette'. A color in there called 'default added blue' +% appeared to be approximately what I wanted. It had the triple +% of values 141 145 208. If you double-click on this in the +% palette editor it gives you a bunch of information. You can't +% use these values directly to set a color...it just comes out white. +% I think definecolor is expecting something normalized by 255. Yes! + + +%%% +% Set the normal text color +%%% +\setbeamercolor{normal text}{fg=black} %,bg=white} +\setbeamercolor{example text}{fg=TACCgreen} +\setbeamercolor{alerted text}{fg=TACCorange} + + +\setbeamercolor{structure}{fg=black} +%\setbeamercolor{structure}{fg=black} + +\setbeamercolor{background canvas}{parent=normal text} +\setbeamercolor{background}{parent=background canvas} + +\setbeamercolor{palette primary}{use=structure,fg=structure.fg} +\setbeamercolor{palette secondary}{use=structure,fg=structure.fg!75!black} +\setbeamercolor{palette tertiary}{use=structure,fg=structure.fg!50!black} +\setbeamercolor{palette quaternary}{fg=black} + +\setbeamercolor{palette sidebar primary}{use=normal text,fg=normal text.fg} +\setbeamercolor{palette sidebar secondary}{use=structure,fg=structure.fg} +\setbeamercolor{palette sidebar tertiary}{use=normal text,fg=normal text.fg} +\setbeamercolor{palette sidebar quaternary}{use=structure,fg=structure.fg} + +\setbeamercolor{math text}{} +\setbeamercolor{math text inlined}{parent=math text} +\setbeamercolor{math text displayed}{parent=math text} + +\setbeamercolor{normal text in math text}{} + +\setbeamercolor{local structure}{parent=structure} + +\setbeamercolor{titlelike}{parent=structure} + +\setbeamercolor{title}{parent=titlelike} +\setbeamercolor{title in head/foot}{parent=palette quaternary} +\setbeamercolor{title in sidebar}{parent=palette sidebar quaternary} + +\setbeamercolor{subtitle}{parent=title} + +\setbeamercolor{author}{} +\setbeamercolor{author in head/foot}{parent=palette primary} +\setbeamercolor{author in sidebar}{use=palette sidebar tertiary,fg=palette sidebar tertiary.fg} + +\setbeamercolor{institute}{} +\setbeamercolor{institute in head/foot}{parent=palette tertiary} +\setbeamercolor{institute in sidebar}{use=palette sidebar tertiary,fg=palette sidebar tertiary.fg} + +\setbeamercolor{date}{} +\setbeamercolor{date in head/foot}{parent=palette secondary} +\setbeamercolor{date in sidebar}{use=palette sidebar tertiary,fg=palette sidebar tertiary.fg} + +\setbeamercolor{titlegraphic}{} + +\setbeamercolor{part name}{} +\setbeamercolor{part title}{parent=titlelike} + +\setbeamercolor{section in toc}{parent=structure} +\setbeamercolor{section in toc shaded}{parent=section in toc} +\setbeamercolor{section in head/foot}{parent=palette tertiary} +\setbeamercolor{section in sidebar}{parent=palette sidebar secondary} +\setbeamercolor{section in sidebar shaded}{use=section in sidebar,fg=section in sidebar.fg!40!bg} +\setbeamercolor{section number projected}{parent=item projected} + +\setbeamercolor{subsection in toc}{} +\setbeamercolor{subsection in toc shaded}{parent=subsection in toc} +\setbeamercolor{subsection in head/foot}{parent=palette secondary} +\setbeamercolor{subsection in sidebar}{parent=palette sidebar primary} +\setbeamercolor{subsection in sidebar shaded}{use=subsection in sidebar,fg=subsection in sidebar.fg!40!bg} +\setbeamercolor{subsection number projected}{parent={subitem projected}} + +\setbeamercolor{subsubsection in toc}{parent=subsection in toc} +\setbeamercolor{subsubsection in toc shaded}{parent=subsubsection in toc} +\setbeamercolor{subsubsection in head/foot}{parent=subsection in head/foot} +\setbeamercolor{subsubsection in sidebar}{parent=subsection in sidebar} +\setbeamercolor{subsubsection in sidebar shaded}{parent=subsection in sidebar shaded} +\setbeamercolor{subsubsection number projected}{parent=subsubitem projected} + +\setbeamercolor{headline}{} +\setbeamercolor{footline}{} + +\setbeamercolor{sidebar}{} +\setbeamercolor{sidebar left}{parent=sidebar} +\setbeamercolor{sidebar right}{parent=sidebar} + +\setbeamercolor{logo}{parent=palette secondary} + +\setbeamercolor{frametitle}{parent=titlelike} +\setbeamercolor{framesubtitle}{parent=frametitle} + +\setbeamercolor{frametitle right}{parent=frametitle} + +\setbeamercolor{caption}{} +\setbeamercolor{caption name}{parent=structure} + +\setbeamercolor{button}{use=local structure,bg=local structure.fg!50!bg,fg=white} +\setbeamercolor{button border}{use=button,fg=button.bg} +\setbeamercolor{navigation symbols}{use=structure,fg=structure.fg!40!bg} +\setbeamercolor{navigation symbols dimmed}{use=structure,fg=structure.fg!20!bg} +\setbeamercolor{mini frame}{parent=section in head/foot} + +\setbeamercolor{block body}{fg=black} +\setbeamercolor{block body alerted}{fg=black} +\setbeamercolor{block body example}{fg=black} + +\setbeamercolor{block title}{bg=TACCblue,fg=white} +\setbeamercolor{block title alerted}{bg=TACCred,fg=white} +\setbeamercolor{block title example}{bg=TACCgreen,fg=white} + +\setbeamercolor{item}{parent=local structure} +\setbeamercolor{subitem}{parent=item} +\setbeamercolor{subsubitem}{parent=subitem} + +\setbeamercolor{item projected}{parent=item,use=item,fg=black,bg=item.fg} +\setbeamercolor{subitem projected}{parent=item projected} +\setbeamercolor{subsubitem projected}{parent=subitem projected} + +\setbeamercolor{enumerate item}{parent=item} +\setbeamercolor{enumerate subitem}{parent=subitem} +\setbeamercolor{enumerate subsubitem}{parent=subsubitem} + +\setbeamercolor{itemize item}{parent=item} +\setbeamercolor{itemize subitem}{parent=subitem} +\setbeamercolor{itemize subsubitem}{parent=subsubitem} + +\setbeamercolor{itemize/enumerate body}{} +\setbeamercolor{itemize/enumerate subbody}{} +\setbeamercolor{itemize/enumerate subsubbody}{} + +\setbeamercolor{description item}{parent=item} + +\setbeamercolor{bibliography item}{parent=item} + +\setbeamercolor{bibliography entry author}{use=structure,fg=structure.fg} +\setbeamercolor{bibliography entry title}{use=normal text,fg=normal text.fg} +\setbeamercolor{bibliography entry location}{use=structure,fg=structure.fg!65!bg} +\setbeamercolor{bibliography entry note}{use=structure,fg=structure.fg!65!bg} + +\setbeamercolor{separation line}{} + +\setbeamercolor{upper separation line head}{parent=separation line} +\setbeamercolor{middle separation line head}{parent=separation line} +\setbeamercolor{lower separation line head}{parent=separation line} + +\setbeamercolor{upper separation line foot}{parent=separation line} +\setbeamercolor{middle separation line foot}{parent=separation line} +\setbeamercolor{lower separation line foot}{parent=separation line} + +\setbeamercolor{abstract}{} +\setbeamercolor{abstract title}{parent=structure} + +\setbeamercolor{verse}{} + +\setbeamercolor{quotation}{} +\setbeamercolor{quote}{parent=quotation} + +\setbeamercolor{page number in head/foot}{fg=fg!50!bg} + +\setbeamercolor{qed symbol}{parent=structure} + +\mode + diff --git a/my_docs/22/lmod_zoom_mtg_2022_06_07/beamerfontthemeTACC.sty b/my_docs/22/lmod_zoom_mtg_2022_06_07/beamerfontthemeTACC.sty deleted file mode 120000 index 78e971fb8..000000000 --- a/my_docs/22/lmod_zoom_mtg_2022_06_07/beamerfontthemeTACC.sty +++ /dev/null @@ -1 +0,0 @@ -../../beamer/beamerfontthemeTACC.sty \ No newline at end of file diff --git a/my_docs/22/lmod_zoom_mtg_2022_06_07/beamerfontthemeTACC.sty b/my_docs/22/lmod_zoom_mtg_2022_06_07/beamerfontthemeTACC.sty new file mode 100755 index 000000000..ef9ce1e5e --- /dev/null +++ b/my_docs/22/lmod_zoom_mtg_2022_06_07/beamerfontthemeTACC.sty @@ -0,0 +1,12 @@ +% Copyright 2003 by Till Tantau +% +% This program can be redistributed and/or modified under the terms +% of the GNU Public License, version 2. + +\mode + +\setbeamerfont{frametitle}{parent=structure,size=\LARGE,series=\bfseries} +\setbeamerfont{framesubtitle}{parent=frametitle,size=\small} + +\mode + \ No newline at end of file diff --git a/my_docs/22/lmod_zoom_mtg_2022_06_07/beamerfontthemeTACC16.sty b/my_docs/22/lmod_zoom_mtg_2022_06_07/beamerfontthemeTACC16.sty deleted file mode 120000 index a1f2fa5f9..000000000 --- a/my_docs/22/lmod_zoom_mtg_2022_06_07/beamerfontthemeTACC16.sty +++ /dev/null @@ -1 +0,0 @@ -../../beamer/beamerfontthemeTACC16.sty \ No newline at end of file diff --git a/my_docs/22/lmod_zoom_mtg_2022_06_07/beamerfontthemeTACC16.sty b/my_docs/22/lmod_zoom_mtg_2022_06_07/beamerfontthemeTACC16.sty new file mode 100755 index 000000000..b65271835 --- /dev/null +++ b/my_docs/22/lmod_zoom_mtg_2022_06_07/beamerfontthemeTACC16.sty @@ -0,0 +1,21 @@ +% Copyright 2003 by Till Tantau +% +% This program can be redistributed and/or modified under the terms +% of the GNU Public License, version 2. + +\mode +\setbeamerfont{title}{parent=structure,size=\LARGE,series=\bfseries} +\setbeamerfont{author}{parent=structure,size=\large, series=\normalfont} +\setbeamerfont{frametitle}{parent=structure,size=\LARGE,series=\bfseries} +\setbeamerfont{framesubtitle}{parent=frametitle,size=\small} + +%\usefonttheme{professionalfonts} % using non standard fonts for beamer +%\usefonttheme{serif} % default family is serif +%\usepackage{fontspec} +%\setmainfont{Century Gothic} + +\usepackage{fontspec} +\usepackage{libertine} + +\mode + diff --git a/my_docs/22/lmod_zoom_mtg_2022_06_07/beamerinnerthemeTACC.sty b/my_docs/22/lmod_zoom_mtg_2022_06_07/beamerinnerthemeTACC.sty deleted file mode 120000 index 8d5ae3921..000000000 --- a/my_docs/22/lmod_zoom_mtg_2022_06_07/beamerinnerthemeTACC.sty +++ /dev/null @@ -1 +0,0 @@ -../../beamer/beamerinnerthemeTACC.sty \ No newline at end of file diff --git a/my_docs/22/lmod_zoom_mtg_2022_06_07/beamerinnerthemeTACC.sty b/my_docs/22/lmod_zoom_mtg_2022_06_07/beamerinnerthemeTACC.sty new file mode 100755 index 000000000..29e2bce81 --- /dev/null +++ b/my_docs/22/lmod_zoom_mtg_2022_06_07/beamerinnerthemeTACC.sty @@ -0,0 +1,11 @@ +\mode + +\setbeamertemplate{itemize item}[circle] +\setbeamertemplate{itemize subitem}{{}--{}} +\setbeamertemplate{itemize subsubitem}[circle] +\setbeamertemplate{section in toc}{$\bullet$\hskip.5em\inserttocsection} +%\setbeamertemplate{subsection in toc}{} +\setbeamertemplate{subsubsection in toc}{} + +\mode + diff --git a/my_docs/22/lmod_zoom_mtg_2022_06_07/beamerinnerthemeTACC16.sty b/my_docs/22/lmod_zoom_mtg_2022_06_07/beamerinnerthemeTACC16.sty deleted file mode 120000 index 5955acc99..000000000 --- a/my_docs/22/lmod_zoom_mtg_2022_06_07/beamerinnerthemeTACC16.sty +++ /dev/null @@ -1 +0,0 @@ -../../beamer/beamerinnerthemeTACC16.sty \ No newline at end of file diff --git a/my_docs/22/lmod_zoom_mtg_2022_06_07/beamerinnerthemeTACC16.sty b/my_docs/22/lmod_zoom_mtg_2022_06_07/beamerinnerthemeTACC16.sty new file mode 100755 index 000000000..f7f454e1d --- /dev/null +++ b/my_docs/22/lmod_zoom_mtg_2022_06_07/beamerinnerthemeTACC16.sty @@ -0,0 +1,11 @@ +\mode + +\setbeamertemplate{itemize item}[triangle] +\setbeamertemplate{itemize subitem}[triangle] +\setbeamertemplate{itemize subsubitem}[triangle] +\setbeamertemplate{section in toc}{$\bullet$\hskip.5em\inserttocsection} +%\setbeamertemplate{subsection in toc}{} +\setbeamertemplate{subsubsection in toc}{} + +\mode + diff --git a/my_docs/22/lmod_zoom_mtg_2022_06_07/beamerouterthemeTACC.sty b/my_docs/22/lmod_zoom_mtg_2022_06_07/beamerouterthemeTACC.sty deleted file mode 120000 index da0a45d33..000000000 --- a/my_docs/22/lmod_zoom_mtg_2022_06_07/beamerouterthemeTACC.sty +++ /dev/null @@ -1 +0,0 @@ -../../beamer/beamerouterthemeTACC.sty \ No newline at end of file diff --git a/my_docs/22/lmod_zoom_mtg_2022_06_07/beamerouterthemeTACC.sty b/my_docs/22/lmod_zoom_mtg_2022_06_07/beamerouterthemeTACC.sty new file mode 100755 index 000000000..038580303 --- /dev/null +++ b/my_docs/22/lmod_zoom_mtg_2022_06_07/beamerouterthemeTACC.sty @@ -0,0 +1,196 @@ +% Copyright 2003 by Till Tantau +% +% This program can be redistributed and/or modified under the terms +% of the GNU Public License, version 2. + +\mode + +\setbeamertemplate{frametitle}[default][center] +\addtobeamertemplate{frametitle}{\vskip 4ex minus 4ex}{} + +% Here we define what appears at the bottom of each slide: the "footline". +\setbeamertemplate{footline}{% + \leavevmode% + + % Horizontal line dividing the rest of the slide from the footer? + % hrule goes all the way across... + % \hrule height.3pt% + % With \rule, you can specify the thickness + % \rule[raise-height]{width}{thickness} + \hspace{.025\textwidth}\rule{.95\textwidth}{.5pt} + + \hbox{% + % On the left half of the footer, insert the TACC logo + \begin{minipage}{.5\textwidth}% + \hskip .033\textwidth%Give horizontal space else this will set on the left edge of the slide! + % TACC logo with custom viewport! + \includegraphics[viewport=1 -1 135 35, clip=true, width=.4\textwidth]{figures/TACC_logo} + \end{minipage} + % + \begin{minipage}{.5\textwidth}% + \vskip .023\textheight% + \raggedleft% + \setlength{\rightskip}{.033\textwidth} + % + % If we are not on the first page, insert a page number + % For some reason, insertframenumber is buggy when you have fragile + % slides with verbatim environments in them... it tends to skip numbers + % for some reason! On the other hand, the pagenumber is incremented + % for *every* slide, including transition slides... + \ifnum \thepage>1 + % \insertshorttitle + \insertframenumber + % \insertframenumber/\inserttotalframenumber + % \insertpagenumber + \else % Do a phantom of whatever you do on other pages, so spacing matches + %$\phantom{\insertshorttitle}$ + $\phantom{\insertframenumber}$ + %$\phantom{\insertframenumber/\inserttotalframenumber}$ + %$\phantom{\insertpagenumber}$ + \fi + \hfill\includegraphics[width=.5\textwidth]{figures/UT_logo}% + \end{minipage}% + }% + \vskip .023\textheight% +} + + + + +\ifTACCheadernav + +\usesectionheadtemplate +{\hfill\insertsectionhead} +{\hfill\color{fg!50!bg}\insertsectionhead} + +% Head +\ifbeamer@compress + +% Here we define how the top of the frame looks, the "headline". +\setbeamertemplate{headline} +{% + \ifnum \thepage>1 + \leavevmode% + \begin{beamercolorbox}[wd=.5\paperwidth,ht=2.5ex,dp=1.125ex]{% + section in head/foot}% + \insertsectionnavigationhorizontal{.5\paperwidth}{\hskip0pt plus1filll}{}% + \end{beamercolorbox}% + \begin{beamercolorbox}[wd=.5\paperwidth,ht=2.5ex,dp=1.125ex]{% + subsection in head/foot}% + \insertsubsectionnavigationhorizontal{% + .5\paperwidth}{}{\hskip0pt plus1filll}% + \end{beamercolorbox}% + \fi %\thepage>1 +} + +\else% Not compressed + +\setbeamertemplate{headline} +{% + \ifnum \thepage>1 + \leavevmode% + \@tempdimb=2.4375ex% + \ifnum\beamer@subsectionmax<\beamer@sectionmax% + \multiply\@tempdimb by\beamer@sectionmax% + \else% + \multiply\@tempdimb by\beamer@subsectionmax% + \fi% + \ifdim\@tempdimb>0pt% + \advance\@tempdimb by 1.125ex% + \begin{beamercolorbox}[wd=.5\paperwidth,ht=\@tempdimb]{% + section in head/foot}% + \vbox to\@tempdimb{\vfil\insertsectionnavigation{.5\paperwidth}\vfil}% + \end{beamercolorbox}% + \begin{beamercolorbox}[wd=.5\paperwidth,ht=\@tempdimb]{% + subsection in head/foot}% + \vbox to\@tempdimb{\vfil\insertsubsectionnavigation{.5\paperwidth}\vfil}% + \end{beamercolorbox}% + \fi% + \fi % \thepage>1 +} + +\fi % end if compressed +\fi % TACCheadernav + + +\ifTACCheadertree + +\setbeamertemplate{headline} +{ + \begin{beamercolorbox}[wd=\paperwidth,colsep=1.5pt + ]{upper separation line head} + \end{beamercolorbox} + % + % Place short title + % + \begin{beamercolorbox}[wd=\paperwidth,ht=2.5ex,dp=1.125ex,% + leftskip=.3cm,rightskip=.3cm plus1fil]{title in head/foot} + \usebeamerfont{title in head/foot}\insertshorttitle + \end{beamercolorbox} + + % + % Place section + % + \begin{beamercolorbox}[wd=\paperwidth,ht=2.5ex,dp=1.125ex,% + leftskip=.3cm,rightskip=.3cm plus1fil]{section in head/foot} + \usebeamerfont{section in head/foot}% + %\ifbeamer@tree@showhooks + \setbox\beamer@tempbox=\hbox{\insertsectionhead}% + \ifdim\wd\beamer@tempbox>1pt% + \hskip2pt\raise1.9pt\hbox{\vrule width0.4pt height1.875ex\vrule width 5pt height0.4pt}% + \hskip1pt% + \fi% \ifdim + %\else% + %\hskip6pt% + %\fi% \ifbeamer + \insertsectionhead + \end{beamercolorbox} + +% +% Place subsection +% +\begin{beamercolorbox}[wd=\paperwidth,ht=2.5ex,dp=1.125ex,% + leftskip=.3cm,rightskip=.3cm plus1fil]{subsection in head/foot} + \usebeamerfont{subsection in head/foot}% + %\ifbeamer@tree@showhooks + \setbox\beamer@tempbox=\hbox{\insertsubsectionhead}% + \ifdim\wd\beamer@tempbox>1pt% + \hskip9.4pt\raise1.9pt\hbox{\vrule width0.4pt height1.875ex\vrule width 5pt height0.4pt}% + \hskip1pt% + \fi% \ifdim + %\else% + %\hskip12pt% + %\fi% \ifbeamer + \insertsubsectionhead +\end{beamercolorbox} + +% +% Place final separation box +% + \begin{beamercolorbox}[wd=\paperwidth,colsep=1.5pt + ]{lower separation line head} + \end{beamercolorbox} + + % + % Another matching rule which helps to frame the content + % + \hspace{.025\textwidth}\rule{.95\textwidth}{.5pt} +} +\fi % TACCheadertree + + +% The following command suppresses all navigation symbols. This is +% necessary in the TACC theme, since it overlaps where we want the +% logo to be. +\setbeamertemplate{navigation symbols}{} + +% Align the navigation symbols vertically (still overlaps our logo!) +%\setbeamertemplate{navigation symbols}[vertical]{} + +% Only places the slide-forward and slide-back symbol, but yes, +% this still overlaps our logo! +%\setbeamertemplate{navigation symbols}[only frame symbol]{} + + +\mode + diff --git a/my_docs/22/lmod_zoom_mtg_2022_06_07/beamerouterthemeTACC16.sty b/my_docs/22/lmod_zoom_mtg_2022_06_07/beamerouterthemeTACC16.sty deleted file mode 120000 index 54bd09537..000000000 --- a/my_docs/22/lmod_zoom_mtg_2022_06_07/beamerouterthemeTACC16.sty +++ /dev/null @@ -1 +0,0 @@ -../../beamer/beamerouterthemeTACC16.sty \ No newline at end of file diff --git a/my_docs/22/lmod_zoom_mtg_2022_06_07/beamerouterthemeTACC16.sty b/my_docs/22/lmod_zoom_mtg_2022_06_07/beamerouterthemeTACC16.sty new file mode 100755 index 000000000..d5e6388c7 --- /dev/null +++ b/my_docs/22/lmod_zoom_mtg_2022_06_07/beamerouterthemeTACC16.sty @@ -0,0 +1,312 @@ +% Antonio Gomez (agomez@tacc.utexas.edu) +% 4-20-17. Added option to put the footer on the right side + + + +\mode + +\usepackage{xcolor} +\usepackage{graphicx} +\usepackage{etoolbox} + + + +% This theme accepts the "rightfooter" option +% When used, it will put the TACC logo at the bottom of the slide on the right side +% By default, it goes to the left + +\xifaspectratio{ + {169} { + \pgfdeclareimage[width=\paperwidth]{titlebackground}{./figures/master169.jpg} + \if@rightfooterOption + \pgfdeclareimage[width=\paperwidth]{background}{./figures/secondary_right169.jpg} +\else + \pgfdeclareimage[width=\paperwidth]{background}{./figures/secondary169.jpg} +\fi +} +}[ +\pgfdeclareimage[width=\paperwidth]{titlebackground}{./figures/master.jpg} + \if@rightfooterOption + \pgfdeclareimage[width=\paperwidth]{background}{./figures/secondary_right.jpg} +\else + \pgfdeclareimage[width=\paperwidth]{background}{./figures/secondary.jpg} +\fi +] + +\setbeamertemplate{background canvas}{% +\xifaspectratio{ + {169} { + \ifnum\c@framenumber=1 % + \begin{picture}(0,0) + \put(-3,-256){% + \pgfuseimage{titlebackground} + } + \end{picture} + \else% + \begin{picture}(0,0) + \put(-3,-260){% + \pgfuseimage{background} + } + \end{picture} + \fi + } + {43} { + \ifnum\c@framenumber=1 % + \begin{picture}(0,0) + \put(-4,-274){% + \pgfuseimage{titlebackground} + } + \end{picture} + \else% + \begin{picture}(0,0) + \put(-4,-274){% + \pgfuseimage{background} + } + \end{picture} + \fi + } +} +} + + + +%\setbeamertemplate{background canvas}{% +% % On title page +% \ifnum\c@framenumber=1 % +% \begin{picture}(0,0) +% \put(0,-253){% +% \pgfuseimage{titlebackground} +% } +% \end{picture} +% +% \else% +% \xifaspectratio{ +% {169} { +% % Other frames background +% \begin{picture}(0,0) +% \put(-4,-260){% +% \pgfuseimage{background} +% } +% \end{picture} +% } +% }[ +% % Other frames background +% \begin{picture}(0,0) +% \put(-4,-274){% +% \pgfuseimage{background} +% } +% \end{picture} +% ] +% \fi% +%} + + +\setbeamertemplate{title page}{ +\vspace{40pt} +\begin{center} +\usebeamerfont{title} {\huge \inserttitle}\par +\vspace{4ex} +\usebeamerfont{author} { + \insertauthor +}\par +\vspace{2ex} +\usebeamerfont{institute}{ + \insertinstitute +} \par +\vspace{2ex} +\usebeamerfont{date}{ + \insertdate +} +\end{center} +} + + +\setbeamertemplate{frametitle}[default][center] +\setbeamertemplate{frametitle}{ + \makeatletter + \regexpatchcmd{\insertframetitle} + {(\c{usebeamertemplate}.*)\c{fi}} + {\c{NoCaseChange}\cB\{\1\cE\}\c{fi}} + {}{}% + \makeatother + \vskip1ex + \insertframetitle +} + +% Here we define what appears at the bottom of each slide: the "footline". +\setbeamertemplate{footline}{% + \leavevmode% + + % Horizontal line dividing the rest of the slide from the footer? + % hrule goes all the way across... + % \hrule height.3pt% + % With \rule, you can specify the thickness + % \rule[raise-height]{width}{thickness} + % \hspace{.025\textwidth}\rule{.95\textwidth}{.5pt} + + \hbox{% + \ifnum \thepage>1 + \if@rightfooterOption + \begin{minipage}{.2\textwidth}% + \hskip .05\textwidth%Give horizontal space else this will set on the left edge of the slide! + \end{minipage} + \else + \begin{minipage}{.4\textwidth}% + \hskip .05\textwidth%Give horizontal space else this will set on the left edge of the slide! + \end{minipage} + \fi + + + \begin{minipage}{\textwidth}% + % \vskip .023\textheight% + \raggedleft% + \setlength{\rightskip}{\textwidth} + \if@rightfooterOption + \hbox{% + \begin{beamercolorbox}[wd=0.7\textwidth,ht=2.25ex,dp=1ex,left]{author in head/foot}% + \insertshorttitle{} \hskip .01\textwidth | \hskip .01\textwidth \insertdate{} \hskip .01\textwidth | \hskip .01\textwidth \insertframenumber{} + \end{beamercolorbox}% + } + \else + \hbox{% + \begin{beamercolorbox}[wd=0.5\textwidth,ht=2.25ex,dp=1ex,left]{author in head/foot}% + \insertshorttitle{} \hskip .01\textwidth | \hskip .01\textwidth \insertdate{} \hskip .01\textwidth | \hskip .01\textwidth \insertframenumber{} + \end{beamercolorbox}% + } + \fi + + \end{minipage}% + \begin{minipage}{.05\textwidth}% + \end{minipage}% + \fi %\thepage>1 + }% + \vskip .023\textheight% + +} + + + + +\ifTACCheadernav + +\usesectionheadtemplate +{\hfill\insertsectionhead} +{\hfill\color{fg!50!bg}\insertsectionhead} + +% Head +\ifbeamer@compress + +% Here we define how the top of the frame looks, the "headline". +\setbeamertemplate{headline} +{% + \ifnum \thepage>1 + \leavevmode% + \begin{beamercolorbox}[wd=.5\paperwidth,ht=2.5ex,dp=1.125ex]{% + section in head/foot}% + \insertsectionnavigationhorizontal{.5\paperwidth}{\hskip0pt plus1filll}{}% + \end{beamercolorbox}% + \begin{beamercolorbox}[wd=.5\paperwidth,ht=2.5ex,dp=1.125ex]{% + subsection in head/foot}% + \insertsubsectionnavigationhorizontal{% + .5\paperwidth}{}{\hskip0pt plus1filll}% + \end{beamercolorbox}% + \fi %\thepage>1 +} + +\else% Not compressed + +\setbeamertemplate{headline} +{% + \ifnum \thepage>1 + \leavevmode% + \@tempdimb=2.4375ex% + \ifnum\beamer@subsectionmax<\beamer@sectionmax% + \multiply\@tempdimb by\beamer@sectionmax% + \else% + \multiply\@tempdimb by\beamer@subsectionmax% + \fi% + \ifdim\@tempdimb>0pt% + \advance\@tempdimb by 1.125ex% + \begin{beamercolorbox}[wd=.5\paperwidth,ht=\@tempdimb]{% + section in head/foot}% + \vbox to\@tempdimb{\vfil\insertsectionnavigation{.5\paperwidth}\vfil}% + \end{beamercolorbox}% + \begin{beamercolorbox}[wd=.5\paperwidth,ht=\@tempdimb]{% + subsection in head/foot}% + \vbox to\@tempdimb{\vfil\insertsubsectionnavigation{.5\paperwidth}\vfil}% + \end{beamercolorbox}% + \fi% + \fi % \thepage>1 +} + +\fi % end if compressed +\fi % TACCheadernav + + +\ifTACCheadertree + +\setbeamertemplate{headline} +{ + \begin{beamercolorbox}[wd=\paperwidth,colsep=1.5pt]{upper separation line head} + \end{beamercolorbox} + % + % Place short title + % + \begin{beamercolorbox}[wd=\paperwidth,ht=2.5ex,dp=1.125ex,% + leftskip=.3cm,rightskip=.3cm plus1fil]{title in head/foot} + \usebeamerfont{title in head/foot}\insertshorttitle + \end{beamercolorbox} + + % + % Place section + % + \begin{beamercolorbox}[wd=\paperwidth,ht=2.5ex,dp=1.125ex,% + leftskip=.3cm,rightskip=.3cm plus1fil]{section in head/foot} + \usebeamerfont{section in head/foot}% + %\ifbeamer@tree@showhooks + \setbox\beamer@tempbox=\hbox{\insertsectionhead}% + \ifdim\wd\beamer@tempbox>1pt% + \hskip2pt\raise1.9pt\hbox{\vrule width0.4pt height1.875ex\vrule width 5pt height0.4pt}% + \hskip1pt% + \fi + \insertsectionhead + \end{beamercolorbox} + +% +% Place subsection +% +\begin{beamercolorbox}[wd=\paperwidth,ht=2.5ex,dp=1.125ex,% + leftskip=.3cm,rightskip=.3cm plus1fil]{subsection in head/foot} + \usebeamerfont{subsection in head/foot}% + %\ifbeamer@tree@showhooks + \setbox\beamer@tempbox=\hbox{\insertsubsectionhead}% + \ifdim\wd\beamer@tempbox>1pt% + \hskip9.4pt\raise1.9pt\hbox{\vrule width0.4pt height1.875ex\vrule width 5pt height0.4pt}% + \hskip1pt% + \fi + \insertsubsectionhead +\end{beamercolorbox} + +% +% Place final separation box +% + \begin{beamercolorbox}[wd=\paperwidth,colsep=1.5pt + ]{lower separation line head} + \end{beamercolorbox} + + % + % Another matching rule which helps to frame the content + % + \hspace{.025\textwidth}\rule{.95\textwidth}{.5pt} +} +\fi % TACCheadertree + + +% The following command suppresses all navigation symbols. This is +% necessary in the TACC theme, since it overlaps where we want the +% logo to be. +\setbeamertemplate{navigation symbols}{} + + +\mode + diff --git a/my_docs/22/lmod_zoom_mtg_2022_06_07/beamerthemeTACC.sty b/my_docs/22/lmod_zoom_mtg_2022_06_07/beamerthemeTACC.sty deleted file mode 120000 index 5c339abd4..000000000 --- a/my_docs/22/lmod_zoom_mtg_2022_06_07/beamerthemeTACC.sty +++ /dev/null @@ -1 +0,0 @@ -../../beamer/beamerthemeTACC.sty \ No newline at end of file diff --git a/my_docs/22/lmod_zoom_mtg_2022_06_07/beamerthemeTACC.sty b/my_docs/22/lmod_zoom_mtg_2022_06_07/beamerthemeTACC.sty new file mode 100755 index 000000000..c6a1b1269 --- /dev/null +++ b/my_docs/22/lmod_zoom_mtg_2022_06_07/beamerthemeTACC.sty @@ -0,0 +1,26 @@ +%% TACC theme for beamer + +\newif\ifTACCheadernav +\DeclareOption{headernav}{\global\TACCheadernavtrue} + +\newif\ifTACCheadertree +\DeclareOption{headertree}{\global\TACCheadertreetrue} +\ProcessOptions + +\mode + +\usefonttheme{TACC} +\usecolortheme{TACC} +\useinnertheme{TACC} +\useoutertheme{TACC} + +\mode + + +\newcommand{\event}[1]{% + \makeatletter% + \def\TACC@eventname{#1}% + \makeatother} + +\newcommand{\sectionframe}[1]{\section{#1}\frame{\Large\textbf{#1}}} +\newcommand{\subsectionframe}[1]{\subsection{#1}\frame{\large\textbf{#1}}} diff --git a/my_docs/22/lmod_zoom_mtg_2022_06_07/beamerthemeTACC16.sty b/my_docs/22/lmod_zoom_mtg_2022_06_07/beamerthemeTACC16.sty deleted file mode 120000 index 7a9d4d296..000000000 --- a/my_docs/22/lmod_zoom_mtg_2022_06_07/beamerthemeTACC16.sty +++ /dev/null @@ -1 +0,0 @@ -../../beamer/beamerthemeTACC16.sty \ No newline at end of file diff --git a/my_docs/22/lmod_zoom_mtg_2022_06_07/beamerthemeTACC16.sty b/my_docs/22/lmod_zoom_mtg_2022_06_07/beamerthemeTACC16.sty new file mode 100755 index 000000000..b522d0207 --- /dev/null +++ b/my_docs/22/lmod_zoom_mtg_2022_06_07/beamerthemeTACC16.sty @@ -0,0 +1,61 @@ +%% TACC theme for beamer + + +\newif\if@rightfooterOption +\@rightfooterOptionfalse +\DeclareOption{rightfooter}{\@rightfooterOptiontrue} +\ProcessOptions + + +\newif\ifTACCheadernav +\DeclareOption{headernav}{\global\TACCheadernavtrue} + +\newif\ifTACCheadertree +\DeclareOption{headertree}{\global\TACCheadertreetrue} +\ProcessOptions + +\usepackage{xparse} +\ExplSyntaxOn +\NewDocumentCommand{\ifaspectratio}{mmm} + { + % Recover the option from those passed to the class + \keys_set:nf { zunbeltz/beameroptions } { \use:c { opt@beamer.cls } } + \str_if_eq:nVTF { #1 } \l_zunbeltz_aspectratio_tl { #2 } { #3 } + } +\NewDocumentCommand{\xifaspectratio}{mO{}} + { + % Recover the option from those passed to the class + \keys_set:nf { zunbeltz/beameroptions } { \use:c { opt@beamer.cls } } + \str_case:VnF \l_zunbeltz_aspectratio_tl { #1 } { #2 } + } +% We need to define only one key, the other are treated as `unknown' +\keys_define:nn { zunbeltz/beameroptions } + { + aspectratio .tl_set:N = \l_zunbeltz_aspectratio_tl, + aspectratio .initial:n = 43, + unknown .code:n = {}, + } + +% Generate the variants we need +\cs_generate_variant:Nn \keys_set:nn { nf } +\cs_generate_variant:Nn \str_if_eq:nnTF { nV } +\cs_generate_variant:Nn \str_case:nnF { V } +\ExplSyntaxOff + +\mode + +\usefonttheme{TACC16} +\useinnertheme{TACC16} +\useoutertheme{TACC16} +\usecolortheme{TACC16} + +\mode + + +\newcommand{\event}[1]{% + \makeatletter% + \def\TACC@eventname{#1}% + \makeatother} + +\newcommand{\sectionframe}[1]{\section{#1}\frame{\Large\textbf{#1}}} +\newcommand{\subsectionframe}[1]{\subsection{#1}\frame{\large\textbf{#1}}} diff --git a/my_docs/22/lmod_zoom_mtg_2022_06_07/figures b/my_docs/22/lmod_zoom_mtg_2022_06_07/figures deleted file mode 120000 index ddafd8974..000000000 --- a/my_docs/22/lmod_zoom_mtg_2022_06_07/figures +++ /dev/null @@ -1 +0,0 @@ -../../beamer/figures \ No newline at end of file diff --git a/my_docs/22/lmod_zoom_mtg_2022_06_07/figures/TACC_logo.pdf b/my_docs/22/lmod_zoom_mtg_2022_06_07/figures/TACC_logo.pdf new file mode 100755 index 000000000..c018a20cb Binary files /dev/null and b/my_docs/22/lmod_zoom_mtg_2022_06_07/figures/TACC_logo.pdf differ diff --git a/my_docs/22/lmod_zoom_mtg_2022_06_07/figures/UT_logo.pdf b/my_docs/22/lmod_zoom_mtg_2022_06_07/figures/UT_logo.pdf new file mode 100755 index 000000000..d5b42e752 Binary files /dev/null and b/my_docs/22/lmod_zoom_mtg_2022_06_07/figures/UT_logo.pdf differ diff --git a/my_docs/22/lmod_zoom_mtg_2022_06_07/figures/cc.png b/my_docs/22/lmod_zoom_mtg_2022_06_07/figures/cc.png new file mode 100644 index 000000000..8a532ff8f Binary files /dev/null and b/my_docs/22/lmod_zoom_mtg_2022_06_07/figures/cc.png differ diff --git a/my_docs/22/lmod_zoom_mtg_2022_06_07/figures/isa.png b/my_docs/22/lmod_zoom_mtg_2022_06_07/figures/isa.png new file mode 100644 index 000000000..f95d985e7 Binary files /dev/null and b/my_docs/22/lmod_zoom_mtg_2022_06_07/figures/isa.png differ diff --git a/my_docs/22/lmod_zoom_mtg_2022_06_07/figures/master.jpg b/my_docs/22/lmod_zoom_mtg_2022_06_07/figures/master.jpg new file mode 100644 index 000000000..f5c56c04a Binary files /dev/null and b/my_docs/22/lmod_zoom_mtg_2022_06_07/figures/master.jpg differ diff --git a/my_docs/22/lmod_zoom_mtg_2022_06_07/figures/master169.jpg b/my_docs/22/lmod_zoom_mtg_2022_06_07/figures/master169.jpg new file mode 100644 index 000000000..b215776eb Binary files /dev/null and b/my_docs/22/lmod_zoom_mtg_2022_06_07/figures/master169.jpg differ diff --git a/my_docs/22/lmod_zoom_mtg_2022_06_07/figures/master169.png b/my_docs/22/lmod_zoom_mtg_2022_06_07/figures/master169.png new file mode 100644 index 000000000..bc5c0ed12 Binary files /dev/null and b/my_docs/22/lmod_zoom_mtg_2022_06_07/figures/master169.png differ diff --git a/my_docs/22/lmod_zoom_mtg_2022_06_07/figures/secondary.jpg b/my_docs/22/lmod_zoom_mtg_2022_06_07/figures/secondary.jpg new file mode 100644 index 000000000..d905a95c9 Binary files /dev/null and b/my_docs/22/lmod_zoom_mtg_2022_06_07/figures/secondary.jpg differ diff --git a/my_docs/22/lmod_zoom_mtg_2022_06_07/figures/secondary169.jpg b/my_docs/22/lmod_zoom_mtg_2022_06_07/figures/secondary169.jpg new file mode 100644 index 000000000..4eb017957 Binary files /dev/null and b/my_docs/22/lmod_zoom_mtg_2022_06_07/figures/secondary169.jpg differ diff --git a/my_docs/22/lmod_zoom_mtg_2022_06_07/figures/secondary169.png b/my_docs/22/lmod_zoom_mtg_2022_06_07/figures/secondary169.png new file mode 100644 index 000000000..cb9060a56 Binary files /dev/null and b/my_docs/22/lmod_zoom_mtg_2022_06_07/figures/secondary169.png differ diff --git a/my_docs/22/lmod_zoom_mtg_2022_06_07/figures/secondary_right.jpg b/my_docs/22/lmod_zoom_mtg_2022_06_07/figures/secondary_right.jpg new file mode 100644 index 000000000..f25f93a58 Binary files /dev/null and b/my_docs/22/lmod_zoom_mtg_2022_06_07/figures/secondary_right.jpg differ diff --git a/my_docs/22/lmod_zoom_mtg_2022_06_07/figures/secondary_right169.jpg b/my_docs/22/lmod_zoom_mtg_2022_06_07/figures/secondary_right169.jpg new file mode 100644 index 000000000..567a1078f Binary files /dev/null and b/my_docs/22/lmod_zoom_mtg_2022_06_07/figures/secondary_right169.jpg differ diff --git a/my_docs/22/lmod_zoom_mtg_2022_06_07/themes b/my_docs/22/lmod_zoom_mtg_2022_06_07/themes deleted file mode 120000 index a98530730..000000000 --- a/my_docs/22/lmod_zoom_mtg_2022_06_07/themes +++ /dev/null @@ -1 +0,0 @@ -../../beamer/themes \ No newline at end of file diff --git a/my_docs/22/lmod_zoom_mtg_2022_06_07/themes/beamercolorthemeTACC16.sty b/my_docs/22/lmod_zoom_mtg_2022_06_07/themes/beamercolorthemeTACC16.sty new file mode 100644 index 000000000..248ae8cb6 --- /dev/null +++ b/my_docs/22/lmod_zoom_mtg_2022_06_07/themes/beamercolorthemeTACC16.sty @@ -0,0 +1,193 @@ +% Copyright 2003 by Till Tantau . +% +% This program can be redistributed and/or modified under the terms +% of the GNU Public License, version 2. + +\mode + +\usepackage{textcase,regexpatch} + +\setbeamertemplate{blocks}[rounded][shadow=true] + + +\definecolor{TACCred}{RGB}{180,13,29} +\definecolor{TACCorange}{RGB}{210,104,43} +\definecolor{TACCblue}{RGB}{21,77,122} +%\definecolor{TACCgreen}{RGB}{30,134,104} +\definecolor{TACCgreen}{RGB}{49,168,51} + +% I downloaded a gimp color palette from +% http://maururu.net/2007/latex-beamer-color-palette/ +% Which provides rgb values (I think) for several of the +% default beamer themes. You can open this in gimp by +% opening the Palettes dialog, right-clicking anywhere and choosing +% 'Import Palette'. A color in there called 'default added blue' +% appeared to be approximately what I wanted. It had the triple +% of values 141 145 208. If you double-click on this in the +% palette editor it gives you a bunch of information. You can't +% use these values directly to set a color...it just comes out white. +% I think definecolor is expecting something normalized by 255. Yes! + + +%%% +% Set the normal text color +%%% +\setbeamercolor{normal text}{fg=black} %,bg=white} +\setbeamercolor{example text}{fg=TACCgreen} +\setbeamercolor{alerted text}{fg=TACCorange} + + +\setbeamercolor{structure}{fg=black} +%\setbeamercolor{structure}{fg=black} + +\setbeamercolor{background canvas}{parent=normal text} +\setbeamercolor{background}{parent=background canvas} + +\setbeamercolor{palette primary}{use=structure,fg=structure.fg} +\setbeamercolor{palette secondary}{use=structure,fg=structure.fg!75!black} +\setbeamercolor{palette tertiary}{use=structure,fg=structure.fg!50!black} +\setbeamercolor{palette quaternary}{fg=black} + +\setbeamercolor{palette sidebar primary}{use=normal text,fg=normal text.fg} +\setbeamercolor{palette sidebar secondary}{use=structure,fg=structure.fg} +\setbeamercolor{palette sidebar tertiary}{use=normal text,fg=normal text.fg} +\setbeamercolor{palette sidebar quaternary}{use=structure,fg=structure.fg} + +\setbeamercolor{math text}{} +\setbeamercolor{math text inlined}{parent=math text} +\setbeamercolor{math text displayed}{parent=math text} + +\setbeamercolor{normal text in math text}{} + +\setbeamercolor{local structure}{parent=structure} + +\setbeamercolor{titlelike}{parent=structure} + +\setbeamercolor{title}{parent=titlelike} +\setbeamercolor{title in head/foot}{parent=palette quaternary} +\setbeamercolor{title in sidebar}{parent=palette sidebar quaternary} + +\setbeamercolor{subtitle}{parent=title} + +\setbeamercolor{author}{} +\setbeamercolor{author in head/foot}{parent=palette primary} +\setbeamercolor{author in sidebar}{use=palette sidebar tertiary,fg=palette sidebar tertiary.fg} + +\setbeamercolor{institute}{} +\setbeamercolor{institute in head/foot}{parent=palette tertiary} +\setbeamercolor{institute in sidebar}{use=palette sidebar tertiary,fg=palette sidebar tertiary.fg} + +\setbeamercolor{date}{} +\setbeamercolor{date in head/foot}{parent=palette secondary} +\setbeamercolor{date in sidebar}{use=palette sidebar tertiary,fg=palette sidebar tertiary.fg} + +\setbeamercolor{titlegraphic}{} + +\setbeamercolor{part name}{} +\setbeamercolor{part title}{parent=titlelike} + +\setbeamercolor{section in toc}{parent=structure} +\setbeamercolor{section in toc shaded}{parent=section in toc} +\setbeamercolor{section in head/foot}{parent=palette tertiary} +\setbeamercolor{section in sidebar}{parent=palette sidebar secondary} +\setbeamercolor{section in sidebar shaded}{use=section in sidebar,fg=section in sidebar.fg!40!bg} +\setbeamercolor{section number projected}{parent=item projected} + +\setbeamercolor{subsection in toc}{} +\setbeamercolor{subsection in toc shaded}{parent=subsection in toc} +\setbeamercolor{subsection in head/foot}{parent=palette secondary} +\setbeamercolor{subsection in sidebar}{parent=palette sidebar primary} +\setbeamercolor{subsection in sidebar shaded}{use=subsection in sidebar,fg=subsection in sidebar.fg!40!bg} +\setbeamercolor{subsection number projected}{parent={subitem projected}} + +\setbeamercolor{subsubsection in toc}{parent=subsection in toc} +\setbeamercolor{subsubsection in toc shaded}{parent=subsubsection in toc} +\setbeamercolor{subsubsection in head/foot}{parent=subsection in head/foot} +\setbeamercolor{subsubsection in sidebar}{parent=subsection in sidebar} +\setbeamercolor{subsubsection in sidebar shaded}{parent=subsection in sidebar shaded} +\setbeamercolor{subsubsection number projected}{parent=subsubitem projected} + +\setbeamercolor{headline}{} +\setbeamercolor{footline}{} + +\setbeamercolor{sidebar}{} +\setbeamercolor{sidebar left}{parent=sidebar} +\setbeamercolor{sidebar right}{parent=sidebar} + +\setbeamercolor{logo}{parent=palette secondary} + +\setbeamercolor{frametitle}{parent=titlelike} +\setbeamercolor{framesubtitle}{parent=frametitle} + +\setbeamercolor{frametitle right}{parent=frametitle} + +\setbeamercolor{caption}{} +\setbeamercolor{caption name}{parent=structure} + +\setbeamercolor{button}{use=local structure,bg=local structure.fg!50!bg,fg=white} +\setbeamercolor{button border}{use=button,fg=button.bg} +\setbeamercolor{navigation symbols}{use=structure,fg=structure.fg!40!bg} +\setbeamercolor{navigation symbols dimmed}{use=structure,fg=structure.fg!20!bg} +\setbeamercolor{mini frame}{parent=section in head/foot} + +\setbeamercolor{block body}{fg=black} +\setbeamercolor{block body alerted}{fg=black} +\setbeamercolor{block body example}{fg=black} + +\setbeamercolor{block title}{bg=TACCblue,fg=white} +\setbeamercolor{block title alerted}{bg=TACCred,fg=white} +\setbeamercolor{block title example}{bg=TACCgreen,fg=white} + +\setbeamercolor{item}{parent=local structure} +\setbeamercolor{subitem}{parent=item} +\setbeamercolor{subsubitem}{parent=subitem} + +\setbeamercolor{item projected}{parent=item,use=item,fg=black,bg=item.fg} +\setbeamercolor{subitem projected}{parent=item projected} +\setbeamercolor{subsubitem projected}{parent=subitem projected} + +\setbeamercolor{enumerate item}{parent=item} +\setbeamercolor{enumerate subitem}{parent=subitem} +\setbeamercolor{enumerate subsubitem}{parent=subsubitem} + +\setbeamercolor{itemize item}{parent=item} +\setbeamercolor{itemize subitem}{parent=subitem} +\setbeamercolor{itemize subsubitem}{parent=subsubitem} + +\setbeamercolor{itemize/enumerate body}{} +\setbeamercolor{itemize/enumerate subbody}{} +\setbeamercolor{itemize/enumerate subsubbody}{} + +\setbeamercolor{description item}{parent=item} + +\setbeamercolor{bibliography item}{parent=item} + +\setbeamercolor{bibliography entry author}{use=structure,fg=structure.fg} +\setbeamercolor{bibliography entry title}{use=normal text,fg=normal text.fg} +\setbeamercolor{bibliography entry location}{use=structure,fg=structure.fg!65!bg} +\setbeamercolor{bibliography entry note}{use=structure,fg=structure.fg!65!bg} + +\setbeamercolor{separation line}{} + +\setbeamercolor{upper separation line head}{parent=separation line} +\setbeamercolor{middle separation line head}{parent=separation line} +\setbeamercolor{lower separation line head}{parent=separation line} + +\setbeamercolor{upper separation line foot}{parent=separation line} +\setbeamercolor{middle separation line foot}{parent=separation line} +\setbeamercolor{lower separation line foot}{parent=separation line} + +\setbeamercolor{abstract}{} +\setbeamercolor{abstract title}{parent=structure} + +\setbeamercolor{verse}{} + +\setbeamercolor{quotation}{} +\setbeamercolor{quote}{parent=quotation} + +\setbeamercolor{page number in head/foot}{fg=fg!50!bg} + +\setbeamercolor{qed symbol}{parent=structure} + +\mode + diff --git a/my_docs/22/lmod_zoom_mtg_2022_06_07/themes/beamerfontthemeTACC16.sty b/my_docs/22/lmod_zoom_mtg_2022_06_07/themes/beamerfontthemeTACC16.sty new file mode 100644 index 000000000..d0fc325cc --- /dev/null +++ b/my_docs/22/lmod_zoom_mtg_2022_06_07/themes/beamerfontthemeTACC16.sty @@ -0,0 +1,21 @@ +% Copyright 2003 by Till Tantau +% +% This program can be redistributed and/or modified under the terms +% of the GNU Public License, version 2. + +\mode +\setbeamerfont{title}{parent=structure,size=\LARGE,series=\bfseries} +\setbeamerfont{author}{parent=structure,size=\large, series=\normalfont} +\setbeamerfont{frametitle}{parent=structure,size=\LARGE,series=\bfseries} +\setbeamerfont{framesubtitle}{parent=frametitle,size=\small} + +%\usefonttheme{professionalfonts} % using non standard fonts for beamer +%\usefonttheme{serif} % default family is serif +%\usepackage{fontspec} +%\setmainfont{Century Gothic} + +%\usepackage{fontspec} +\usepackage{libertine} + +\mode + diff --git a/my_docs/22/lmod_zoom_mtg_2022_06_07/themes/beamerinnerthemeTACC16.sty b/my_docs/22/lmod_zoom_mtg_2022_06_07/themes/beamerinnerthemeTACC16.sty new file mode 100644 index 000000000..f7f454e1d --- /dev/null +++ b/my_docs/22/lmod_zoom_mtg_2022_06_07/themes/beamerinnerthemeTACC16.sty @@ -0,0 +1,11 @@ +\mode + +\setbeamertemplate{itemize item}[triangle] +\setbeamertemplate{itemize subitem}[triangle] +\setbeamertemplate{itemize subsubitem}[triangle] +\setbeamertemplate{section in toc}{$\bullet$\hskip.5em\inserttocsection} +%\setbeamertemplate{subsection in toc}{} +\setbeamertemplate{subsubsection in toc}{} + +\mode + diff --git a/my_docs/22/lmod_zoom_mtg_2022_06_07/themes/beamerouterthemeTACC16-169.sty b/my_docs/22/lmod_zoom_mtg_2022_06_07/themes/beamerouterthemeTACC16-169.sty new file mode 100644 index 000000000..c62f9ed04 --- /dev/null +++ b/my_docs/22/lmod_zoom_mtg_2022_06_07/themes/beamerouterthemeTACC16-169.sty @@ -0,0 +1,247 @@ +% Copyright 2003 by Till Tantau +% +% This program can be redistributed and/or modified under the terms +% of the GNU Public License, version 2. + +\mode + +\usepackage{xcolor} +\usepackage{graphicx} +\usepackage{etoolbox} + +\pgfdeclareimage[width=\paperwidth]{titlebackground}{./figures/master169.png} +\pgfdeclareimage[width=\paperwidth]{background}{./figures/secondary169.png} + +\setbeamertemplate{background canvas}{% + \ifnum\c@framenumber=1% + \begin{picture}(0,0) + \put(-0.15,-250){% + \pgfuseimage{titlebackground} + } + %\put(0,-130.7){% + + %\begin{minipage}[b][45mm][t]{\textwidth}%{226mm} + %\begin{center} + % \usebeamerfont{title}{\MakeTextUppercase{\inserttitle}\par} + %\vspace{2ex} + %\usebeamerfont{author}{\insertauthor} + % \end{center} + %\end{minipage} + %} + \end{picture} + % On title page + \else% + % Other frames background + \begin{picture}(0,0) + \put(-0.15,-255.55){% + \pgfuseimage{background} + } + \end{picture} + \fi% +} + + +\setbeamertemplate{title page}{ +\vspace{40pt} +\begin{center} +\usebeamerfont{title} {\huge \inserttitle}\par +\vspace{4ex} +\usebeamerfont{author} { + \insertauthor +}\par +\vspace{2ex} +\usebeamerfont{institute}{ + \insertinstitute +} \par +\vspace{2ex} +\usebeamerfont{date}{ + \insertdate +} +\end{center} +} + + +\setbeamertemplate{frametitle}[default][center] +\setbeamertemplate{frametitle}{ + \makeatletter + \regexpatchcmd{\insertframetitle} + {(\c{usebeamertemplate}.*)\c{fi}} + {\c{NoCaseChange}\cB\{\1\cE\}\c{fi}} + {}{}% + \makeatother + \vskip1ex + \insertframetitle +} + +% Here we define what appears at the bottom of each slide: the "footline". +\setbeamertemplate{footline}{% + \leavevmode% + + % Horizontal line dividing the rest of the slide from the footer? + % hrule goes all the way across... + % \hrule height.3pt% + % With \rule, you can specify the thickness + % \rule[raise-height]{width}{thickness} + % \hspace{.025\textwidth}\rule{.95\textwidth}{.5pt} + + \hbox{% + \ifnum \thepage>1 + % On the left half of the footer, insert the TACC of + \begin{minipage}{.2\textwidth}% + \hskip .05\textwidth%Give horizontal space else this will set on the left edge of the slide! + % \includegraphics[width=.8\textwidth]{TACC_logo.png} + \end{minipage} + + + \begin{minipage}{\textwidth}% + % \vskip .023\textheight% + \raggedleft% + \setlength{\rightskip}{\textwidth} + \hbox{% + \begin{beamercolorbox}[wd=0.7\textwidth,ht=2.25ex,dp=1ex,left]{author in head/foot}% + \insertshorttitle{} \hskip .01\textwidth | \hskip .01\textwidth \insertdate{} \hskip .01\textwidth | \hskip .01\textwidth \insertframenumber{} + \end{beamercolorbox}% + } + + % + % If we are not on the first page, insert a page number + % For some reason, insertframenumber is buggy when you have fragile + % slides with verbatim environments in them... it tends to skip numbers + % for some reason! On the other hand, the pagenumber is incremented + % for *every* slide, including transition slides... + % \hfill\includegraphics[width=\textwidth]{tacc_ut.png} + \end{minipage}% + \begin{minipage}{.05\textwidth}% + \end{minipage}% + \fi %\thepage>1 + }% + \vskip .023\textheight% + +} + + + + +\ifTACCheadernav + +\usesectionheadtemplate +{\hfill\insertsectionhead} +{\hfill\color{fg!50!bg}\insertsectionhead} + +% Head +\ifbeamer@compress + +% Here we define how the top of the frame looks, the "headline". +\setbeamertemplate{headline} +{% + \ifnum \thepage>1 + \leavevmode% + \begin{beamercolorbox}[wd=.5\paperwidth,ht=2.5ex,dp=1.125ex]{% + section in head/foot}% + \insertsectionnavigationhorizontal{.5\paperwidth}{\hskip0pt plus1filll}{}% + \end{beamercolorbox}% + \begin{beamercolorbox}[wd=.5\paperwidth,ht=2.5ex,dp=1.125ex]{% + subsection in head/foot}% + \insertsubsectionnavigationhorizontal{% + .5\paperwidth}{}{\hskip0pt plus1filll}% + \end{beamercolorbox}% + \fi %\thepage>1 +} + +\else% Not compressed + +\setbeamertemplate{headline} +{% + \ifnum \thepage>1 + \leavevmode% + \@tempdimb=2.4375ex% + \ifnum\beamer@subsectionmax<\beamer@sectionmax% + \multiply\@tempdimb by\beamer@sectionmax% + \else% + \multiply\@tempdimb by\beamer@subsectionmax% + \fi% + \ifdim\@tempdimb>0pt% + \advance\@tempdimb by 1.125ex% + \begin{beamercolorbox}[wd=.5\paperwidth,ht=\@tempdimb]{% + section in head/foot}% + \vbox to\@tempdimb{\vfil\insertsectionnavigation{.5\paperwidth}\vfil}% + \end{beamercolorbox}% + \begin{beamercolorbox}[wd=.5\paperwidth,ht=\@tempdimb]{% + subsection in head/foot}% + \vbox to\@tempdimb{\vfil\insertsubsectionnavigation{.5\paperwidth}\vfil}% + \end{beamercolorbox}% + \fi% + \fi % \thepage>1 +} + +\fi % end if compressed +\fi % TACCheadernav + + +\ifTACCheadertree + +\setbeamertemplate{headline} +{ + \begin{beamercolorbox}[wd=\paperwidth,colsep=1.5pt]{upper separation line head} + \end{beamercolorbox} + % + % Place short title + % + \begin{beamercolorbox}[wd=\paperwidth,ht=2.5ex,dp=1.125ex,% + leftskip=.3cm,rightskip=.3cm plus1fil]{title in head/foot} + \usebeamerfont{title in head/foot}\insertshorttitle + \end{beamercolorbox} + + % + % Place section + % + \begin{beamercolorbox}[wd=\paperwidth,ht=2.5ex,dp=1.125ex,% + leftskip=.3cm,rightskip=.3cm plus1fil]{section in head/foot} + \usebeamerfont{section in head/foot}% + %\ifbeamer@tree@showhooks + \setbox\beamer@tempbox=\hbox{\insertsectionhead}% + \ifdim\wd\beamer@tempbox>1pt% + \hskip2pt\raise1.9pt\hbox{\vrule width0.4pt height1.875ex\vrule width 5pt height0.4pt}% + \hskip1pt% + \fi + \insertsectionhead + \end{beamercolorbox} + +% +% Place subsection +% +\begin{beamercolorbox}[wd=\paperwidth,ht=2.5ex,dp=1.125ex,% + leftskip=.3cm,rightskip=.3cm plus1fil]{subsection in head/foot} + \usebeamerfont{subsection in head/foot}% + %\ifbeamer@tree@showhooks + \setbox\beamer@tempbox=\hbox{\insertsubsectionhead}% + \ifdim\wd\beamer@tempbox>1pt% + \hskip9.4pt\raise1.9pt\hbox{\vrule width0.4pt height1.875ex\vrule width 5pt height0.4pt}% + \hskip1pt% + \fi + \insertsubsectionhead +\end{beamercolorbox} + +% +% Place final separation box +% + \begin{beamercolorbox}[wd=\paperwidth,colsep=1.5pt + ]{lower separation line head} + \end{beamercolorbox} + + % + % Another matching rule which helps to frame the content + % + \hspace{.025\textwidth}\rule{.95\textwidth}{.5pt} +} +\fi % TACCheadertree + + +% The following command suppresses all navigation symbols. This is +% necessary in the TACC theme, since it overlaps where we want the +% logo to be. +\setbeamertemplate{navigation symbols}{} + + +\mode + diff --git a/my_docs/22/lmod_zoom_mtg_2022_06_07/themes/beamerouterthemeTACC16.sty b/my_docs/22/lmod_zoom_mtg_2022_06_07/themes/beamerouterthemeTACC16.sty new file mode 100644 index 000000000..c5b178018 --- /dev/null +++ b/my_docs/22/lmod_zoom_mtg_2022_06_07/themes/beamerouterthemeTACC16.sty @@ -0,0 +1,247 @@ +% Copyright 2003 by Till Tantau +% +% This program can be redistributed and/or modified under the terms +% of the GNU Public License, version 2. + +\mode + +\usepackage{xcolor} +\usepackage{graphicx} +\usepackage{etoolbox} + +\pgfdeclareimage[width=\paperwidth]{titlebackground}{master.jpg} +\pgfdeclareimage[width=\paperwidth]{background}{secondary.jpg} + +\setbeamertemplate{background canvas}{% + \ifnum\c@framenumber=1% + \begin{picture}(0,0) + \put(0,-273){% + \pgfuseimage{titlebackground} + } + %\put(0,-130.7){% + + %\begin{minipage}[b][45mm][t]{\textwidth}%{226mm} + %\begin{center} + % \usebeamerfont{title}{\MakeTextUppercase{\inserttitle}\par} + %\vspace{2ex} + %\usebeamerfont{author}{\insertauthor} + % \end{center} + %\end{minipage} + %} + \end{picture} + % On title page + \else% + % Other frames background + \begin{picture}(0,0) + \put(0,-273){% + \pgfuseimage{background} + } + \end{picture} + \fi% +} + + +\setbeamertemplate{title page}{ +\vspace{40pt} +\begin{center} +\usebeamerfont{title} {\huge \inserttitle}\par +\vspace{4ex} +\usebeamerfont{author} { + \insertauthor +}\par +\vspace{2ex} +\usebeamerfont{institute}{ + \insertinstitute +} \par +\vspace{2ex} +\usebeamerfont{date}{ + \insertdate +} +\end{center} +} + + +\setbeamertemplate{frametitle}[default][center] +\setbeamertemplate{frametitle}{ + \makeatletter + \regexpatchcmd{\insertframetitle} + {(\c{usebeamertemplate}.*)\c{fi}} + {\c{NoCaseChange}\cB\{\1\cE\}\c{fi}} + {}{}% + \makeatother + \vskip1ex + \insertframetitle +} + +% Here we define what appears at the bottom of each slide: the "footline". +\setbeamertemplate{footline}{% + \leavevmode% + + % Horizontal line dividing the rest of the slide from the footer? + % hrule goes all the way across... + % \hrule height.3pt% + % With \rule, you can specify the thickness + % \rule[raise-height]{width}{thickness} + % \hspace{.025\textwidth}\rule{.95\textwidth}{.5pt} + + \hbox{% + \ifnum \thepage>1 + % On the left half of the footer, insert the TACC of + \begin{minipage}{.2\textwidth}% + \hskip .05\textwidth%Give horizontal space else this will set on the left edge of the slide! + % \includegraphics[width=.8\textwidth]{figures/TACC_logo.png} + \end{minipage} + + + \begin{minipage}{\textwidth}% + % \vskip .023\textheight% + \raggedleft% + \setlength{\rightskip}{\textwidth} + \hbox{% + \begin{beamercolorbox}[wd=0.7\textwidth,ht=2.25ex,dp=1ex,left]{author in head/foot}% + \insertshorttitle{} \hskip .01\textwidth | \hskip .01\textwidth \insertdate{} \hskip .01\textwidth | \hskip .01\textwidth \insertframenumber{} + \end{beamercolorbox}% + } + + % + % If we are not on the first page, insert a page number + % For some reason, insertframenumber is buggy when you have fragile + % slides with verbatim environments in them... it tends to skip numbers + % for some reason! On the other hand, the pagenumber is incremented + % for *every* slide, including transition slides... + % \hfill\includegraphics[width=\textwidth]{figures/tacc_ut.png} + \end{minipage}% + \begin{minipage}{.05\textwidth}% + \end{minipage}% + \fi %\thepage>1 + }% + \vskip .023\textheight% + +} + + + + +\ifTACCheadernav + +\usesectionheadtemplate +{\hfill\insertsectionhead} +{\hfill\color{fg!50!bg}\insertsectionhead} + +% Head +\ifbeamer@compress + +% Here we define how the top of the frame looks, the "headline". +\setbeamertemplate{headline} +{% + \ifnum \thepage>1 + \leavevmode% + \begin{beamercolorbox}[wd=.5\paperwidth,ht=2.5ex,dp=1.125ex]{% + section in head/foot}% + \insertsectionnavigationhorizontal{.5\paperwidth}{\hskip0pt plus1filll}{}% + \end{beamercolorbox}% + \begin{beamercolorbox}[wd=.5\paperwidth,ht=2.5ex,dp=1.125ex]{% + subsection in head/foot}% + \insertsubsectionnavigationhorizontal{% + .5\paperwidth}{}{\hskip0pt plus1filll}% + \end{beamercolorbox}% + \fi %\thepage>1 +} + +\else% Not compressed + +\setbeamertemplate{headline} +{% + \ifnum \thepage>1 + \leavevmode% + \@tempdimb=2.4375ex% + \ifnum\beamer@subsectionmax<\beamer@sectionmax% + \multiply\@tempdimb by\beamer@sectionmax% + \else% + \multiply\@tempdimb by\beamer@subsectionmax% + \fi% + \ifdim\@tempdimb>0pt% + \advance\@tempdimb by 1.125ex% + \begin{beamercolorbox}[wd=.5\paperwidth,ht=\@tempdimb]{% + section in head/foot}% + \vbox to\@tempdimb{\vfil\insertsectionnavigation{.5\paperwidth}\vfil}% + \end{beamercolorbox}% + \begin{beamercolorbox}[wd=.5\paperwidth,ht=\@tempdimb]{% + subsection in head/foot}% + \vbox to\@tempdimb{\vfil\insertsubsectionnavigation{.5\paperwidth}\vfil}% + \end{beamercolorbox}% + \fi% + \fi % \thepage>1 +} + +\fi % end if compressed +\fi % TACCheadernav + + +\ifTACCheadertree + +\setbeamertemplate{headline} +{ + \begin{beamercolorbox}[wd=\paperwidth,colsep=1.5pt]{upper separation line head} + \end{beamercolorbox} + % + % Place short title + % + \begin{beamercolorbox}[wd=\paperwidth,ht=2.5ex,dp=1.125ex,% + leftskip=.3cm,rightskip=.3cm plus1fil]{title in head/foot} + \usebeamerfont{title in head/foot}\insertshorttitle + \end{beamercolorbox} + + % + % Place section + % + \begin{beamercolorbox}[wd=\paperwidth,ht=2.5ex,dp=1.125ex,% + leftskip=.3cm,rightskip=.3cm plus1fil]{section in head/foot} + \usebeamerfont{section in head/foot}% + %\ifbeamer@tree@showhooks + \setbox\beamer@tempbox=\hbox{\insertsectionhead}% + \ifdim\wd\beamer@tempbox>1pt% + \hskip2pt\raise1.9pt\hbox{\vrule width0.4pt height1.875ex\vrule width 5pt height0.4pt}% + \hskip1pt% + \fi + \insertsectionhead + \end{beamercolorbox} + +% +% Place subsection +% +\begin{beamercolorbox}[wd=\paperwidth,ht=2.5ex,dp=1.125ex,% + leftskip=.3cm,rightskip=.3cm plus1fil]{subsection in head/foot} + \usebeamerfont{subsection in head/foot}% + %\ifbeamer@tree@showhooks + \setbox\beamer@tempbox=\hbox{\insertsubsectionhead}% + \ifdim\wd\beamer@tempbox>1pt% + \hskip9.4pt\raise1.9pt\hbox{\vrule width0.4pt height1.875ex\vrule width 5pt height0.4pt}% + \hskip1pt% + \fi + \insertsubsectionhead +\end{beamercolorbox} + +% +% Place final separation box +% + \begin{beamercolorbox}[wd=\paperwidth,colsep=1.5pt + ]{lower separation line head} + \end{beamercolorbox} + + % + % Another matching rule which helps to frame the content + % + \hspace{.025\textwidth}\rule{.95\textwidth}{.5pt} +} +\fi % TACCheadertree + + +% The following command suppresses all navigation symbols. This is +% necessary in the TACC theme, since it overlaps where we want the +% logo to be. +\setbeamertemplate{navigation symbols}{} + + +\mode + diff --git a/my_docs/22/lmod_zoom_mtg_2022_06_07/themes/beamerthemeTACC16-169.sty b/my_docs/22/lmod_zoom_mtg_2022_06_07/themes/beamerthemeTACC16-169.sty new file mode 100644 index 000000000..22caf9a05 --- /dev/null +++ b/my_docs/22/lmod_zoom_mtg_2022_06_07/themes/beamerthemeTACC16-169.sty @@ -0,0 +1,38 @@ +%% TACC theme for beamer + +\newif\ifTACCheadernav +\DeclareOption{headernav}{\global\TACCheadernavtrue} + +\newif\ifTACCheadertree +\DeclareOption{headertree}{\global\TACCheadertreetrue} +\ProcessOptions + +\mode + +\makeatletter + \def\beamer@calltheme#1#2#3{% + \def\beamer@themelist{#2} + \@for\beamer@themename:=\beamer@themelist\do + {\usepackage[{#1}]{\beamer@themelocation/#3\beamer@themename}}} + + \def\usefolder#1{ + \def\beamer@themelocation{#1} + } + \def\beamer@themelocation{} + +\usefolder{themes} +\usefonttheme{TACC16} +\useinnertheme{TACC16} +\useoutertheme{TACC16-169} +\usecolortheme{TACC16} + +\mode + + +\newcommand{\event}[1]{% + \makeatletter% + \def\TACC@eventname{#1}% + \makeatother} + +\newcommand{\sectionframe}[1]{\section{#1}\frame{\Large\textbf{#1}}} +\newcommand{\subsectionframe}[1]{\subsection{#1}\frame{\large\textbf{#1}}} diff --git a/my_docs/22/lmod_zoom_mtg_2022_06_07/themes/beamerthemeTACC16.sty b/my_docs/22/lmod_zoom_mtg_2022_06_07/themes/beamerthemeTACC16.sty new file mode 100644 index 000000000..750bdd388 --- /dev/null +++ b/my_docs/22/lmod_zoom_mtg_2022_06_07/themes/beamerthemeTACC16.sty @@ -0,0 +1,26 @@ +%% TACC theme for beamer + +\newif\ifTACCheadernav +\DeclareOption{headernav}{\global\TACCheadernavtrue} + +\newif\ifTACCheadertree +\DeclareOption{headertree}{\global\TACCheadertreetrue} +\ProcessOptions + +\mode + +\usefonttheme{TACC16} +\useinnertheme{TACC16} +\useoutertheme{TACC16} +\usecolortheme{TACC16} + +\mode + + +\newcommand{\event}[1]{% + \makeatletter% + \def\TACC@eventname{#1}% + \makeatother} + +\newcommand{\sectionframe}[1]{\section{#1}\frame{\Large\textbf{#1}}} +\newcommand{\subsectionframe}[1]{\subsection{#1}\frame{\large\textbf{#1}}} diff --git a/my_docs/22/lmod_zoom_mtg_2022_06_07/themes/example.pdf b/my_docs/22/lmod_zoom_mtg_2022_06_07/themes/example.pdf new file mode 100644 index 000000000..add373eee Binary files /dev/null and b/my_docs/22/lmod_zoom_mtg_2022_06_07/themes/example.pdf differ diff --git a/my_docs/22/lmod_zoom_mtg_2022_06_07/themes/license.tex b/my_docs/22/lmod_zoom_mtg_2022_06_07/themes/license.tex new file mode 100644 index 000000000..74ff86759 --- /dev/null +++ b/my_docs/22/lmod_zoom_mtg_2022_06_07/themes/license.tex @@ -0,0 +1,14 @@ + +\begin{frame}{License} +\footnotesize +\textcopyright The University of Texas at Austin, \the\year\\ +\vspace{0.5 cm} +This work is licensed under the Creative Commons Attribution Non-Commercial 3.0 Unported License. To view a copy of this license, +visit http://creativecommons.org/licenses/by-nc/3.0/\\ +\vspace{0.5 cm} +When attributing this work, please use the following text: +"Designing and Administering Large-scale Systems", Texas Advanced Computing Center, \the\year. Available under a Creative Commons Attribution Non-Commercial 3.0 Unported License. +\newline +\newline +\includegraphics[width=1cm]{./figures/cc.png} +\end{frame} \ No newline at end of file diff --git a/my_docs/22/lmod_zoom_mtg_2022_07_05/Lmod-4color@2x.png b/my_docs/22/lmod_zoom_mtg_2022_07_05/Lmod-4color@2x.png deleted file mode 120000 index 47d505dbf..000000000 --- a/my_docs/22/lmod_zoom_mtg_2022_07_05/Lmod-4color@2x.png +++ /dev/null @@ -1 +0,0 @@ -../../beamer/Lmod-4color@2x.png \ No newline at end of file diff --git a/my_docs/22/lmod_zoom_mtg_2022_07_05/Lmod-4color@2x.png b/my_docs/22/lmod_zoom_mtg_2022_07_05/Lmod-4color@2x.png new file mode 100644 index 000000000..4810d74c3 Binary files /dev/null and b/my_docs/22/lmod_zoom_mtg_2022_07_05/Lmod-4color@2x.png differ diff --git a/my_docs/22/lmod_zoom_mtg_2022_07_05/beamercolorthemeTACC.sty b/my_docs/22/lmod_zoom_mtg_2022_07_05/beamercolorthemeTACC.sty deleted file mode 120000 index 8d27e673a..000000000 --- a/my_docs/22/lmod_zoom_mtg_2022_07_05/beamercolorthemeTACC.sty +++ /dev/null @@ -1 +0,0 @@ -../../beamer/beamercolorthemeTACC.sty \ No newline at end of file diff --git a/my_docs/22/lmod_zoom_mtg_2022_07_05/beamercolorthemeTACC.sty b/my_docs/22/lmod_zoom_mtg_2022_07_05/beamercolorthemeTACC.sty new file mode 100755 index 000000000..78beb6a4a --- /dev/null +++ b/my_docs/22/lmod_zoom_mtg_2022_07_05/beamercolorthemeTACC.sty @@ -0,0 +1,323 @@ +% Copyright 2003 by Till Tantau . +% +% This program can be redistributed and/or modified under the terms +% of the GNU Public License, version 2. + +\mode + +% I downloaded a gimp color palette from +% http://maururu.net/2007/latex-beamer-color-palette/ +% Which provides rgb values (I think) for several of the +% default beamer themes. You can open this in gimp by +% opening the Palettes dialog, right-clicking anywhere and choosing +% 'Import Palette'. A color in there called 'default added blue' +% appeared to be approximately what I wanted. It had the triple +% of values 141 145 208. If you double-click on this in the +% palette editor it gives you a bunch of information. You can't +% use these values directly to set a color...it just comes out white. +% I think definecolor is expecting something normalized by 255. Yes! + + +% bluish colors +\definecolor{defaddedblue}{rgb}{0.5529,.5686,.8157} % 141,145,208 +\definecolor{defblockheader}{rgb}{.1921,.2235,.6824} % 49,57,174 +\definecolor{flyaddedblue}{rgb}{.5961,.6118,.8431} % 152,156,215 + +% bluish-greys +\definecolor{beetleaddedblue1}{rgb}{.3333,.4039,.6196} % 85 103 158, dark +\definecolor{beetleaddedblue2}{rgb}{.4510,.5098,.7020} % 115 130 179, medium +\definecolor{beetleaddedblue3}{rgb}{.7059,.7255,.7961} % 180 185 203, light (greyest) + +% very light blue-greys +\definecolor{deflightouter1}{rgb}{.7608,.7647,.9020} % 194 195 230, dark +\definecolor{deflightouter2}{rgb}{.8 ,.8039,.9176} % 204 205 234, medium +\definecolor{deflightouter3}{rgb}{.8392,.8431,.9373} % 214 215 239, light + +% reddish colors +\definecolor{flyalertblockheader}{rgb}{.7373,.1294,.1333} % 188 33 34 +\definecolor{flyaddedred}{rgb}{.8667,.5647,.5647}% 221 144 144 +\definecolor{beaverouterframe}{rgb}{.5529,.0980,.0980}% 141 25 25 + +% greens (green is used for 'examples' in beamer) +\definecolor{defexblock}{rgb}{.9098,.9333,.9020} % 232 238 230, light +\definecolor{defaddedgreen}{rgb}{.5412,.6510,.4706} % 138 166 120, medium +\definecolor{defexblockheader}{rgb}{.1686,.3647,.0392} % 43 93 10, dark + +\definecolor{lightexblock}{rgb}{.9137,.9451,.9020} % 233 241 230, light +\definecolor{lightexblockheader}{rgb}{.8235,.8980,.8} % 210 229 204, medium +\definecolor{lightexblockheadertext}{rgb}{.2431,.5098,.0745} % 62 130 19, dark + + +%%% +% Set the normal text color +%%% +\setbeamercolor{normal text}{fg=black,bg=white} + +%%% +% Set the alerted text color +%%% +% \setbeamercolor{alerted text}{fg=red} +\setbeamercolor{alerted text}{fg=red!50!black} % half black/half red for green bg +% \setbeamercolor{alerted text}{fg=beaverouterframe} +% \setbeamercolor{alerted text}{fg=defblockheader} % doesn't stand out enough + + +% Set the 'example' text +\setbeamercolor{example text}{fg=green!50!black} + +\setbeamercolor{structure}{fg=black} + +\setbeamercolor{background canvas}{parent=normal text} +\setbeamercolor{background}{parent=background canvas} + +\setbeamercolor{palette primary}{use=structure,fg=structure.fg} +\setbeamercolor{palette secondary}{use=structure,fg=structure.fg!75!black} +\setbeamercolor{palette tertiary}{use=structure,fg=structure.fg!50!black} +\setbeamercolor{palette quaternary}{fg=black} + +\setbeamercolor{palette sidebar primary}{use=normal text,fg=normal text.fg} +\setbeamercolor{palette sidebar secondary}{use=structure,fg=structure.fg} +\setbeamercolor{palette sidebar tertiary}{use=normal text,fg=normal text.fg} +\setbeamercolor{palette sidebar quaternary}{use=structure,fg=structure.fg} + +\setbeamercolor{math text}{} +\setbeamercolor{math text inlined}{parent=math text} +\setbeamercolor{math text displayed}{parent=math text} + +\setbeamercolor{normal text in math text}{} + +\setbeamercolor{local structure}{parent=structure} + +\setbeamercolor{titlelike}{parent=structure} + +\setbeamercolor{title}{parent=titlelike} +\setbeamercolor{title in head/foot}{parent=palette quaternary} +\setbeamercolor{title in sidebar}{parent=palette sidebar quaternary} + +\setbeamercolor{subtitle}{parent=title} + +\setbeamercolor{author}{} +\setbeamercolor{author in head/foot}{parent=palette primary} +\setbeamercolor{author in sidebar}{use=palette sidebar tertiary,fg=palette sidebar tertiary.fg} + +\setbeamercolor{institute}{} +\setbeamercolor{institute in head/foot}{parent=palette tertiary} +\setbeamercolor{institute in sidebar}{use=palette sidebar tertiary,fg=palette sidebar tertiary.fg} + +\setbeamercolor{date}{} +\setbeamercolor{date in head/foot}{parent=palette secondary} +\setbeamercolor{date in sidebar}{use=palette sidebar tertiary,fg=palette sidebar tertiary.fg} + +\setbeamercolor{titlegraphic}{} + +\setbeamercolor{part name}{} +\setbeamercolor{part title}{parent=titlelike} + +\setbeamercolor{section in toc}{parent=structure} +\setbeamercolor{section in toc shaded}{parent=section in toc} +\setbeamercolor{section in head/foot}{parent=palette tertiary} +\setbeamercolor{section in sidebar}{parent=palette sidebar secondary} +\setbeamercolor{section in sidebar shaded}{use=section in sidebar,fg=section in sidebar.fg!40!bg} +\setbeamercolor{section number projected}{parent=item projected} + +\setbeamercolor{subsection in toc}{} +\setbeamercolor{subsection in toc shaded}{parent=subsection in toc} +\setbeamercolor{subsection in head/foot}{parent=palette secondary} +\setbeamercolor{subsection in sidebar}{parent=palette sidebar primary} +\setbeamercolor{subsection in sidebar shaded}{use=subsection in sidebar,fg=subsection in sidebar.fg!40!bg} +\setbeamercolor{subsection number projected}{parent={subitem projected}} + +\setbeamercolor{subsubsection in toc}{parent=subsection in toc} +\setbeamercolor{subsubsection in toc shaded}{parent=subsubsection in toc} +\setbeamercolor{subsubsection in head/foot}{parent=subsection in head/foot} +\setbeamercolor{subsubsection in sidebar}{parent=subsection in sidebar} +\setbeamercolor{subsubsection in sidebar shaded}{parent=subsection in sidebar shaded} +\setbeamercolor{subsubsection number projected}{parent=subsubitem projected} + +\setbeamercolor{headline}{} +\setbeamercolor{footline}{} + +\setbeamercolor{sidebar}{} +\setbeamercolor{sidebar left}{parent=sidebar} +\setbeamercolor{sidebar right}{parent=sidebar} + +\setbeamercolor{logo}{parent=palette secondary} + +\setbeamercolor{frametitle}{parent=titlelike} +\setbeamercolor{framesubtitle}{parent=frametitle} + +\setbeamercolor{frametitle right}{parent=frametitle} + +\setbeamercolor{caption}{} +\setbeamercolor{caption name}{parent=structure} + +\setbeamercolor{button}{use=local structure,bg=local structure.fg!50!bg,fg=white} +\setbeamercolor{button border}{use=button,fg=button.bg} +\setbeamercolor{navigation symbols}{use=structure,fg=structure.fg!40!bg} +\setbeamercolor{navigation symbols dimmed}{use=structure,fg=structure.fg!20!bg} +\setbeamercolor{mini frame}{parent=section in head/foot} + +% Color expressions are defined in the xcolor package +% +% Ex: Mixture of 40% green, 60% yellow: green!40!yellow +% +% The complement of any color can be obtained by prepending +% a minus sign: -green!40!yellow +% +% One can also combine up to three colors (in differing proportions) +% using the rgb command. For example, the following command combines +% 3 parts of the first color, with 2 parts of the second, and one part +% "red" +% +%\color{rgb:-green!40!yellow,3;green!40!yellow,2;red,1} +% Unfortunately, I don't think this works as an argument to setbeamercolor... +% "Orange" bg=green!30!yellow!30!red +% close to burnt orange: red!75!green +% lightgray is a color, but gray!25!white looks better +% +% A nice pair of greens +% (dark, a little too dark to be under black text...) -red!75!green!50!blue!25 +% (light) -red!75!green!50!blue!25!gray +% +% Some colors are only available via options to the xcolor package, eg. +% x11names,DarkOliveGreen4 +% svgnames, Chartreuse +% dvipsnames, ForestGreen +% +% but beamer does not seem to have any of these. +% +% The base color names which are always available are: +% black +% blue +% brown +% cyan +% darkgray +% gray +% green +% lightgray +% lime +% magenta +% olive +% orange +% pink +% purple +% red +% teal +% violet +% white +% yellow + +% From the beamer user guide, pg. 167 +% Inner color themes only specify the colors of elements used in inner +% themes. Most noticably, they specify the colors used for blocks. +% ... + +% Example color definition +% beamercolorthemedefault.sty:\definecolor{beamer@blendedblue}{rgb}{0.2,0.2,0.7} +% beamercolorthemedefault.sty:\setbeamercolor{structure}{fg=beamer@blendedblue} + +% The greens +% \setbeamercolor{block body}{bg=-red!75!green!50!blue!25!gray} +% \setbeamercolor{block title}{parent=structure,bg=-red!75!green!50!blue!25,fg=-red!75!green!50!blue!25!gray} + +%%% +% Set the block body and title background/foreground colors +%%% +% \setbeamercolor{block body}{bg=flyaddedblue} +% \setbeamercolor{block title}{bg=defblockheader,fg=flyaddedblue} + +% Purplish blues, too dark overall +% \setbeamercolor{block body}{bg=beetleaddedblue3} +% \setbeamercolor{block title}{bg=beetleaddedblue2,fg=beetleaddedblue3} + +% Very light blue greys +% 1. Not enough contrast +% \setbeamercolor{block body}{bg=deflightouter3} +% \setbeamercolor{block title}{bg=deflightouter2,fg=deflightouter3} + +% 2. Not enough contrast +% \setbeamercolor{block body}{bg=deflightouter3} +% \setbeamercolor{block title}{bg=deflightouter1,fg=deflightouter3} + +% 3. Combination of deflightouter and fly. The block bg is +% lighter than the all-beetle color scheme I previously thought was best. +% Currently I like this one the best +\setbeamercolor{block body}{bg=deflightouter3} +\setbeamercolor{block title}{bg=beetleaddedblue2,fg=deflightouter3} + +% 4. Greens. Looks like a highlighter. I don't really trust greens +% on projectors... It's almost too bright/hurts your eyes. +% \setbeamercolor{block body}{bg=defexblock} +% \setbeamercolor{block title}{bg=defaddedgreen,fg=defexblock} + +% This looks pretty good ... it's similar to the greens we had before +% but should be lighter. The blocks are just a little too "mint" colored +% though... +% \setbeamercolor{block body}{bg=defexblock} +% \setbeamercolor{block title}{bg=defexblockheader,fg=defexblock} + +% Pea Soup! +%\setbeamercolor{block body}{bg=defaddedgreen} +%\setbeamercolor{block title}{bg=defexblockheader,fg=defaddedgreen} + + +% Changing these didn't seem to do anything...I had to change the +% 'alerted text' color instead +\setbeamercolor{block body alerted}{} +\setbeamercolor{block body example}{} +\setbeamercolor{block title alerted}{parent=alerted text} +\setbeamercolor{block title example}{parent=example text} + +\setbeamercolor{item}{parent=local structure} +\setbeamercolor{subitem}{parent=item} +\setbeamercolor{subsubitem}{parent=subitem} + +\setbeamercolor{item projected}{parent=item,use=item,fg=white,bg=item.fg} +\setbeamercolor{subitem projected}{parent=item projected} +\setbeamercolor{subsubitem projected}{parent=subitem projected} + +\setbeamercolor{enumerate item}{parent=item} +\setbeamercolor{enumerate subitem}{parent=subitem} +\setbeamercolor{enumerate subsubitem}{parent=subsubitem} + +\setbeamercolor{itemize item}{parent=item} +\setbeamercolor{itemize subitem}{parent=subitem} +\setbeamercolor{itemize subsubitem}{parent=subsubitem} + +\setbeamercolor{itemize/enumerate body}{} +\setbeamercolor{itemize/enumerate subbody}{} +\setbeamercolor{itemize/enumerate subsubbody}{} + +\setbeamercolor{description item}{parent=item} + +\setbeamercolor{bibliography item}{parent=item} + +\setbeamercolor{bibliography entry author}{use=structure,fg=structure.fg} +\setbeamercolor{bibliography entry title}{use=normal text,fg=normal text.fg} +\setbeamercolor{bibliography entry location}{use=structure,fg=structure.fg!65!bg} +\setbeamercolor{bibliography entry note}{use=structure,fg=structure.fg!65!bg} + +\setbeamercolor{separation line}{} + +\setbeamercolor{upper separation line head}{parent=separation line} +\setbeamercolor{middle separation line head}{parent=separation line} +\setbeamercolor{lower separation line head}{parent=separation line} + +\setbeamercolor{upper separation line foot}{parent=separation line} +\setbeamercolor{middle separation line foot}{parent=separation line} +\setbeamercolor{lower separation line foot}{parent=separation line} + +\setbeamercolor{abstract}{} +\setbeamercolor{abstract title}{parent=structure} + +\setbeamercolor{verse}{} + +\setbeamercolor{quotation}{} +\setbeamercolor{quote}{parent=quotation} + +\setbeamercolor{page number in head/foot}{fg=fg!50!bg} + +\setbeamercolor{qed symbol}{parent=structure} + +\mode + diff --git a/my_docs/22/lmod_zoom_mtg_2022_07_05/beamercolorthemeTACC16.sty b/my_docs/22/lmod_zoom_mtg_2022_07_05/beamercolorthemeTACC16.sty deleted file mode 120000 index 58415801b..000000000 --- a/my_docs/22/lmod_zoom_mtg_2022_07_05/beamercolorthemeTACC16.sty +++ /dev/null @@ -1 +0,0 @@ -../../beamer/beamercolorthemeTACC16.sty \ No newline at end of file diff --git a/my_docs/22/lmod_zoom_mtg_2022_07_05/beamercolorthemeTACC16.sty b/my_docs/22/lmod_zoom_mtg_2022_07_05/beamercolorthemeTACC16.sty new file mode 100755 index 000000000..779dde91f --- /dev/null +++ b/my_docs/22/lmod_zoom_mtg_2022_07_05/beamercolorthemeTACC16.sty @@ -0,0 +1,192 @@ +% Copyright 2003 by Till Tantau . +% +% This program can be redistributed and/or modified under the terms +% of the GNU Public License, version 2. + +\mode + +\usepackage{textcase,regexpatch} + +\setbeamertemplate{blocks}[rounded][shadow=true] + + +\definecolor{TACCred}{RGB}{180,13,29} +\definecolor{TACCorange}{RGB}{210,104,43} +\definecolor{TACCblue}{RGB}{108, 134, 191} +\definecolor{TACCgreen}{RGB}{23,106,70} + +% I downloaded a gimp color palette from +% http://maururu.net/2007/latex-beamer-color-palette/ +% Which provides rgb values (I think) for several of the +% default beamer themes. You can open this in gimp by +% opening the Palettes dialog, right-clicking anywhere and choosing +% 'Import Palette'. A color in there called 'default added blue' +% appeared to be approximately what I wanted. It had the triple +% of values 141 145 208. If you double-click on this in the +% palette editor it gives you a bunch of information. You can't +% use these values directly to set a color...it just comes out white. +% I think definecolor is expecting something normalized by 255. Yes! + + +%%% +% Set the normal text color +%%% +\setbeamercolor{normal text}{fg=black} %,bg=white} +\setbeamercolor{example text}{fg=TACCgreen} +\setbeamercolor{alerted text}{fg=TACCorange} + + +\setbeamercolor{structure}{fg=black} +%\setbeamercolor{structure}{fg=black} + +\setbeamercolor{background canvas}{parent=normal text} +\setbeamercolor{background}{parent=background canvas} + +\setbeamercolor{palette primary}{use=structure,fg=structure.fg} +\setbeamercolor{palette secondary}{use=structure,fg=structure.fg!75!black} +\setbeamercolor{palette tertiary}{use=structure,fg=structure.fg!50!black} +\setbeamercolor{palette quaternary}{fg=black} + +\setbeamercolor{palette sidebar primary}{use=normal text,fg=normal text.fg} +\setbeamercolor{palette sidebar secondary}{use=structure,fg=structure.fg} +\setbeamercolor{palette sidebar tertiary}{use=normal text,fg=normal text.fg} +\setbeamercolor{palette sidebar quaternary}{use=structure,fg=structure.fg} + +\setbeamercolor{math text}{} +\setbeamercolor{math text inlined}{parent=math text} +\setbeamercolor{math text displayed}{parent=math text} + +\setbeamercolor{normal text in math text}{} + +\setbeamercolor{local structure}{parent=structure} + +\setbeamercolor{titlelike}{parent=structure} + +\setbeamercolor{title}{parent=titlelike} +\setbeamercolor{title in head/foot}{parent=palette quaternary} +\setbeamercolor{title in sidebar}{parent=palette sidebar quaternary} + +\setbeamercolor{subtitle}{parent=title} + +\setbeamercolor{author}{} +\setbeamercolor{author in head/foot}{parent=palette primary} +\setbeamercolor{author in sidebar}{use=palette sidebar tertiary,fg=palette sidebar tertiary.fg} + +\setbeamercolor{institute}{} +\setbeamercolor{institute in head/foot}{parent=palette tertiary} +\setbeamercolor{institute in sidebar}{use=palette sidebar tertiary,fg=palette sidebar tertiary.fg} + +\setbeamercolor{date}{} +\setbeamercolor{date in head/foot}{parent=palette secondary} +\setbeamercolor{date in sidebar}{use=palette sidebar tertiary,fg=palette sidebar tertiary.fg} + +\setbeamercolor{titlegraphic}{} + +\setbeamercolor{part name}{} +\setbeamercolor{part title}{parent=titlelike} + +\setbeamercolor{section in toc}{parent=structure} +\setbeamercolor{section in toc shaded}{parent=section in toc} +\setbeamercolor{section in head/foot}{parent=palette tertiary} +\setbeamercolor{section in sidebar}{parent=palette sidebar secondary} +\setbeamercolor{section in sidebar shaded}{use=section in sidebar,fg=section in sidebar.fg!40!bg} +\setbeamercolor{section number projected}{parent=item projected} + +\setbeamercolor{subsection in toc}{} +\setbeamercolor{subsection in toc shaded}{parent=subsection in toc} +\setbeamercolor{subsection in head/foot}{parent=palette secondary} +\setbeamercolor{subsection in sidebar}{parent=palette sidebar primary} +\setbeamercolor{subsection in sidebar shaded}{use=subsection in sidebar,fg=subsection in sidebar.fg!40!bg} +\setbeamercolor{subsection number projected}{parent={subitem projected}} + +\setbeamercolor{subsubsection in toc}{parent=subsection in toc} +\setbeamercolor{subsubsection in toc shaded}{parent=subsubsection in toc} +\setbeamercolor{subsubsection in head/foot}{parent=subsection in head/foot} +\setbeamercolor{subsubsection in sidebar}{parent=subsection in sidebar} +\setbeamercolor{subsubsection in sidebar shaded}{parent=subsection in sidebar shaded} +\setbeamercolor{subsubsection number projected}{parent=subsubitem projected} + +\setbeamercolor{headline}{} +\setbeamercolor{footline}{} + +\setbeamercolor{sidebar}{} +\setbeamercolor{sidebar left}{parent=sidebar} +\setbeamercolor{sidebar right}{parent=sidebar} + +\setbeamercolor{logo}{parent=palette secondary} + +\setbeamercolor{frametitle}{parent=titlelike} +\setbeamercolor{framesubtitle}{parent=frametitle} + +\setbeamercolor{frametitle right}{parent=frametitle} + +\setbeamercolor{caption}{} +\setbeamercolor{caption name}{parent=structure} + +\setbeamercolor{button}{use=local structure,bg=local structure.fg!50!bg,fg=white} +\setbeamercolor{button border}{use=button,fg=button.bg} +\setbeamercolor{navigation symbols}{use=structure,fg=structure.fg!40!bg} +\setbeamercolor{navigation symbols dimmed}{use=structure,fg=structure.fg!20!bg} +\setbeamercolor{mini frame}{parent=section in head/foot} + +\setbeamercolor{block body}{fg=black} +\setbeamercolor{block body alerted}{fg=black} +\setbeamercolor{block body example}{fg=black} + +\setbeamercolor{block title}{bg=TACCblue,fg=white} +\setbeamercolor{block title alerted}{bg=TACCred,fg=white} +\setbeamercolor{block title example}{bg=TACCgreen,fg=white} + +\setbeamercolor{item}{parent=local structure} +\setbeamercolor{subitem}{parent=item} +\setbeamercolor{subsubitem}{parent=subitem} + +\setbeamercolor{item projected}{parent=item,use=item,fg=black,bg=item.fg} +\setbeamercolor{subitem projected}{parent=item projected} +\setbeamercolor{subsubitem projected}{parent=subitem projected} + +\setbeamercolor{enumerate item}{parent=item} +\setbeamercolor{enumerate subitem}{parent=subitem} +\setbeamercolor{enumerate subsubitem}{parent=subsubitem} + +\setbeamercolor{itemize item}{parent=item} +\setbeamercolor{itemize subitem}{parent=subitem} +\setbeamercolor{itemize subsubitem}{parent=subsubitem} + +\setbeamercolor{itemize/enumerate body}{} +\setbeamercolor{itemize/enumerate subbody}{} +\setbeamercolor{itemize/enumerate subsubbody}{} + +\setbeamercolor{description item}{parent=item} + +\setbeamercolor{bibliography item}{parent=item} + +\setbeamercolor{bibliography entry author}{use=structure,fg=structure.fg} +\setbeamercolor{bibliography entry title}{use=normal text,fg=normal text.fg} +\setbeamercolor{bibliography entry location}{use=structure,fg=structure.fg!65!bg} +\setbeamercolor{bibliography entry note}{use=structure,fg=structure.fg!65!bg} + +\setbeamercolor{separation line}{} + +\setbeamercolor{upper separation line head}{parent=separation line} +\setbeamercolor{middle separation line head}{parent=separation line} +\setbeamercolor{lower separation line head}{parent=separation line} + +\setbeamercolor{upper separation line foot}{parent=separation line} +\setbeamercolor{middle separation line foot}{parent=separation line} +\setbeamercolor{lower separation line foot}{parent=separation line} + +\setbeamercolor{abstract}{} +\setbeamercolor{abstract title}{parent=structure} + +\setbeamercolor{verse}{} + +\setbeamercolor{quotation}{} +\setbeamercolor{quote}{parent=quotation} + +\setbeamercolor{page number in head/foot}{fg=fg!50!bg} + +\setbeamercolor{qed symbol}{parent=structure} + +\mode + diff --git a/my_docs/22/lmod_zoom_mtg_2022_07_05/beamerfontthemeTACC.sty b/my_docs/22/lmod_zoom_mtg_2022_07_05/beamerfontthemeTACC.sty deleted file mode 120000 index 78e971fb8..000000000 --- a/my_docs/22/lmod_zoom_mtg_2022_07_05/beamerfontthemeTACC.sty +++ /dev/null @@ -1 +0,0 @@ -../../beamer/beamerfontthemeTACC.sty \ No newline at end of file diff --git a/my_docs/22/lmod_zoom_mtg_2022_07_05/beamerfontthemeTACC.sty b/my_docs/22/lmod_zoom_mtg_2022_07_05/beamerfontthemeTACC.sty new file mode 100755 index 000000000..ef9ce1e5e --- /dev/null +++ b/my_docs/22/lmod_zoom_mtg_2022_07_05/beamerfontthemeTACC.sty @@ -0,0 +1,12 @@ +% Copyright 2003 by Till Tantau +% +% This program can be redistributed and/or modified under the terms +% of the GNU Public License, version 2. + +\mode + +\setbeamerfont{frametitle}{parent=structure,size=\LARGE,series=\bfseries} +\setbeamerfont{framesubtitle}{parent=frametitle,size=\small} + +\mode + \ No newline at end of file diff --git a/my_docs/22/lmod_zoom_mtg_2022_07_05/beamerfontthemeTACC16.sty b/my_docs/22/lmod_zoom_mtg_2022_07_05/beamerfontthemeTACC16.sty deleted file mode 120000 index a1f2fa5f9..000000000 --- a/my_docs/22/lmod_zoom_mtg_2022_07_05/beamerfontthemeTACC16.sty +++ /dev/null @@ -1 +0,0 @@ -../../beamer/beamerfontthemeTACC16.sty \ No newline at end of file diff --git a/my_docs/22/lmod_zoom_mtg_2022_07_05/beamerfontthemeTACC16.sty b/my_docs/22/lmod_zoom_mtg_2022_07_05/beamerfontthemeTACC16.sty new file mode 100755 index 000000000..b65271835 --- /dev/null +++ b/my_docs/22/lmod_zoom_mtg_2022_07_05/beamerfontthemeTACC16.sty @@ -0,0 +1,21 @@ +% Copyright 2003 by Till Tantau +% +% This program can be redistributed and/or modified under the terms +% of the GNU Public License, version 2. + +\mode +\setbeamerfont{title}{parent=structure,size=\LARGE,series=\bfseries} +\setbeamerfont{author}{parent=structure,size=\large, series=\normalfont} +\setbeamerfont{frametitle}{parent=structure,size=\LARGE,series=\bfseries} +\setbeamerfont{framesubtitle}{parent=frametitle,size=\small} + +%\usefonttheme{professionalfonts} % using non standard fonts for beamer +%\usefonttheme{serif} % default family is serif +%\usepackage{fontspec} +%\setmainfont{Century Gothic} + +\usepackage{fontspec} +\usepackage{libertine} + +\mode + diff --git a/my_docs/22/lmod_zoom_mtg_2022_07_05/beamerinnerthemeTACC.sty b/my_docs/22/lmod_zoom_mtg_2022_07_05/beamerinnerthemeTACC.sty deleted file mode 120000 index 8d5ae3921..000000000 --- a/my_docs/22/lmod_zoom_mtg_2022_07_05/beamerinnerthemeTACC.sty +++ /dev/null @@ -1 +0,0 @@ -../../beamer/beamerinnerthemeTACC.sty \ No newline at end of file diff --git a/my_docs/22/lmod_zoom_mtg_2022_07_05/beamerinnerthemeTACC.sty b/my_docs/22/lmod_zoom_mtg_2022_07_05/beamerinnerthemeTACC.sty new file mode 100755 index 000000000..29e2bce81 --- /dev/null +++ b/my_docs/22/lmod_zoom_mtg_2022_07_05/beamerinnerthemeTACC.sty @@ -0,0 +1,11 @@ +\mode + +\setbeamertemplate{itemize item}[circle] +\setbeamertemplate{itemize subitem}{{}--{}} +\setbeamertemplate{itemize subsubitem}[circle] +\setbeamertemplate{section in toc}{$\bullet$\hskip.5em\inserttocsection} +%\setbeamertemplate{subsection in toc}{} +\setbeamertemplate{subsubsection in toc}{} + +\mode + diff --git a/my_docs/22/lmod_zoom_mtg_2022_07_05/beamerinnerthemeTACC16.sty b/my_docs/22/lmod_zoom_mtg_2022_07_05/beamerinnerthemeTACC16.sty deleted file mode 120000 index 5955acc99..000000000 --- a/my_docs/22/lmod_zoom_mtg_2022_07_05/beamerinnerthemeTACC16.sty +++ /dev/null @@ -1 +0,0 @@ -../../beamer/beamerinnerthemeTACC16.sty \ No newline at end of file diff --git a/my_docs/22/lmod_zoom_mtg_2022_07_05/beamerinnerthemeTACC16.sty b/my_docs/22/lmod_zoom_mtg_2022_07_05/beamerinnerthemeTACC16.sty new file mode 100755 index 000000000..f7f454e1d --- /dev/null +++ b/my_docs/22/lmod_zoom_mtg_2022_07_05/beamerinnerthemeTACC16.sty @@ -0,0 +1,11 @@ +\mode + +\setbeamertemplate{itemize item}[triangle] +\setbeamertemplate{itemize subitem}[triangle] +\setbeamertemplate{itemize subsubitem}[triangle] +\setbeamertemplate{section in toc}{$\bullet$\hskip.5em\inserttocsection} +%\setbeamertemplate{subsection in toc}{} +\setbeamertemplate{subsubsection in toc}{} + +\mode + diff --git a/my_docs/22/lmod_zoom_mtg_2022_07_05/beamerouterthemeTACC.sty b/my_docs/22/lmod_zoom_mtg_2022_07_05/beamerouterthemeTACC.sty deleted file mode 120000 index da0a45d33..000000000 --- a/my_docs/22/lmod_zoom_mtg_2022_07_05/beamerouterthemeTACC.sty +++ /dev/null @@ -1 +0,0 @@ -../../beamer/beamerouterthemeTACC.sty \ No newline at end of file diff --git a/my_docs/22/lmod_zoom_mtg_2022_07_05/beamerouterthemeTACC.sty b/my_docs/22/lmod_zoom_mtg_2022_07_05/beamerouterthemeTACC.sty new file mode 100755 index 000000000..038580303 --- /dev/null +++ b/my_docs/22/lmod_zoom_mtg_2022_07_05/beamerouterthemeTACC.sty @@ -0,0 +1,196 @@ +% Copyright 2003 by Till Tantau +% +% This program can be redistributed and/or modified under the terms +% of the GNU Public License, version 2. + +\mode + +\setbeamertemplate{frametitle}[default][center] +\addtobeamertemplate{frametitle}{\vskip 4ex minus 4ex}{} + +% Here we define what appears at the bottom of each slide: the "footline". +\setbeamertemplate{footline}{% + \leavevmode% + + % Horizontal line dividing the rest of the slide from the footer? + % hrule goes all the way across... + % \hrule height.3pt% + % With \rule, you can specify the thickness + % \rule[raise-height]{width}{thickness} + \hspace{.025\textwidth}\rule{.95\textwidth}{.5pt} + + \hbox{% + % On the left half of the footer, insert the TACC logo + \begin{minipage}{.5\textwidth}% + \hskip .033\textwidth%Give horizontal space else this will set on the left edge of the slide! + % TACC logo with custom viewport! + \includegraphics[viewport=1 -1 135 35, clip=true, width=.4\textwidth]{figures/TACC_logo} + \end{minipage} + % + \begin{minipage}{.5\textwidth}% + \vskip .023\textheight% + \raggedleft% + \setlength{\rightskip}{.033\textwidth} + % + % If we are not on the first page, insert a page number + % For some reason, insertframenumber is buggy when you have fragile + % slides with verbatim environments in them... it tends to skip numbers + % for some reason! On the other hand, the pagenumber is incremented + % for *every* slide, including transition slides... + \ifnum \thepage>1 + % \insertshorttitle + \insertframenumber + % \insertframenumber/\inserttotalframenumber + % \insertpagenumber + \else % Do a phantom of whatever you do on other pages, so spacing matches + %$\phantom{\insertshorttitle}$ + $\phantom{\insertframenumber}$ + %$\phantom{\insertframenumber/\inserttotalframenumber}$ + %$\phantom{\insertpagenumber}$ + \fi + \hfill\includegraphics[width=.5\textwidth]{figures/UT_logo}% + \end{minipage}% + }% + \vskip .023\textheight% +} + + + + +\ifTACCheadernav + +\usesectionheadtemplate +{\hfill\insertsectionhead} +{\hfill\color{fg!50!bg}\insertsectionhead} + +% Head +\ifbeamer@compress + +% Here we define how the top of the frame looks, the "headline". +\setbeamertemplate{headline} +{% + \ifnum \thepage>1 + \leavevmode% + \begin{beamercolorbox}[wd=.5\paperwidth,ht=2.5ex,dp=1.125ex]{% + section in head/foot}% + \insertsectionnavigationhorizontal{.5\paperwidth}{\hskip0pt plus1filll}{}% + \end{beamercolorbox}% + \begin{beamercolorbox}[wd=.5\paperwidth,ht=2.5ex,dp=1.125ex]{% + subsection in head/foot}% + \insertsubsectionnavigationhorizontal{% + .5\paperwidth}{}{\hskip0pt plus1filll}% + \end{beamercolorbox}% + \fi %\thepage>1 +} + +\else% Not compressed + +\setbeamertemplate{headline} +{% + \ifnum \thepage>1 + \leavevmode% + \@tempdimb=2.4375ex% + \ifnum\beamer@subsectionmax<\beamer@sectionmax% + \multiply\@tempdimb by\beamer@sectionmax% + \else% + \multiply\@tempdimb by\beamer@subsectionmax% + \fi% + \ifdim\@tempdimb>0pt% + \advance\@tempdimb by 1.125ex% + \begin{beamercolorbox}[wd=.5\paperwidth,ht=\@tempdimb]{% + section in head/foot}% + \vbox to\@tempdimb{\vfil\insertsectionnavigation{.5\paperwidth}\vfil}% + \end{beamercolorbox}% + \begin{beamercolorbox}[wd=.5\paperwidth,ht=\@tempdimb]{% + subsection in head/foot}% + \vbox to\@tempdimb{\vfil\insertsubsectionnavigation{.5\paperwidth}\vfil}% + \end{beamercolorbox}% + \fi% + \fi % \thepage>1 +} + +\fi % end if compressed +\fi % TACCheadernav + + +\ifTACCheadertree + +\setbeamertemplate{headline} +{ + \begin{beamercolorbox}[wd=\paperwidth,colsep=1.5pt + ]{upper separation line head} + \end{beamercolorbox} + % + % Place short title + % + \begin{beamercolorbox}[wd=\paperwidth,ht=2.5ex,dp=1.125ex,% + leftskip=.3cm,rightskip=.3cm plus1fil]{title in head/foot} + \usebeamerfont{title in head/foot}\insertshorttitle + \end{beamercolorbox} + + % + % Place section + % + \begin{beamercolorbox}[wd=\paperwidth,ht=2.5ex,dp=1.125ex,% + leftskip=.3cm,rightskip=.3cm plus1fil]{section in head/foot} + \usebeamerfont{section in head/foot}% + %\ifbeamer@tree@showhooks + \setbox\beamer@tempbox=\hbox{\insertsectionhead}% + \ifdim\wd\beamer@tempbox>1pt% + \hskip2pt\raise1.9pt\hbox{\vrule width0.4pt height1.875ex\vrule width 5pt height0.4pt}% + \hskip1pt% + \fi% \ifdim + %\else% + %\hskip6pt% + %\fi% \ifbeamer + \insertsectionhead + \end{beamercolorbox} + +% +% Place subsection +% +\begin{beamercolorbox}[wd=\paperwidth,ht=2.5ex,dp=1.125ex,% + leftskip=.3cm,rightskip=.3cm plus1fil]{subsection in head/foot} + \usebeamerfont{subsection in head/foot}% + %\ifbeamer@tree@showhooks + \setbox\beamer@tempbox=\hbox{\insertsubsectionhead}% + \ifdim\wd\beamer@tempbox>1pt% + \hskip9.4pt\raise1.9pt\hbox{\vrule width0.4pt height1.875ex\vrule width 5pt height0.4pt}% + \hskip1pt% + \fi% \ifdim + %\else% + %\hskip12pt% + %\fi% \ifbeamer + \insertsubsectionhead +\end{beamercolorbox} + +% +% Place final separation box +% + \begin{beamercolorbox}[wd=\paperwidth,colsep=1.5pt + ]{lower separation line head} + \end{beamercolorbox} + + % + % Another matching rule which helps to frame the content + % + \hspace{.025\textwidth}\rule{.95\textwidth}{.5pt} +} +\fi % TACCheadertree + + +% The following command suppresses all navigation symbols. This is +% necessary in the TACC theme, since it overlaps where we want the +% logo to be. +\setbeamertemplate{navigation symbols}{} + +% Align the navigation symbols vertically (still overlaps our logo!) +%\setbeamertemplate{navigation symbols}[vertical]{} + +% Only places the slide-forward and slide-back symbol, but yes, +% this still overlaps our logo! +%\setbeamertemplate{navigation symbols}[only frame symbol]{} + + +\mode + diff --git a/my_docs/22/lmod_zoom_mtg_2022_07_05/beamerouterthemeTACC16.sty b/my_docs/22/lmod_zoom_mtg_2022_07_05/beamerouterthemeTACC16.sty deleted file mode 120000 index 54bd09537..000000000 --- a/my_docs/22/lmod_zoom_mtg_2022_07_05/beamerouterthemeTACC16.sty +++ /dev/null @@ -1 +0,0 @@ -../../beamer/beamerouterthemeTACC16.sty \ No newline at end of file diff --git a/my_docs/22/lmod_zoom_mtg_2022_07_05/beamerouterthemeTACC16.sty b/my_docs/22/lmod_zoom_mtg_2022_07_05/beamerouterthemeTACC16.sty new file mode 100755 index 000000000..d5e6388c7 --- /dev/null +++ b/my_docs/22/lmod_zoom_mtg_2022_07_05/beamerouterthemeTACC16.sty @@ -0,0 +1,312 @@ +% Antonio Gomez (agomez@tacc.utexas.edu) +% 4-20-17. Added option to put the footer on the right side + + + +\mode + +\usepackage{xcolor} +\usepackage{graphicx} +\usepackage{etoolbox} + + + +% This theme accepts the "rightfooter" option +% When used, it will put the TACC logo at the bottom of the slide on the right side +% By default, it goes to the left + +\xifaspectratio{ + {169} { + \pgfdeclareimage[width=\paperwidth]{titlebackground}{./figures/master169.jpg} + \if@rightfooterOption + \pgfdeclareimage[width=\paperwidth]{background}{./figures/secondary_right169.jpg} +\else + \pgfdeclareimage[width=\paperwidth]{background}{./figures/secondary169.jpg} +\fi +} +}[ +\pgfdeclareimage[width=\paperwidth]{titlebackground}{./figures/master.jpg} + \if@rightfooterOption + \pgfdeclareimage[width=\paperwidth]{background}{./figures/secondary_right.jpg} +\else + \pgfdeclareimage[width=\paperwidth]{background}{./figures/secondary.jpg} +\fi +] + +\setbeamertemplate{background canvas}{% +\xifaspectratio{ + {169} { + \ifnum\c@framenumber=1 % + \begin{picture}(0,0) + \put(-3,-256){% + \pgfuseimage{titlebackground} + } + \end{picture} + \else% + \begin{picture}(0,0) + \put(-3,-260){% + \pgfuseimage{background} + } + \end{picture} + \fi + } + {43} { + \ifnum\c@framenumber=1 % + \begin{picture}(0,0) + \put(-4,-274){% + \pgfuseimage{titlebackground} + } + \end{picture} + \else% + \begin{picture}(0,0) + \put(-4,-274){% + \pgfuseimage{background} + } + \end{picture} + \fi + } +} +} + + + +%\setbeamertemplate{background canvas}{% +% % On title page +% \ifnum\c@framenumber=1 % +% \begin{picture}(0,0) +% \put(0,-253){% +% \pgfuseimage{titlebackground} +% } +% \end{picture} +% +% \else% +% \xifaspectratio{ +% {169} { +% % Other frames background +% \begin{picture}(0,0) +% \put(-4,-260){% +% \pgfuseimage{background} +% } +% \end{picture} +% } +% }[ +% % Other frames background +% \begin{picture}(0,0) +% \put(-4,-274){% +% \pgfuseimage{background} +% } +% \end{picture} +% ] +% \fi% +%} + + +\setbeamertemplate{title page}{ +\vspace{40pt} +\begin{center} +\usebeamerfont{title} {\huge \inserttitle}\par +\vspace{4ex} +\usebeamerfont{author} { + \insertauthor +}\par +\vspace{2ex} +\usebeamerfont{institute}{ + \insertinstitute +} \par +\vspace{2ex} +\usebeamerfont{date}{ + \insertdate +} +\end{center} +} + + +\setbeamertemplate{frametitle}[default][center] +\setbeamertemplate{frametitle}{ + \makeatletter + \regexpatchcmd{\insertframetitle} + {(\c{usebeamertemplate}.*)\c{fi}} + {\c{NoCaseChange}\cB\{\1\cE\}\c{fi}} + {}{}% + \makeatother + \vskip1ex + \insertframetitle +} + +% Here we define what appears at the bottom of each slide: the "footline". +\setbeamertemplate{footline}{% + \leavevmode% + + % Horizontal line dividing the rest of the slide from the footer? + % hrule goes all the way across... + % \hrule height.3pt% + % With \rule, you can specify the thickness + % \rule[raise-height]{width}{thickness} + % \hspace{.025\textwidth}\rule{.95\textwidth}{.5pt} + + \hbox{% + \ifnum \thepage>1 + \if@rightfooterOption + \begin{minipage}{.2\textwidth}% + \hskip .05\textwidth%Give horizontal space else this will set on the left edge of the slide! + \end{minipage} + \else + \begin{minipage}{.4\textwidth}% + \hskip .05\textwidth%Give horizontal space else this will set on the left edge of the slide! + \end{minipage} + \fi + + + \begin{minipage}{\textwidth}% + % \vskip .023\textheight% + \raggedleft% + \setlength{\rightskip}{\textwidth} + \if@rightfooterOption + \hbox{% + \begin{beamercolorbox}[wd=0.7\textwidth,ht=2.25ex,dp=1ex,left]{author in head/foot}% + \insertshorttitle{} \hskip .01\textwidth | \hskip .01\textwidth \insertdate{} \hskip .01\textwidth | \hskip .01\textwidth \insertframenumber{} + \end{beamercolorbox}% + } + \else + \hbox{% + \begin{beamercolorbox}[wd=0.5\textwidth,ht=2.25ex,dp=1ex,left]{author in head/foot}% + \insertshorttitle{} \hskip .01\textwidth | \hskip .01\textwidth \insertdate{} \hskip .01\textwidth | \hskip .01\textwidth \insertframenumber{} + \end{beamercolorbox}% + } + \fi + + \end{minipage}% + \begin{minipage}{.05\textwidth}% + \end{minipage}% + \fi %\thepage>1 + }% + \vskip .023\textheight% + +} + + + + +\ifTACCheadernav + +\usesectionheadtemplate +{\hfill\insertsectionhead} +{\hfill\color{fg!50!bg}\insertsectionhead} + +% Head +\ifbeamer@compress + +% Here we define how the top of the frame looks, the "headline". +\setbeamertemplate{headline} +{% + \ifnum \thepage>1 + \leavevmode% + \begin{beamercolorbox}[wd=.5\paperwidth,ht=2.5ex,dp=1.125ex]{% + section in head/foot}% + \insertsectionnavigationhorizontal{.5\paperwidth}{\hskip0pt plus1filll}{}% + \end{beamercolorbox}% + \begin{beamercolorbox}[wd=.5\paperwidth,ht=2.5ex,dp=1.125ex]{% + subsection in head/foot}% + \insertsubsectionnavigationhorizontal{% + .5\paperwidth}{}{\hskip0pt plus1filll}% + \end{beamercolorbox}% + \fi %\thepage>1 +} + +\else% Not compressed + +\setbeamertemplate{headline} +{% + \ifnum \thepage>1 + \leavevmode% + \@tempdimb=2.4375ex% + \ifnum\beamer@subsectionmax<\beamer@sectionmax% + \multiply\@tempdimb by\beamer@sectionmax% + \else% + \multiply\@tempdimb by\beamer@subsectionmax% + \fi% + \ifdim\@tempdimb>0pt% + \advance\@tempdimb by 1.125ex% + \begin{beamercolorbox}[wd=.5\paperwidth,ht=\@tempdimb]{% + section in head/foot}% + \vbox to\@tempdimb{\vfil\insertsectionnavigation{.5\paperwidth}\vfil}% + \end{beamercolorbox}% + \begin{beamercolorbox}[wd=.5\paperwidth,ht=\@tempdimb]{% + subsection in head/foot}% + \vbox to\@tempdimb{\vfil\insertsubsectionnavigation{.5\paperwidth}\vfil}% + \end{beamercolorbox}% + \fi% + \fi % \thepage>1 +} + +\fi % end if compressed +\fi % TACCheadernav + + +\ifTACCheadertree + +\setbeamertemplate{headline} +{ + \begin{beamercolorbox}[wd=\paperwidth,colsep=1.5pt]{upper separation line head} + \end{beamercolorbox} + % + % Place short title + % + \begin{beamercolorbox}[wd=\paperwidth,ht=2.5ex,dp=1.125ex,% + leftskip=.3cm,rightskip=.3cm plus1fil]{title in head/foot} + \usebeamerfont{title in head/foot}\insertshorttitle + \end{beamercolorbox} + + % + % Place section + % + \begin{beamercolorbox}[wd=\paperwidth,ht=2.5ex,dp=1.125ex,% + leftskip=.3cm,rightskip=.3cm plus1fil]{section in head/foot} + \usebeamerfont{section in head/foot}% + %\ifbeamer@tree@showhooks + \setbox\beamer@tempbox=\hbox{\insertsectionhead}% + \ifdim\wd\beamer@tempbox>1pt% + \hskip2pt\raise1.9pt\hbox{\vrule width0.4pt height1.875ex\vrule width 5pt height0.4pt}% + \hskip1pt% + \fi + \insertsectionhead + \end{beamercolorbox} + +% +% Place subsection +% +\begin{beamercolorbox}[wd=\paperwidth,ht=2.5ex,dp=1.125ex,% + leftskip=.3cm,rightskip=.3cm plus1fil]{subsection in head/foot} + \usebeamerfont{subsection in head/foot}% + %\ifbeamer@tree@showhooks + \setbox\beamer@tempbox=\hbox{\insertsubsectionhead}% + \ifdim\wd\beamer@tempbox>1pt% + \hskip9.4pt\raise1.9pt\hbox{\vrule width0.4pt height1.875ex\vrule width 5pt height0.4pt}% + \hskip1pt% + \fi + \insertsubsectionhead +\end{beamercolorbox} + +% +% Place final separation box +% + \begin{beamercolorbox}[wd=\paperwidth,colsep=1.5pt + ]{lower separation line head} + \end{beamercolorbox} + + % + % Another matching rule which helps to frame the content + % + \hspace{.025\textwidth}\rule{.95\textwidth}{.5pt} +} +\fi % TACCheadertree + + +% The following command suppresses all navigation symbols. This is +% necessary in the TACC theme, since it overlaps where we want the +% logo to be. +\setbeamertemplate{navigation symbols}{} + + +\mode + diff --git a/my_docs/22/lmod_zoom_mtg_2022_07_05/beamerthemeTACC.sty b/my_docs/22/lmod_zoom_mtg_2022_07_05/beamerthemeTACC.sty deleted file mode 120000 index 5c339abd4..000000000 --- a/my_docs/22/lmod_zoom_mtg_2022_07_05/beamerthemeTACC.sty +++ /dev/null @@ -1 +0,0 @@ -../../beamer/beamerthemeTACC.sty \ No newline at end of file diff --git a/my_docs/22/lmod_zoom_mtg_2022_07_05/beamerthemeTACC.sty b/my_docs/22/lmod_zoom_mtg_2022_07_05/beamerthemeTACC.sty new file mode 100755 index 000000000..c6a1b1269 --- /dev/null +++ b/my_docs/22/lmod_zoom_mtg_2022_07_05/beamerthemeTACC.sty @@ -0,0 +1,26 @@ +%% TACC theme for beamer + +\newif\ifTACCheadernav +\DeclareOption{headernav}{\global\TACCheadernavtrue} + +\newif\ifTACCheadertree +\DeclareOption{headertree}{\global\TACCheadertreetrue} +\ProcessOptions + +\mode + +\usefonttheme{TACC} +\usecolortheme{TACC} +\useinnertheme{TACC} +\useoutertheme{TACC} + +\mode + + +\newcommand{\event}[1]{% + \makeatletter% + \def\TACC@eventname{#1}% + \makeatother} + +\newcommand{\sectionframe}[1]{\section{#1}\frame{\Large\textbf{#1}}} +\newcommand{\subsectionframe}[1]{\subsection{#1}\frame{\large\textbf{#1}}} diff --git a/my_docs/22/lmod_zoom_mtg_2022_07_05/beamerthemeTACC16.sty b/my_docs/22/lmod_zoom_mtg_2022_07_05/beamerthemeTACC16.sty deleted file mode 120000 index 7a9d4d296..000000000 --- a/my_docs/22/lmod_zoom_mtg_2022_07_05/beamerthemeTACC16.sty +++ /dev/null @@ -1 +0,0 @@ -../../beamer/beamerthemeTACC16.sty \ No newline at end of file diff --git a/my_docs/22/lmod_zoom_mtg_2022_07_05/beamerthemeTACC16.sty b/my_docs/22/lmod_zoom_mtg_2022_07_05/beamerthemeTACC16.sty new file mode 100755 index 000000000..b522d0207 --- /dev/null +++ b/my_docs/22/lmod_zoom_mtg_2022_07_05/beamerthemeTACC16.sty @@ -0,0 +1,61 @@ +%% TACC theme for beamer + + +\newif\if@rightfooterOption +\@rightfooterOptionfalse +\DeclareOption{rightfooter}{\@rightfooterOptiontrue} +\ProcessOptions + + +\newif\ifTACCheadernav +\DeclareOption{headernav}{\global\TACCheadernavtrue} + +\newif\ifTACCheadertree +\DeclareOption{headertree}{\global\TACCheadertreetrue} +\ProcessOptions + +\usepackage{xparse} +\ExplSyntaxOn +\NewDocumentCommand{\ifaspectratio}{mmm} + { + % Recover the option from those passed to the class + \keys_set:nf { zunbeltz/beameroptions } { \use:c { opt@beamer.cls } } + \str_if_eq:nVTF { #1 } \l_zunbeltz_aspectratio_tl { #2 } { #3 } + } +\NewDocumentCommand{\xifaspectratio}{mO{}} + { + % Recover the option from those passed to the class + \keys_set:nf { zunbeltz/beameroptions } { \use:c { opt@beamer.cls } } + \str_case:VnF \l_zunbeltz_aspectratio_tl { #1 } { #2 } + } +% We need to define only one key, the other are treated as `unknown' +\keys_define:nn { zunbeltz/beameroptions } + { + aspectratio .tl_set:N = \l_zunbeltz_aspectratio_tl, + aspectratio .initial:n = 43, + unknown .code:n = {}, + } + +% Generate the variants we need +\cs_generate_variant:Nn \keys_set:nn { nf } +\cs_generate_variant:Nn \str_if_eq:nnTF { nV } +\cs_generate_variant:Nn \str_case:nnF { V } +\ExplSyntaxOff + +\mode + +\usefonttheme{TACC16} +\useinnertheme{TACC16} +\useoutertheme{TACC16} +\usecolortheme{TACC16} + +\mode + + +\newcommand{\event}[1]{% + \makeatletter% + \def\TACC@eventname{#1}% + \makeatother} + +\newcommand{\sectionframe}[1]{\section{#1}\frame{\Large\textbf{#1}}} +\newcommand{\subsectionframe}[1]{\subsection{#1}\frame{\large\textbf{#1}}} diff --git a/my_docs/22/lmod_zoom_mtg_2022_07_05/figures b/my_docs/22/lmod_zoom_mtg_2022_07_05/figures deleted file mode 120000 index ddafd8974..000000000 --- a/my_docs/22/lmod_zoom_mtg_2022_07_05/figures +++ /dev/null @@ -1 +0,0 @@ -../../beamer/figures \ No newline at end of file diff --git a/my_docs/22/lmod_zoom_mtg_2022_07_05/figures/TACC_logo.pdf b/my_docs/22/lmod_zoom_mtg_2022_07_05/figures/TACC_logo.pdf new file mode 100755 index 000000000..c018a20cb Binary files /dev/null and b/my_docs/22/lmod_zoom_mtg_2022_07_05/figures/TACC_logo.pdf differ diff --git a/my_docs/22/lmod_zoom_mtg_2022_07_05/figures/UT_logo.pdf b/my_docs/22/lmod_zoom_mtg_2022_07_05/figures/UT_logo.pdf new file mode 100755 index 000000000..d5b42e752 Binary files /dev/null and b/my_docs/22/lmod_zoom_mtg_2022_07_05/figures/UT_logo.pdf differ diff --git a/my_docs/22/lmod_zoom_mtg_2022_07_05/figures/cc.png b/my_docs/22/lmod_zoom_mtg_2022_07_05/figures/cc.png new file mode 100644 index 000000000..8a532ff8f Binary files /dev/null and b/my_docs/22/lmod_zoom_mtg_2022_07_05/figures/cc.png differ diff --git a/my_docs/22/lmod_zoom_mtg_2022_07_05/figures/isa.png b/my_docs/22/lmod_zoom_mtg_2022_07_05/figures/isa.png new file mode 100644 index 000000000..f95d985e7 Binary files /dev/null and b/my_docs/22/lmod_zoom_mtg_2022_07_05/figures/isa.png differ diff --git a/my_docs/22/lmod_zoom_mtg_2022_07_05/figures/master.jpg b/my_docs/22/lmod_zoom_mtg_2022_07_05/figures/master.jpg new file mode 100644 index 000000000..f5c56c04a Binary files /dev/null and b/my_docs/22/lmod_zoom_mtg_2022_07_05/figures/master.jpg differ diff --git a/my_docs/22/lmod_zoom_mtg_2022_07_05/figures/master169.jpg b/my_docs/22/lmod_zoom_mtg_2022_07_05/figures/master169.jpg new file mode 100644 index 000000000..b215776eb Binary files /dev/null and b/my_docs/22/lmod_zoom_mtg_2022_07_05/figures/master169.jpg differ diff --git a/my_docs/22/lmod_zoom_mtg_2022_07_05/figures/master169.png b/my_docs/22/lmod_zoom_mtg_2022_07_05/figures/master169.png new file mode 100644 index 000000000..bc5c0ed12 Binary files /dev/null and b/my_docs/22/lmod_zoom_mtg_2022_07_05/figures/master169.png differ diff --git a/my_docs/22/lmod_zoom_mtg_2022_07_05/figures/secondary.jpg b/my_docs/22/lmod_zoom_mtg_2022_07_05/figures/secondary.jpg new file mode 100644 index 000000000..d905a95c9 Binary files /dev/null and b/my_docs/22/lmod_zoom_mtg_2022_07_05/figures/secondary.jpg differ diff --git a/my_docs/22/lmod_zoom_mtg_2022_07_05/figures/secondary169.jpg b/my_docs/22/lmod_zoom_mtg_2022_07_05/figures/secondary169.jpg new file mode 100644 index 000000000..4eb017957 Binary files /dev/null and b/my_docs/22/lmod_zoom_mtg_2022_07_05/figures/secondary169.jpg differ diff --git a/my_docs/22/lmod_zoom_mtg_2022_07_05/figures/secondary169.png b/my_docs/22/lmod_zoom_mtg_2022_07_05/figures/secondary169.png new file mode 100644 index 000000000..cb9060a56 Binary files /dev/null and b/my_docs/22/lmod_zoom_mtg_2022_07_05/figures/secondary169.png differ diff --git a/my_docs/22/lmod_zoom_mtg_2022_07_05/figures/secondary_right.jpg b/my_docs/22/lmod_zoom_mtg_2022_07_05/figures/secondary_right.jpg new file mode 100644 index 000000000..f25f93a58 Binary files /dev/null and b/my_docs/22/lmod_zoom_mtg_2022_07_05/figures/secondary_right.jpg differ diff --git a/my_docs/22/lmod_zoom_mtg_2022_07_05/figures/secondary_right169.jpg b/my_docs/22/lmod_zoom_mtg_2022_07_05/figures/secondary_right169.jpg new file mode 100644 index 000000000..567a1078f Binary files /dev/null and b/my_docs/22/lmod_zoom_mtg_2022_07_05/figures/secondary_right169.jpg differ diff --git a/my_docs/22/lmod_zoom_mtg_2022_07_05/themes b/my_docs/22/lmod_zoom_mtg_2022_07_05/themes deleted file mode 120000 index a98530730..000000000 --- a/my_docs/22/lmod_zoom_mtg_2022_07_05/themes +++ /dev/null @@ -1 +0,0 @@ -../../beamer/themes \ No newline at end of file diff --git a/my_docs/22/lmod_zoom_mtg_2022_07_05/themes/beamercolorthemeTACC16.sty b/my_docs/22/lmod_zoom_mtg_2022_07_05/themes/beamercolorthemeTACC16.sty new file mode 100644 index 000000000..248ae8cb6 --- /dev/null +++ b/my_docs/22/lmod_zoom_mtg_2022_07_05/themes/beamercolorthemeTACC16.sty @@ -0,0 +1,193 @@ +% Copyright 2003 by Till Tantau . +% +% This program can be redistributed and/or modified under the terms +% of the GNU Public License, version 2. + +\mode + +\usepackage{textcase,regexpatch} + +\setbeamertemplate{blocks}[rounded][shadow=true] + + +\definecolor{TACCred}{RGB}{180,13,29} +\definecolor{TACCorange}{RGB}{210,104,43} +\definecolor{TACCblue}{RGB}{21,77,122} +%\definecolor{TACCgreen}{RGB}{30,134,104} +\definecolor{TACCgreen}{RGB}{49,168,51} + +% I downloaded a gimp color palette from +% http://maururu.net/2007/latex-beamer-color-palette/ +% Which provides rgb values (I think) for several of the +% default beamer themes. You can open this in gimp by +% opening the Palettes dialog, right-clicking anywhere and choosing +% 'Import Palette'. A color in there called 'default added blue' +% appeared to be approximately what I wanted. It had the triple +% of values 141 145 208. If you double-click on this in the +% palette editor it gives you a bunch of information. You can't +% use these values directly to set a color...it just comes out white. +% I think definecolor is expecting something normalized by 255. Yes! + + +%%% +% Set the normal text color +%%% +\setbeamercolor{normal text}{fg=black} %,bg=white} +\setbeamercolor{example text}{fg=TACCgreen} +\setbeamercolor{alerted text}{fg=TACCorange} + + +\setbeamercolor{structure}{fg=black} +%\setbeamercolor{structure}{fg=black} + +\setbeamercolor{background canvas}{parent=normal text} +\setbeamercolor{background}{parent=background canvas} + +\setbeamercolor{palette primary}{use=structure,fg=structure.fg} +\setbeamercolor{palette secondary}{use=structure,fg=structure.fg!75!black} +\setbeamercolor{palette tertiary}{use=structure,fg=structure.fg!50!black} +\setbeamercolor{palette quaternary}{fg=black} + +\setbeamercolor{palette sidebar primary}{use=normal text,fg=normal text.fg} +\setbeamercolor{palette sidebar secondary}{use=structure,fg=structure.fg} +\setbeamercolor{palette sidebar tertiary}{use=normal text,fg=normal text.fg} +\setbeamercolor{palette sidebar quaternary}{use=structure,fg=structure.fg} + +\setbeamercolor{math text}{} +\setbeamercolor{math text inlined}{parent=math text} +\setbeamercolor{math text displayed}{parent=math text} + +\setbeamercolor{normal text in math text}{} + +\setbeamercolor{local structure}{parent=structure} + +\setbeamercolor{titlelike}{parent=structure} + +\setbeamercolor{title}{parent=titlelike} +\setbeamercolor{title in head/foot}{parent=palette quaternary} +\setbeamercolor{title in sidebar}{parent=palette sidebar quaternary} + +\setbeamercolor{subtitle}{parent=title} + +\setbeamercolor{author}{} +\setbeamercolor{author in head/foot}{parent=palette primary} +\setbeamercolor{author in sidebar}{use=palette sidebar tertiary,fg=palette sidebar tertiary.fg} + +\setbeamercolor{institute}{} +\setbeamercolor{institute in head/foot}{parent=palette tertiary} +\setbeamercolor{institute in sidebar}{use=palette sidebar tertiary,fg=palette sidebar tertiary.fg} + +\setbeamercolor{date}{} +\setbeamercolor{date in head/foot}{parent=palette secondary} +\setbeamercolor{date in sidebar}{use=palette sidebar tertiary,fg=palette sidebar tertiary.fg} + +\setbeamercolor{titlegraphic}{} + +\setbeamercolor{part name}{} +\setbeamercolor{part title}{parent=titlelike} + +\setbeamercolor{section in toc}{parent=structure} +\setbeamercolor{section in toc shaded}{parent=section in toc} +\setbeamercolor{section in head/foot}{parent=palette tertiary} +\setbeamercolor{section in sidebar}{parent=palette sidebar secondary} +\setbeamercolor{section in sidebar shaded}{use=section in sidebar,fg=section in sidebar.fg!40!bg} +\setbeamercolor{section number projected}{parent=item projected} + +\setbeamercolor{subsection in toc}{} +\setbeamercolor{subsection in toc shaded}{parent=subsection in toc} +\setbeamercolor{subsection in head/foot}{parent=palette secondary} +\setbeamercolor{subsection in sidebar}{parent=palette sidebar primary} +\setbeamercolor{subsection in sidebar shaded}{use=subsection in sidebar,fg=subsection in sidebar.fg!40!bg} +\setbeamercolor{subsection number projected}{parent={subitem projected}} + +\setbeamercolor{subsubsection in toc}{parent=subsection in toc} +\setbeamercolor{subsubsection in toc shaded}{parent=subsubsection in toc} +\setbeamercolor{subsubsection in head/foot}{parent=subsection in head/foot} +\setbeamercolor{subsubsection in sidebar}{parent=subsection in sidebar} +\setbeamercolor{subsubsection in sidebar shaded}{parent=subsection in sidebar shaded} +\setbeamercolor{subsubsection number projected}{parent=subsubitem projected} + +\setbeamercolor{headline}{} +\setbeamercolor{footline}{} + +\setbeamercolor{sidebar}{} +\setbeamercolor{sidebar left}{parent=sidebar} +\setbeamercolor{sidebar right}{parent=sidebar} + +\setbeamercolor{logo}{parent=palette secondary} + +\setbeamercolor{frametitle}{parent=titlelike} +\setbeamercolor{framesubtitle}{parent=frametitle} + +\setbeamercolor{frametitle right}{parent=frametitle} + +\setbeamercolor{caption}{} +\setbeamercolor{caption name}{parent=structure} + +\setbeamercolor{button}{use=local structure,bg=local structure.fg!50!bg,fg=white} +\setbeamercolor{button border}{use=button,fg=button.bg} +\setbeamercolor{navigation symbols}{use=structure,fg=structure.fg!40!bg} +\setbeamercolor{navigation symbols dimmed}{use=structure,fg=structure.fg!20!bg} +\setbeamercolor{mini frame}{parent=section in head/foot} + +\setbeamercolor{block body}{fg=black} +\setbeamercolor{block body alerted}{fg=black} +\setbeamercolor{block body example}{fg=black} + +\setbeamercolor{block title}{bg=TACCblue,fg=white} +\setbeamercolor{block title alerted}{bg=TACCred,fg=white} +\setbeamercolor{block title example}{bg=TACCgreen,fg=white} + +\setbeamercolor{item}{parent=local structure} +\setbeamercolor{subitem}{parent=item} +\setbeamercolor{subsubitem}{parent=subitem} + +\setbeamercolor{item projected}{parent=item,use=item,fg=black,bg=item.fg} +\setbeamercolor{subitem projected}{parent=item projected} +\setbeamercolor{subsubitem projected}{parent=subitem projected} + +\setbeamercolor{enumerate item}{parent=item} +\setbeamercolor{enumerate subitem}{parent=subitem} +\setbeamercolor{enumerate subsubitem}{parent=subsubitem} + +\setbeamercolor{itemize item}{parent=item} +\setbeamercolor{itemize subitem}{parent=subitem} +\setbeamercolor{itemize subsubitem}{parent=subsubitem} + +\setbeamercolor{itemize/enumerate body}{} +\setbeamercolor{itemize/enumerate subbody}{} +\setbeamercolor{itemize/enumerate subsubbody}{} + +\setbeamercolor{description item}{parent=item} + +\setbeamercolor{bibliography item}{parent=item} + +\setbeamercolor{bibliography entry author}{use=structure,fg=structure.fg} +\setbeamercolor{bibliography entry title}{use=normal text,fg=normal text.fg} +\setbeamercolor{bibliography entry location}{use=structure,fg=structure.fg!65!bg} +\setbeamercolor{bibliography entry note}{use=structure,fg=structure.fg!65!bg} + +\setbeamercolor{separation line}{} + +\setbeamercolor{upper separation line head}{parent=separation line} +\setbeamercolor{middle separation line head}{parent=separation line} +\setbeamercolor{lower separation line head}{parent=separation line} + +\setbeamercolor{upper separation line foot}{parent=separation line} +\setbeamercolor{middle separation line foot}{parent=separation line} +\setbeamercolor{lower separation line foot}{parent=separation line} + +\setbeamercolor{abstract}{} +\setbeamercolor{abstract title}{parent=structure} + +\setbeamercolor{verse}{} + +\setbeamercolor{quotation}{} +\setbeamercolor{quote}{parent=quotation} + +\setbeamercolor{page number in head/foot}{fg=fg!50!bg} + +\setbeamercolor{qed symbol}{parent=structure} + +\mode + diff --git a/my_docs/22/lmod_zoom_mtg_2022_07_05/themes/beamerfontthemeTACC16.sty b/my_docs/22/lmod_zoom_mtg_2022_07_05/themes/beamerfontthemeTACC16.sty new file mode 100644 index 000000000..d0fc325cc --- /dev/null +++ b/my_docs/22/lmod_zoom_mtg_2022_07_05/themes/beamerfontthemeTACC16.sty @@ -0,0 +1,21 @@ +% Copyright 2003 by Till Tantau +% +% This program can be redistributed and/or modified under the terms +% of the GNU Public License, version 2. + +\mode +\setbeamerfont{title}{parent=structure,size=\LARGE,series=\bfseries} +\setbeamerfont{author}{parent=structure,size=\large, series=\normalfont} +\setbeamerfont{frametitle}{parent=structure,size=\LARGE,series=\bfseries} +\setbeamerfont{framesubtitle}{parent=frametitle,size=\small} + +%\usefonttheme{professionalfonts} % using non standard fonts for beamer +%\usefonttheme{serif} % default family is serif +%\usepackage{fontspec} +%\setmainfont{Century Gothic} + +%\usepackage{fontspec} +\usepackage{libertine} + +\mode + diff --git a/my_docs/22/lmod_zoom_mtg_2022_07_05/themes/beamerinnerthemeTACC16.sty b/my_docs/22/lmod_zoom_mtg_2022_07_05/themes/beamerinnerthemeTACC16.sty new file mode 100644 index 000000000..f7f454e1d --- /dev/null +++ b/my_docs/22/lmod_zoom_mtg_2022_07_05/themes/beamerinnerthemeTACC16.sty @@ -0,0 +1,11 @@ +\mode + +\setbeamertemplate{itemize item}[triangle] +\setbeamertemplate{itemize subitem}[triangle] +\setbeamertemplate{itemize subsubitem}[triangle] +\setbeamertemplate{section in toc}{$\bullet$\hskip.5em\inserttocsection} +%\setbeamertemplate{subsection in toc}{} +\setbeamertemplate{subsubsection in toc}{} + +\mode + diff --git a/my_docs/22/lmod_zoom_mtg_2022_07_05/themes/beamerouterthemeTACC16-169.sty b/my_docs/22/lmod_zoom_mtg_2022_07_05/themes/beamerouterthemeTACC16-169.sty new file mode 100644 index 000000000..c62f9ed04 --- /dev/null +++ b/my_docs/22/lmod_zoom_mtg_2022_07_05/themes/beamerouterthemeTACC16-169.sty @@ -0,0 +1,247 @@ +% Copyright 2003 by Till Tantau +% +% This program can be redistributed and/or modified under the terms +% of the GNU Public License, version 2. + +\mode + +\usepackage{xcolor} +\usepackage{graphicx} +\usepackage{etoolbox} + +\pgfdeclareimage[width=\paperwidth]{titlebackground}{./figures/master169.png} +\pgfdeclareimage[width=\paperwidth]{background}{./figures/secondary169.png} + +\setbeamertemplate{background canvas}{% + \ifnum\c@framenumber=1% + \begin{picture}(0,0) + \put(-0.15,-250){% + \pgfuseimage{titlebackground} + } + %\put(0,-130.7){% + + %\begin{minipage}[b][45mm][t]{\textwidth}%{226mm} + %\begin{center} + % \usebeamerfont{title}{\MakeTextUppercase{\inserttitle}\par} + %\vspace{2ex} + %\usebeamerfont{author}{\insertauthor} + % \end{center} + %\end{minipage} + %} + \end{picture} + % On title page + \else% + % Other frames background + \begin{picture}(0,0) + \put(-0.15,-255.55){% + \pgfuseimage{background} + } + \end{picture} + \fi% +} + + +\setbeamertemplate{title page}{ +\vspace{40pt} +\begin{center} +\usebeamerfont{title} {\huge \inserttitle}\par +\vspace{4ex} +\usebeamerfont{author} { + \insertauthor +}\par +\vspace{2ex} +\usebeamerfont{institute}{ + \insertinstitute +} \par +\vspace{2ex} +\usebeamerfont{date}{ + \insertdate +} +\end{center} +} + + +\setbeamertemplate{frametitle}[default][center] +\setbeamertemplate{frametitle}{ + \makeatletter + \regexpatchcmd{\insertframetitle} + {(\c{usebeamertemplate}.*)\c{fi}} + {\c{NoCaseChange}\cB\{\1\cE\}\c{fi}} + {}{}% + \makeatother + \vskip1ex + \insertframetitle +} + +% Here we define what appears at the bottom of each slide: the "footline". +\setbeamertemplate{footline}{% + \leavevmode% + + % Horizontal line dividing the rest of the slide from the footer? + % hrule goes all the way across... + % \hrule height.3pt% + % With \rule, you can specify the thickness + % \rule[raise-height]{width}{thickness} + % \hspace{.025\textwidth}\rule{.95\textwidth}{.5pt} + + \hbox{% + \ifnum \thepage>1 + % On the left half of the footer, insert the TACC of + \begin{minipage}{.2\textwidth}% + \hskip .05\textwidth%Give horizontal space else this will set on the left edge of the slide! + % \includegraphics[width=.8\textwidth]{TACC_logo.png} + \end{minipage} + + + \begin{minipage}{\textwidth}% + % \vskip .023\textheight% + \raggedleft% + \setlength{\rightskip}{\textwidth} + \hbox{% + \begin{beamercolorbox}[wd=0.7\textwidth,ht=2.25ex,dp=1ex,left]{author in head/foot}% + \insertshorttitle{} \hskip .01\textwidth | \hskip .01\textwidth \insertdate{} \hskip .01\textwidth | \hskip .01\textwidth \insertframenumber{} + \end{beamercolorbox}% + } + + % + % If we are not on the first page, insert a page number + % For some reason, insertframenumber is buggy when you have fragile + % slides with verbatim environments in them... it tends to skip numbers + % for some reason! On the other hand, the pagenumber is incremented + % for *every* slide, including transition slides... + % \hfill\includegraphics[width=\textwidth]{tacc_ut.png} + \end{minipage}% + \begin{minipage}{.05\textwidth}% + \end{minipage}% + \fi %\thepage>1 + }% + \vskip .023\textheight% + +} + + + + +\ifTACCheadernav + +\usesectionheadtemplate +{\hfill\insertsectionhead} +{\hfill\color{fg!50!bg}\insertsectionhead} + +% Head +\ifbeamer@compress + +% Here we define how the top of the frame looks, the "headline". +\setbeamertemplate{headline} +{% + \ifnum \thepage>1 + \leavevmode% + \begin{beamercolorbox}[wd=.5\paperwidth,ht=2.5ex,dp=1.125ex]{% + section in head/foot}% + \insertsectionnavigationhorizontal{.5\paperwidth}{\hskip0pt plus1filll}{}% + \end{beamercolorbox}% + \begin{beamercolorbox}[wd=.5\paperwidth,ht=2.5ex,dp=1.125ex]{% + subsection in head/foot}% + \insertsubsectionnavigationhorizontal{% + .5\paperwidth}{}{\hskip0pt plus1filll}% + \end{beamercolorbox}% + \fi %\thepage>1 +} + +\else% Not compressed + +\setbeamertemplate{headline} +{% + \ifnum \thepage>1 + \leavevmode% + \@tempdimb=2.4375ex% + \ifnum\beamer@subsectionmax<\beamer@sectionmax% + \multiply\@tempdimb by\beamer@sectionmax% + \else% + \multiply\@tempdimb by\beamer@subsectionmax% + \fi% + \ifdim\@tempdimb>0pt% + \advance\@tempdimb by 1.125ex% + \begin{beamercolorbox}[wd=.5\paperwidth,ht=\@tempdimb]{% + section in head/foot}% + \vbox to\@tempdimb{\vfil\insertsectionnavigation{.5\paperwidth}\vfil}% + \end{beamercolorbox}% + \begin{beamercolorbox}[wd=.5\paperwidth,ht=\@tempdimb]{% + subsection in head/foot}% + \vbox to\@tempdimb{\vfil\insertsubsectionnavigation{.5\paperwidth}\vfil}% + \end{beamercolorbox}% + \fi% + \fi % \thepage>1 +} + +\fi % end if compressed +\fi % TACCheadernav + + +\ifTACCheadertree + +\setbeamertemplate{headline} +{ + \begin{beamercolorbox}[wd=\paperwidth,colsep=1.5pt]{upper separation line head} + \end{beamercolorbox} + % + % Place short title + % + \begin{beamercolorbox}[wd=\paperwidth,ht=2.5ex,dp=1.125ex,% + leftskip=.3cm,rightskip=.3cm plus1fil]{title in head/foot} + \usebeamerfont{title in head/foot}\insertshorttitle + \end{beamercolorbox} + + % + % Place section + % + \begin{beamercolorbox}[wd=\paperwidth,ht=2.5ex,dp=1.125ex,% + leftskip=.3cm,rightskip=.3cm plus1fil]{section in head/foot} + \usebeamerfont{section in head/foot}% + %\ifbeamer@tree@showhooks + \setbox\beamer@tempbox=\hbox{\insertsectionhead}% + \ifdim\wd\beamer@tempbox>1pt% + \hskip2pt\raise1.9pt\hbox{\vrule width0.4pt height1.875ex\vrule width 5pt height0.4pt}% + \hskip1pt% + \fi + \insertsectionhead + \end{beamercolorbox} + +% +% Place subsection +% +\begin{beamercolorbox}[wd=\paperwidth,ht=2.5ex,dp=1.125ex,% + leftskip=.3cm,rightskip=.3cm plus1fil]{subsection in head/foot} + \usebeamerfont{subsection in head/foot}% + %\ifbeamer@tree@showhooks + \setbox\beamer@tempbox=\hbox{\insertsubsectionhead}% + \ifdim\wd\beamer@tempbox>1pt% + \hskip9.4pt\raise1.9pt\hbox{\vrule width0.4pt height1.875ex\vrule width 5pt height0.4pt}% + \hskip1pt% + \fi + \insertsubsectionhead +\end{beamercolorbox} + +% +% Place final separation box +% + \begin{beamercolorbox}[wd=\paperwidth,colsep=1.5pt + ]{lower separation line head} + \end{beamercolorbox} + + % + % Another matching rule which helps to frame the content + % + \hspace{.025\textwidth}\rule{.95\textwidth}{.5pt} +} +\fi % TACCheadertree + + +% The following command suppresses all navigation symbols. This is +% necessary in the TACC theme, since it overlaps where we want the +% logo to be. +\setbeamertemplate{navigation symbols}{} + + +\mode + diff --git a/my_docs/22/lmod_zoom_mtg_2022_07_05/themes/beamerouterthemeTACC16.sty b/my_docs/22/lmod_zoom_mtg_2022_07_05/themes/beamerouterthemeTACC16.sty new file mode 100644 index 000000000..c5b178018 --- /dev/null +++ b/my_docs/22/lmod_zoom_mtg_2022_07_05/themes/beamerouterthemeTACC16.sty @@ -0,0 +1,247 @@ +% Copyright 2003 by Till Tantau +% +% This program can be redistributed and/or modified under the terms +% of the GNU Public License, version 2. + +\mode + +\usepackage{xcolor} +\usepackage{graphicx} +\usepackage{etoolbox} + +\pgfdeclareimage[width=\paperwidth]{titlebackground}{master.jpg} +\pgfdeclareimage[width=\paperwidth]{background}{secondary.jpg} + +\setbeamertemplate{background canvas}{% + \ifnum\c@framenumber=1% + \begin{picture}(0,0) + \put(0,-273){% + \pgfuseimage{titlebackground} + } + %\put(0,-130.7){% + + %\begin{minipage}[b][45mm][t]{\textwidth}%{226mm} + %\begin{center} + % \usebeamerfont{title}{\MakeTextUppercase{\inserttitle}\par} + %\vspace{2ex} + %\usebeamerfont{author}{\insertauthor} + % \end{center} + %\end{minipage} + %} + \end{picture} + % On title page + \else% + % Other frames background + \begin{picture}(0,0) + \put(0,-273){% + \pgfuseimage{background} + } + \end{picture} + \fi% +} + + +\setbeamertemplate{title page}{ +\vspace{40pt} +\begin{center} +\usebeamerfont{title} {\huge \inserttitle}\par +\vspace{4ex} +\usebeamerfont{author} { + \insertauthor +}\par +\vspace{2ex} +\usebeamerfont{institute}{ + \insertinstitute +} \par +\vspace{2ex} +\usebeamerfont{date}{ + \insertdate +} +\end{center} +} + + +\setbeamertemplate{frametitle}[default][center] +\setbeamertemplate{frametitle}{ + \makeatletter + \regexpatchcmd{\insertframetitle} + {(\c{usebeamertemplate}.*)\c{fi}} + {\c{NoCaseChange}\cB\{\1\cE\}\c{fi}} + {}{}% + \makeatother + \vskip1ex + \insertframetitle +} + +% Here we define what appears at the bottom of each slide: the "footline". +\setbeamertemplate{footline}{% + \leavevmode% + + % Horizontal line dividing the rest of the slide from the footer? + % hrule goes all the way across... + % \hrule height.3pt% + % With \rule, you can specify the thickness + % \rule[raise-height]{width}{thickness} + % \hspace{.025\textwidth}\rule{.95\textwidth}{.5pt} + + \hbox{% + \ifnum \thepage>1 + % On the left half of the footer, insert the TACC of + \begin{minipage}{.2\textwidth}% + \hskip .05\textwidth%Give horizontal space else this will set on the left edge of the slide! + % \includegraphics[width=.8\textwidth]{figures/TACC_logo.png} + \end{minipage} + + + \begin{minipage}{\textwidth}% + % \vskip .023\textheight% + \raggedleft% + \setlength{\rightskip}{\textwidth} + \hbox{% + \begin{beamercolorbox}[wd=0.7\textwidth,ht=2.25ex,dp=1ex,left]{author in head/foot}% + \insertshorttitle{} \hskip .01\textwidth | \hskip .01\textwidth \insertdate{} \hskip .01\textwidth | \hskip .01\textwidth \insertframenumber{} + \end{beamercolorbox}% + } + + % + % If we are not on the first page, insert a page number + % For some reason, insertframenumber is buggy when you have fragile + % slides with verbatim environments in them... it tends to skip numbers + % for some reason! On the other hand, the pagenumber is incremented + % for *every* slide, including transition slides... + % \hfill\includegraphics[width=\textwidth]{figures/tacc_ut.png} + \end{minipage}% + \begin{minipage}{.05\textwidth}% + \end{minipage}% + \fi %\thepage>1 + }% + \vskip .023\textheight% + +} + + + + +\ifTACCheadernav + +\usesectionheadtemplate +{\hfill\insertsectionhead} +{\hfill\color{fg!50!bg}\insertsectionhead} + +% Head +\ifbeamer@compress + +% Here we define how the top of the frame looks, the "headline". +\setbeamertemplate{headline} +{% + \ifnum \thepage>1 + \leavevmode% + \begin{beamercolorbox}[wd=.5\paperwidth,ht=2.5ex,dp=1.125ex]{% + section in head/foot}% + \insertsectionnavigationhorizontal{.5\paperwidth}{\hskip0pt plus1filll}{}% + \end{beamercolorbox}% + \begin{beamercolorbox}[wd=.5\paperwidth,ht=2.5ex,dp=1.125ex]{% + subsection in head/foot}% + \insertsubsectionnavigationhorizontal{% + .5\paperwidth}{}{\hskip0pt plus1filll}% + \end{beamercolorbox}% + \fi %\thepage>1 +} + +\else% Not compressed + +\setbeamertemplate{headline} +{% + \ifnum \thepage>1 + \leavevmode% + \@tempdimb=2.4375ex% + \ifnum\beamer@subsectionmax<\beamer@sectionmax% + \multiply\@tempdimb by\beamer@sectionmax% + \else% + \multiply\@tempdimb by\beamer@subsectionmax% + \fi% + \ifdim\@tempdimb>0pt% + \advance\@tempdimb by 1.125ex% + \begin{beamercolorbox}[wd=.5\paperwidth,ht=\@tempdimb]{% + section in head/foot}% + \vbox to\@tempdimb{\vfil\insertsectionnavigation{.5\paperwidth}\vfil}% + \end{beamercolorbox}% + \begin{beamercolorbox}[wd=.5\paperwidth,ht=\@tempdimb]{% + subsection in head/foot}% + \vbox to\@tempdimb{\vfil\insertsubsectionnavigation{.5\paperwidth}\vfil}% + \end{beamercolorbox}% + \fi% + \fi % \thepage>1 +} + +\fi % end if compressed +\fi % TACCheadernav + + +\ifTACCheadertree + +\setbeamertemplate{headline} +{ + \begin{beamercolorbox}[wd=\paperwidth,colsep=1.5pt]{upper separation line head} + \end{beamercolorbox} + % + % Place short title + % + \begin{beamercolorbox}[wd=\paperwidth,ht=2.5ex,dp=1.125ex,% + leftskip=.3cm,rightskip=.3cm plus1fil]{title in head/foot} + \usebeamerfont{title in head/foot}\insertshorttitle + \end{beamercolorbox} + + % + % Place section + % + \begin{beamercolorbox}[wd=\paperwidth,ht=2.5ex,dp=1.125ex,% + leftskip=.3cm,rightskip=.3cm plus1fil]{section in head/foot} + \usebeamerfont{section in head/foot}% + %\ifbeamer@tree@showhooks + \setbox\beamer@tempbox=\hbox{\insertsectionhead}% + \ifdim\wd\beamer@tempbox>1pt% + \hskip2pt\raise1.9pt\hbox{\vrule width0.4pt height1.875ex\vrule width 5pt height0.4pt}% + \hskip1pt% + \fi + \insertsectionhead + \end{beamercolorbox} + +% +% Place subsection +% +\begin{beamercolorbox}[wd=\paperwidth,ht=2.5ex,dp=1.125ex,% + leftskip=.3cm,rightskip=.3cm plus1fil]{subsection in head/foot} + \usebeamerfont{subsection in head/foot}% + %\ifbeamer@tree@showhooks + \setbox\beamer@tempbox=\hbox{\insertsubsectionhead}% + \ifdim\wd\beamer@tempbox>1pt% + \hskip9.4pt\raise1.9pt\hbox{\vrule width0.4pt height1.875ex\vrule width 5pt height0.4pt}% + \hskip1pt% + \fi + \insertsubsectionhead +\end{beamercolorbox} + +% +% Place final separation box +% + \begin{beamercolorbox}[wd=\paperwidth,colsep=1.5pt + ]{lower separation line head} + \end{beamercolorbox} + + % + % Another matching rule which helps to frame the content + % + \hspace{.025\textwidth}\rule{.95\textwidth}{.5pt} +} +\fi % TACCheadertree + + +% The following command suppresses all navigation symbols. This is +% necessary in the TACC theme, since it overlaps where we want the +% logo to be. +\setbeamertemplate{navigation symbols}{} + + +\mode + diff --git a/my_docs/22/lmod_zoom_mtg_2022_07_05/themes/beamerthemeTACC16-169.sty b/my_docs/22/lmod_zoom_mtg_2022_07_05/themes/beamerthemeTACC16-169.sty new file mode 100644 index 000000000..22caf9a05 --- /dev/null +++ b/my_docs/22/lmod_zoom_mtg_2022_07_05/themes/beamerthemeTACC16-169.sty @@ -0,0 +1,38 @@ +%% TACC theme for beamer + +\newif\ifTACCheadernav +\DeclareOption{headernav}{\global\TACCheadernavtrue} + +\newif\ifTACCheadertree +\DeclareOption{headertree}{\global\TACCheadertreetrue} +\ProcessOptions + +\mode + +\makeatletter + \def\beamer@calltheme#1#2#3{% + \def\beamer@themelist{#2} + \@for\beamer@themename:=\beamer@themelist\do + {\usepackage[{#1}]{\beamer@themelocation/#3\beamer@themename}}} + + \def\usefolder#1{ + \def\beamer@themelocation{#1} + } + \def\beamer@themelocation{} + +\usefolder{themes} +\usefonttheme{TACC16} +\useinnertheme{TACC16} +\useoutertheme{TACC16-169} +\usecolortheme{TACC16} + +\mode + + +\newcommand{\event}[1]{% + \makeatletter% + \def\TACC@eventname{#1}% + \makeatother} + +\newcommand{\sectionframe}[1]{\section{#1}\frame{\Large\textbf{#1}}} +\newcommand{\subsectionframe}[1]{\subsection{#1}\frame{\large\textbf{#1}}} diff --git a/my_docs/22/lmod_zoom_mtg_2022_07_05/themes/beamerthemeTACC16.sty b/my_docs/22/lmod_zoom_mtg_2022_07_05/themes/beamerthemeTACC16.sty new file mode 100644 index 000000000..750bdd388 --- /dev/null +++ b/my_docs/22/lmod_zoom_mtg_2022_07_05/themes/beamerthemeTACC16.sty @@ -0,0 +1,26 @@ +%% TACC theme for beamer + +\newif\ifTACCheadernav +\DeclareOption{headernav}{\global\TACCheadernavtrue} + +\newif\ifTACCheadertree +\DeclareOption{headertree}{\global\TACCheadertreetrue} +\ProcessOptions + +\mode + +\usefonttheme{TACC16} +\useinnertheme{TACC16} +\useoutertheme{TACC16} +\usecolortheme{TACC16} + +\mode + + +\newcommand{\event}[1]{% + \makeatletter% + \def\TACC@eventname{#1}% + \makeatother} + +\newcommand{\sectionframe}[1]{\section{#1}\frame{\Large\textbf{#1}}} +\newcommand{\subsectionframe}[1]{\subsection{#1}\frame{\large\textbf{#1}}} diff --git a/my_docs/22/lmod_zoom_mtg_2022_07_05/themes/example.pdf b/my_docs/22/lmod_zoom_mtg_2022_07_05/themes/example.pdf new file mode 100644 index 000000000..add373eee Binary files /dev/null and b/my_docs/22/lmod_zoom_mtg_2022_07_05/themes/example.pdf differ diff --git a/my_docs/22/lmod_zoom_mtg_2022_07_05/themes/license.tex b/my_docs/22/lmod_zoom_mtg_2022_07_05/themes/license.tex new file mode 100644 index 000000000..74ff86759 --- /dev/null +++ b/my_docs/22/lmod_zoom_mtg_2022_07_05/themes/license.tex @@ -0,0 +1,14 @@ + +\begin{frame}{License} +\footnotesize +\textcopyright The University of Texas at Austin, \the\year\\ +\vspace{0.5 cm} +This work is licensed under the Creative Commons Attribution Non-Commercial 3.0 Unported License. To view a copy of this license, +visit http://creativecommons.org/licenses/by-nc/3.0/\\ +\vspace{0.5 cm} +When attributing this work, please use the following text: +"Designing and Administering Large-scale Systems", Texas Advanced Computing Center, \the\year. Available under a Creative Commons Attribution Non-Commercial 3.0 Unported License. +\newline +\newline +\includegraphics[width=1cm]{./figures/cc.png} +\end{frame} \ No newline at end of file diff --git a/my_docs/22/lmod_zoom_mtg_2022_08_02/Lmod-4color@2x.png b/my_docs/22/lmod_zoom_mtg_2022_08_02/Lmod-4color@2x.png deleted file mode 120000 index 47d505dbf..000000000 --- a/my_docs/22/lmod_zoom_mtg_2022_08_02/Lmod-4color@2x.png +++ /dev/null @@ -1 +0,0 @@ -../../beamer/Lmod-4color@2x.png \ No newline at end of file diff --git a/my_docs/22/lmod_zoom_mtg_2022_08_02/Lmod-4color@2x.png b/my_docs/22/lmod_zoom_mtg_2022_08_02/Lmod-4color@2x.png new file mode 100644 index 000000000..4810d74c3 Binary files /dev/null and b/my_docs/22/lmod_zoom_mtg_2022_08_02/Lmod-4color@2x.png differ diff --git a/my_docs/22/lmod_zoom_mtg_2022_08_02/beamercolorthemeTACC.sty b/my_docs/22/lmod_zoom_mtg_2022_08_02/beamercolorthemeTACC.sty deleted file mode 120000 index 8d27e673a..000000000 --- a/my_docs/22/lmod_zoom_mtg_2022_08_02/beamercolorthemeTACC.sty +++ /dev/null @@ -1 +0,0 @@ -../../beamer/beamercolorthemeTACC.sty \ No newline at end of file diff --git a/my_docs/22/lmod_zoom_mtg_2022_08_02/beamercolorthemeTACC.sty b/my_docs/22/lmod_zoom_mtg_2022_08_02/beamercolorthemeTACC.sty new file mode 100755 index 000000000..78beb6a4a --- /dev/null +++ b/my_docs/22/lmod_zoom_mtg_2022_08_02/beamercolorthemeTACC.sty @@ -0,0 +1,323 @@ +% Copyright 2003 by Till Tantau . +% +% This program can be redistributed and/or modified under the terms +% of the GNU Public License, version 2. + +\mode + +% I downloaded a gimp color palette from +% http://maururu.net/2007/latex-beamer-color-palette/ +% Which provides rgb values (I think) for several of the +% default beamer themes. You can open this in gimp by +% opening the Palettes dialog, right-clicking anywhere and choosing +% 'Import Palette'. A color in there called 'default added blue' +% appeared to be approximately what I wanted. It had the triple +% of values 141 145 208. If you double-click on this in the +% palette editor it gives you a bunch of information. You can't +% use these values directly to set a color...it just comes out white. +% I think definecolor is expecting something normalized by 255. Yes! + + +% bluish colors +\definecolor{defaddedblue}{rgb}{0.5529,.5686,.8157} % 141,145,208 +\definecolor{defblockheader}{rgb}{.1921,.2235,.6824} % 49,57,174 +\definecolor{flyaddedblue}{rgb}{.5961,.6118,.8431} % 152,156,215 + +% bluish-greys +\definecolor{beetleaddedblue1}{rgb}{.3333,.4039,.6196} % 85 103 158, dark +\definecolor{beetleaddedblue2}{rgb}{.4510,.5098,.7020} % 115 130 179, medium +\definecolor{beetleaddedblue3}{rgb}{.7059,.7255,.7961} % 180 185 203, light (greyest) + +% very light blue-greys +\definecolor{deflightouter1}{rgb}{.7608,.7647,.9020} % 194 195 230, dark +\definecolor{deflightouter2}{rgb}{.8 ,.8039,.9176} % 204 205 234, medium +\definecolor{deflightouter3}{rgb}{.8392,.8431,.9373} % 214 215 239, light + +% reddish colors +\definecolor{flyalertblockheader}{rgb}{.7373,.1294,.1333} % 188 33 34 +\definecolor{flyaddedred}{rgb}{.8667,.5647,.5647}% 221 144 144 +\definecolor{beaverouterframe}{rgb}{.5529,.0980,.0980}% 141 25 25 + +% greens (green is used for 'examples' in beamer) +\definecolor{defexblock}{rgb}{.9098,.9333,.9020} % 232 238 230, light +\definecolor{defaddedgreen}{rgb}{.5412,.6510,.4706} % 138 166 120, medium +\definecolor{defexblockheader}{rgb}{.1686,.3647,.0392} % 43 93 10, dark + +\definecolor{lightexblock}{rgb}{.9137,.9451,.9020} % 233 241 230, light +\definecolor{lightexblockheader}{rgb}{.8235,.8980,.8} % 210 229 204, medium +\definecolor{lightexblockheadertext}{rgb}{.2431,.5098,.0745} % 62 130 19, dark + + +%%% +% Set the normal text color +%%% +\setbeamercolor{normal text}{fg=black,bg=white} + +%%% +% Set the alerted text color +%%% +% \setbeamercolor{alerted text}{fg=red} +\setbeamercolor{alerted text}{fg=red!50!black} % half black/half red for green bg +% \setbeamercolor{alerted text}{fg=beaverouterframe} +% \setbeamercolor{alerted text}{fg=defblockheader} % doesn't stand out enough + + +% Set the 'example' text +\setbeamercolor{example text}{fg=green!50!black} + +\setbeamercolor{structure}{fg=black} + +\setbeamercolor{background canvas}{parent=normal text} +\setbeamercolor{background}{parent=background canvas} + +\setbeamercolor{palette primary}{use=structure,fg=structure.fg} +\setbeamercolor{palette secondary}{use=structure,fg=structure.fg!75!black} +\setbeamercolor{palette tertiary}{use=structure,fg=structure.fg!50!black} +\setbeamercolor{palette quaternary}{fg=black} + +\setbeamercolor{palette sidebar primary}{use=normal text,fg=normal text.fg} +\setbeamercolor{palette sidebar secondary}{use=structure,fg=structure.fg} +\setbeamercolor{palette sidebar tertiary}{use=normal text,fg=normal text.fg} +\setbeamercolor{palette sidebar quaternary}{use=structure,fg=structure.fg} + +\setbeamercolor{math text}{} +\setbeamercolor{math text inlined}{parent=math text} +\setbeamercolor{math text displayed}{parent=math text} + +\setbeamercolor{normal text in math text}{} + +\setbeamercolor{local structure}{parent=structure} + +\setbeamercolor{titlelike}{parent=structure} + +\setbeamercolor{title}{parent=titlelike} +\setbeamercolor{title in head/foot}{parent=palette quaternary} +\setbeamercolor{title in sidebar}{parent=palette sidebar quaternary} + +\setbeamercolor{subtitle}{parent=title} + +\setbeamercolor{author}{} +\setbeamercolor{author in head/foot}{parent=palette primary} +\setbeamercolor{author in sidebar}{use=palette sidebar tertiary,fg=palette sidebar tertiary.fg} + +\setbeamercolor{institute}{} +\setbeamercolor{institute in head/foot}{parent=palette tertiary} +\setbeamercolor{institute in sidebar}{use=palette sidebar tertiary,fg=palette sidebar tertiary.fg} + +\setbeamercolor{date}{} +\setbeamercolor{date in head/foot}{parent=palette secondary} +\setbeamercolor{date in sidebar}{use=palette sidebar tertiary,fg=palette sidebar tertiary.fg} + +\setbeamercolor{titlegraphic}{} + +\setbeamercolor{part name}{} +\setbeamercolor{part title}{parent=titlelike} + +\setbeamercolor{section in toc}{parent=structure} +\setbeamercolor{section in toc shaded}{parent=section in toc} +\setbeamercolor{section in head/foot}{parent=palette tertiary} +\setbeamercolor{section in sidebar}{parent=palette sidebar secondary} +\setbeamercolor{section in sidebar shaded}{use=section in sidebar,fg=section in sidebar.fg!40!bg} +\setbeamercolor{section number projected}{parent=item projected} + +\setbeamercolor{subsection in toc}{} +\setbeamercolor{subsection in toc shaded}{parent=subsection in toc} +\setbeamercolor{subsection in head/foot}{parent=palette secondary} +\setbeamercolor{subsection in sidebar}{parent=palette sidebar primary} +\setbeamercolor{subsection in sidebar shaded}{use=subsection in sidebar,fg=subsection in sidebar.fg!40!bg} +\setbeamercolor{subsection number projected}{parent={subitem projected}} + +\setbeamercolor{subsubsection in toc}{parent=subsection in toc} +\setbeamercolor{subsubsection in toc shaded}{parent=subsubsection in toc} +\setbeamercolor{subsubsection in head/foot}{parent=subsection in head/foot} +\setbeamercolor{subsubsection in sidebar}{parent=subsection in sidebar} +\setbeamercolor{subsubsection in sidebar shaded}{parent=subsection in sidebar shaded} +\setbeamercolor{subsubsection number projected}{parent=subsubitem projected} + +\setbeamercolor{headline}{} +\setbeamercolor{footline}{} + +\setbeamercolor{sidebar}{} +\setbeamercolor{sidebar left}{parent=sidebar} +\setbeamercolor{sidebar right}{parent=sidebar} + +\setbeamercolor{logo}{parent=palette secondary} + +\setbeamercolor{frametitle}{parent=titlelike} +\setbeamercolor{framesubtitle}{parent=frametitle} + +\setbeamercolor{frametitle right}{parent=frametitle} + +\setbeamercolor{caption}{} +\setbeamercolor{caption name}{parent=structure} + +\setbeamercolor{button}{use=local structure,bg=local structure.fg!50!bg,fg=white} +\setbeamercolor{button border}{use=button,fg=button.bg} +\setbeamercolor{navigation symbols}{use=structure,fg=structure.fg!40!bg} +\setbeamercolor{navigation symbols dimmed}{use=structure,fg=structure.fg!20!bg} +\setbeamercolor{mini frame}{parent=section in head/foot} + +% Color expressions are defined in the xcolor package +% +% Ex: Mixture of 40% green, 60% yellow: green!40!yellow +% +% The complement of any color can be obtained by prepending +% a minus sign: -green!40!yellow +% +% One can also combine up to three colors (in differing proportions) +% using the rgb command. For example, the following command combines +% 3 parts of the first color, with 2 parts of the second, and one part +% "red" +% +%\color{rgb:-green!40!yellow,3;green!40!yellow,2;red,1} +% Unfortunately, I don't think this works as an argument to setbeamercolor... +% "Orange" bg=green!30!yellow!30!red +% close to burnt orange: red!75!green +% lightgray is a color, but gray!25!white looks better +% +% A nice pair of greens +% (dark, a little too dark to be under black text...) -red!75!green!50!blue!25 +% (light) -red!75!green!50!blue!25!gray +% +% Some colors are only available via options to the xcolor package, eg. +% x11names,DarkOliveGreen4 +% svgnames, Chartreuse +% dvipsnames, ForestGreen +% +% but beamer does not seem to have any of these. +% +% The base color names which are always available are: +% black +% blue +% brown +% cyan +% darkgray +% gray +% green +% lightgray +% lime +% magenta +% olive +% orange +% pink +% purple +% red +% teal +% violet +% white +% yellow + +% From the beamer user guide, pg. 167 +% Inner color themes only specify the colors of elements used in inner +% themes. Most noticably, they specify the colors used for blocks. +% ... + +% Example color definition +% beamercolorthemedefault.sty:\definecolor{beamer@blendedblue}{rgb}{0.2,0.2,0.7} +% beamercolorthemedefault.sty:\setbeamercolor{structure}{fg=beamer@blendedblue} + +% The greens +% \setbeamercolor{block body}{bg=-red!75!green!50!blue!25!gray} +% \setbeamercolor{block title}{parent=structure,bg=-red!75!green!50!blue!25,fg=-red!75!green!50!blue!25!gray} + +%%% +% Set the block body and title background/foreground colors +%%% +% \setbeamercolor{block body}{bg=flyaddedblue} +% \setbeamercolor{block title}{bg=defblockheader,fg=flyaddedblue} + +% Purplish blues, too dark overall +% \setbeamercolor{block body}{bg=beetleaddedblue3} +% \setbeamercolor{block title}{bg=beetleaddedblue2,fg=beetleaddedblue3} + +% Very light blue greys +% 1. Not enough contrast +% \setbeamercolor{block body}{bg=deflightouter3} +% \setbeamercolor{block title}{bg=deflightouter2,fg=deflightouter3} + +% 2. Not enough contrast +% \setbeamercolor{block body}{bg=deflightouter3} +% \setbeamercolor{block title}{bg=deflightouter1,fg=deflightouter3} + +% 3. Combination of deflightouter and fly. The block bg is +% lighter than the all-beetle color scheme I previously thought was best. +% Currently I like this one the best +\setbeamercolor{block body}{bg=deflightouter3} +\setbeamercolor{block title}{bg=beetleaddedblue2,fg=deflightouter3} + +% 4. Greens. Looks like a highlighter. I don't really trust greens +% on projectors... It's almost too bright/hurts your eyes. +% \setbeamercolor{block body}{bg=defexblock} +% \setbeamercolor{block title}{bg=defaddedgreen,fg=defexblock} + +% This looks pretty good ... it's similar to the greens we had before +% but should be lighter. The blocks are just a little too "mint" colored +% though... +% \setbeamercolor{block body}{bg=defexblock} +% \setbeamercolor{block title}{bg=defexblockheader,fg=defexblock} + +% Pea Soup! +%\setbeamercolor{block body}{bg=defaddedgreen} +%\setbeamercolor{block title}{bg=defexblockheader,fg=defaddedgreen} + + +% Changing these didn't seem to do anything...I had to change the +% 'alerted text' color instead +\setbeamercolor{block body alerted}{} +\setbeamercolor{block body example}{} +\setbeamercolor{block title alerted}{parent=alerted text} +\setbeamercolor{block title example}{parent=example text} + +\setbeamercolor{item}{parent=local structure} +\setbeamercolor{subitem}{parent=item} +\setbeamercolor{subsubitem}{parent=subitem} + +\setbeamercolor{item projected}{parent=item,use=item,fg=white,bg=item.fg} +\setbeamercolor{subitem projected}{parent=item projected} +\setbeamercolor{subsubitem projected}{parent=subitem projected} + +\setbeamercolor{enumerate item}{parent=item} +\setbeamercolor{enumerate subitem}{parent=subitem} +\setbeamercolor{enumerate subsubitem}{parent=subsubitem} + +\setbeamercolor{itemize item}{parent=item} +\setbeamercolor{itemize subitem}{parent=subitem} +\setbeamercolor{itemize subsubitem}{parent=subsubitem} + +\setbeamercolor{itemize/enumerate body}{} +\setbeamercolor{itemize/enumerate subbody}{} +\setbeamercolor{itemize/enumerate subsubbody}{} + +\setbeamercolor{description item}{parent=item} + +\setbeamercolor{bibliography item}{parent=item} + +\setbeamercolor{bibliography entry author}{use=structure,fg=structure.fg} +\setbeamercolor{bibliography entry title}{use=normal text,fg=normal text.fg} +\setbeamercolor{bibliography entry location}{use=structure,fg=structure.fg!65!bg} +\setbeamercolor{bibliography entry note}{use=structure,fg=structure.fg!65!bg} + +\setbeamercolor{separation line}{} + +\setbeamercolor{upper separation line head}{parent=separation line} +\setbeamercolor{middle separation line head}{parent=separation line} +\setbeamercolor{lower separation line head}{parent=separation line} + +\setbeamercolor{upper separation line foot}{parent=separation line} +\setbeamercolor{middle separation line foot}{parent=separation line} +\setbeamercolor{lower separation line foot}{parent=separation line} + +\setbeamercolor{abstract}{} +\setbeamercolor{abstract title}{parent=structure} + +\setbeamercolor{verse}{} + +\setbeamercolor{quotation}{} +\setbeamercolor{quote}{parent=quotation} + +\setbeamercolor{page number in head/foot}{fg=fg!50!bg} + +\setbeamercolor{qed symbol}{parent=structure} + +\mode + diff --git a/my_docs/22/lmod_zoom_mtg_2022_08_02/beamercolorthemeTACC16.sty b/my_docs/22/lmod_zoom_mtg_2022_08_02/beamercolorthemeTACC16.sty deleted file mode 120000 index 58415801b..000000000 --- a/my_docs/22/lmod_zoom_mtg_2022_08_02/beamercolorthemeTACC16.sty +++ /dev/null @@ -1 +0,0 @@ -../../beamer/beamercolorthemeTACC16.sty \ No newline at end of file diff --git a/my_docs/22/lmod_zoom_mtg_2022_08_02/beamercolorthemeTACC16.sty b/my_docs/22/lmod_zoom_mtg_2022_08_02/beamercolorthemeTACC16.sty new file mode 100755 index 000000000..779dde91f --- /dev/null +++ b/my_docs/22/lmod_zoom_mtg_2022_08_02/beamercolorthemeTACC16.sty @@ -0,0 +1,192 @@ +% Copyright 2003 by Till Tantau . +% +% This program can be redistributed and/or modified under the terms +% of the GNU Public License, version 2. + +\mode + +\usepackage{textcase,regexpatch} + +\setbeamertemplate{blocks}[rounded][shadow=true] + + +\definecolor{TACCred}{RGB}{180,13,29} +\definecolor{TACCorange}{RGB}{210,104,43} +\definecolor{TACCblue}{RGB}{108, 134, 191} +\definecolor{TACCgreen}{RGB}{23,106,70} + +% I downloaded a gimp color palette from +% http://maururu.net/2007/latex-beamer-color-palette/ +% Which provides rgb values (I think) for several of the +% default beamer themes. You can open this in gimp by +% opening the Palettes dialog, right-clicking anywhere and choosing +% 'Import Palette'. A color in there called 'default added blue' +% appeared to be approximately what I wanted. It had the triple +% of values 141 145 208. If you double-click on this in the +% palette editor it gives you a bunch of information. You can't +% use these values directly to set a color...it just comes out white. +% I think definecolor is expecting something normalized by 255. Yes! + + +%%% +% Set the normal text color +%%% +\setbeamercolor{normal text}{fg=black} %,bg=white} +\setbeamercolor{example text}{fg=TACCgreen} +\setbeamercolor{alerted text}{fg=TACCorange} + + +\setbeamercolor{structure}{fg=black} +%\setbeamercolor{structure}{fg=black} + +\setbeamercolor{background canvas}{parent=normal text} +\setbeamercolor{background}{parent=background canvas} + +\setbeamercolor{palette primary}{use=structure,fg=structure.fg} +\setbeamercolor{palette secondary}{use=structure,fg=structure.fg!75!black} +\setbeamercolor{palette tertiary}{use=structure,fg=structure.fg!50!black} +\setbeamercolor{palette quaternary}{fg=black} + +\setbeamercolor{palette sidebar primary}{use=normal text,fg=normal text.fg} +\setbeamercolor{palette sidebar secondary}{use=structure,fg=structure.fg} +\setbeamercolor{palette sidebar tertiary}{use=normal text,fg=normal text.fg} +\setbeamercolor{palette sidebar quaternary}{use=structure,fg=structure.fg} + +\setbeamercolor{math text}{} +\setbeamercolor{math text inlined}{parent=math text} +\setbeamercolor{math text displayed}{parent=math text} + +\setbeamercolor{normal text in math text}{} + +\setbeamercolor{local structure}{parent=structure} + +\setbeamercolor{titlelike}{parent=structure} + +\setbeamercolor{title}{parent=titlelike} +\setbeamercolor{title in head/foot}{parent=palette quaternary} +\setbeamercolor{title in sidebar}{parent=palette sidebar quaternary} + +\setbeamercolor{subtitle}{parent=title} + +\setbeamercolor{author}{} +\setbeamercolor{author in head/foot}{parent=palette primary} +\setbeamercolor{author in sidebar}{use=palette sidebar tertiary,fg=palette sidebar tertiary.fg} + +\setbeamercolor{institute}{} +\setbeamercolor{institute in head/foot}{parent=palette tertiary} +\setbeamercolor{institute in sidebar}{use=palette sidebar tertiary,fg=palette sidebar tertiary.fg} + +\setbeamercolor{date}{} +\setbeamercolor{date in head/foot}{parent=palette secondary} +\setbeamercolor{date in sidebar}{use=palette sidebar tertiary,fg=palette sidebar tertiary.fg} + +\setbeamercolor{titlegraphic}{} + +\setbeamercolor{part name}{} +\setbeamercolor{part title}{parent=titlelike} + +\setbeamercolor{section in toc}{parent=structure} +\setbeamercolor{section in toc shaded}{parent=section in toc} +\setbeamercolor{section in head/foot}{parent=palette tertiary} +\setbeamercolor{section in sidebar}{parent=palette sidebar secondary} +\setbeamercolor{section in sidebar shaded}{use=section in sidebar,fg=section in sidebar.fg!40!bg} +\setbeamercolor{section number projected}{parent=item projected} + +\setbeamercolor{subsection in toc}{} +\setbeamercolor{subsection in toc shaded}{parent=subsection in toc} +\setbeamercolor{subsection in head/foot}{parent=palette secondary} +\setbeamercolor{subsection in sidebar}{parent=palette sidebar primary} +\setbeamercolor{subsection in sidebar shaded}{use=subsection in sidebar,fg=subsection in sidebar.fg!40!bg} +\setbeamercolor{subsection number projected}{parent={subitem projected}} + +\setbeamercolor{subsubsection in toc}{parent=subsection in toc} +\setbeamercolor{subsubsection in toc shaded}{parent=subsubsection in toc} +\setbeamercolor{subsubsection in head/foot}{parent=subsection in head/foot} +\setbeamercolor{subsubsection in sidebar}{parent=subsection in sidebar} +\setbeamercolor{subsubsection in sidebar shaded}{parent=subsection in sidebar shaded} +\setbeamercolor{subsubsection number projected}{parent=subsubitem projected} + +\setbeamercolor{headline}{} +\setbeamercolor{footline}{} + +\setbeamercolor{sidebar}{} +\setbeamercolor{sidebar left}{parent=sidebar} +\setbeamercolor{sidebar right}{parent=sidebar} + +\setbeamercolor{logo}{parent=palette secondary} + +\setbeamercolor{frametitle}{parent=titlelike} +\setbeamercolor{framesubtitle}{parent=frametitle} + +\setbeamercolor{frametitle right}{parent=frametitle} + +\setbeamercolor{caption}{} +\setbeamercolor{caption name}{parent=structure} + +\setbeamercolor{button}{use=local structure,bg=local structure.fg!50!bg,fg=white} +\setbeamercolor{button border}{use=button,fg=button.bg} +\setbeamercolor{navigation symbols}{use=structure,fg=structure.fg!40!bg} +\setbeamercolor{navigation symbols dimmed}{use=structure,fg=structure.fg!20!bg} +\setbeamercolor{mini frame}{parent=section in head/foot} + +\setbeamercolor{block body}{fg=black} +\setbeamercolor{block body alerted}{fg=black} +\setbeamercolor{block body example}{fg=black} + +\setbeamercolor{block title}{bg=TACCblue,fg=white} +\setbeamercolor{block title alerted}{bg=TACCred,fg=white} +\setbeamercolor{block title example}{bg=TACCgreen,fg=white} + +\setbeamercolor{item}{parent=local structure} +\setbeamercolor{subitem}{parent=item} +\setbeamercolor{subsubitem}{parent=subitem} + +\setbeamercolor{item projected}{parent=item,use=item,fg=black,bg=item.fg} +\setbeamercolor{subitem projected}{parent=item projected} +\setbeamercolor{subsubitem projected}{parent=subitem projected} + +\setbeamercolor{enumerate item}{parent=item} +\setbeamercolor{enumerate subitem}{parent=subitem} +\setbeamercolor{enumerate subsubitem}{parent=subsubitem} + +\setbeamercolor{itemize item}{parent=item} +\setbeamercolor{itemize subitem}{parent=subitem} +\setbeamercolor{itemize subsubitem}{parent=subsubitem} + +\setbeamercolor{itemize/enumerate body}{} +\setbeamercolor{itemize/enumerate subbody}{} +\setbeamercolor{itemize/enumerate subsubbody}{} + +\setbeamercolor{description item}{parent=item} + +\setbeamercolor{bibliography item}{parent=item} + +\setbeamercolor{bibliography entry author}{use=structure,fg=structure.fg} +\setbeamercolor{bibliography entry title}{use=normal text,fg=normal text.fg} +\setbeamercolor{bibliography entry location}{use=structure,fg=structure.fg!65!bg} +\setbeamercolor{bibliography entry note}{use=structure,fg=structure.fg!65!bg} + +\setbeamercolor{separation line}{} + +\setbeamercolor{upper separation line head}{parent=separation line} +\setbeamercolor{middle separation line head}{parent=separation line} +\setbeamercolor{lower separation line head}{parent=separation line} + +\setbeamercolor{upper separation line foot}{parent=separation line} +\setbeamercolor{middle separation line foot}{parent=separation line} +\setbeamercolor{lower separation line foot}{parent=separation line} + +\setbeamercolor{abstract}{} +\setbeamercolor{abstract title}{parent=structure} + +\setbeamercolor{verse}{} + +\setbeamercolor{quotation}{} +\setbeamercolor{quote}{parent=quotation} + +\setbeamercolor{page number in head/foot}{fg=fg!50!bg} + +\setbeamercolor{qed symbol}{parent=structure} + +\mode + diff --git a/my_docs/22/lmod_zoom_mtg_2022_08_02/beamerfontthemeTACC.sty b/my_docs/22/lmod_zoom_mtg_2022_08_02/beamerfontthemeTACC.sty deleted file mode 120000 index 78e971fb8..000000000 --- a/my_docs/22/lmod_zoom_mtg_2022_08_02/beamerfontthemeTACC.sty +++ /dev/null @@ -1 +0,0 @@ -../../beamer/beamerfontthemeTACC.sty \ No newline at end of file diff --git a/my_docs/22/lmod_zoom_mtg_2022_08_02/beamerfontthemeTACC.sty b/my_docs/22/lmod_zoom_mtg_2022_08_02/beamerfontthemeTACC.sty new file mode 100755 index 000000000..ef9ce1e5e --- /dev/null +++ b/my_docs/22/lmod_zoom_mtg_2022_08_02/beamerfontthemeTACC.sty @@ -0,0 +1,12 @@ +% Copyright 2003 by Till Tantau +% +% This program can be redistributed and/or modified under the terms +% of the GNU Public License, version 2. + +\mode + +\setbeamerfont{frametitle}{parent=structure,size=\LARGE,series=\bfseries} +\setbeamerfont{framesubtitle}{parent=frametitle,size=\small} + +\mode + \ No newline at end of file diff --git a/my_docs/22/lmod_zoom_mtg_2022_08_02/beamerfontthemeTACC16.sty b/my_docs/22/lmod_zoom_mtg_2022_08_02/beamerfontthemeTACC16.sty deleted file mode 120000 index a1f2fa5f9..000000000 --- a/my_docs/22/lmod_zoom_mtg_2022_08_02/beamerfontthemeTACC16.sty +++ /dev/null @@ -1 +0,0 @@ -../../beamer/beamerfontthemeTACC16.sty \ No newline at end of file diff --git a/my_docs/22/lmod_zoom_mtg_2022_08_02/beamerfontthemeTACC16.sty b/my_docs/22/lmod_zoom_mtg_2022_08_02/beamerfontthemeTACC16.sty new file mode 100755 index 000000000..b65271835 --- /dev/null +++ b/my_docs/22/lmod_zoom_mtg_2022_08_02/beamerfontthemeTACC16.sty @@ -0,0 +1,21 @@ +% Copyright 2003 by Till Tantau +% +% This program can be redistributed and/or modified under the terms +% of the GNU Public License, version 2. + +\mode +\setbeamerfont{title}{parent=structure,size=\LARGE,series=\bfseries} +\setbeamerfont{author}{parent=structure,size=\large, series=\normalfont} +\setbeamerfont{frametitle}{parent=structure,size=\LARGE,series=\bfseries} +\setbeamerfont{framesubtitle}{parent=frametitle,size=\small} + +%\usefonttheme{professionalfonts} % using non standard fonts for beamer +%\usefonttheme{serif} % default family is serif +%\usepackage{fontspec} +%\setmainfont{Century Gothic} + +\usepackage{fontspec} +\usepackage{libertine} + +\mode + diff --git a/my_docs/22/lmod_zoom_mtg_2022_08_02/beamerinnerthemeTACC.sty b/my_docs/22/lmod_zoom_mtg_2022_08_02/beamerinnerthemeTACC.sty deleted file mode 120000 index 8d5ae3921..000000000 --- a/my_docs/22/lmod_zoom_mtg_2022_08_02/beamerinnerthemeTACC.sty +++ /dev/null @@ -1 +0,0 @@ -../../beamer/beamerinnerthemeTACC.sty \ No newline at end of file diff --git a/my_docs/22/lmod_zoom_mtg_2022_08_02/beamerinnerthemeTACC.sty b/my_docs/22/lmod_zoom_mtg_2022_08_02/beamerinnerthemeTACC.sty new file mode 100755 index 000000000..29e2bce81 --- /dev/null +++ b/my_docs/22/lmod_zoom_mtg_2022_08_02/beamerinnerthemeTACC.sty @@ -0,0 +1,11 @@ +\mode + +\setbeamertemplate{itemize item}[circle] +\setbeamertemplate{itemize subitem}{{}--{}} +\setbeamertemplate{itemize subsubitem}[circle] +\setbeamertemplate{section in toc}{$\bullet$\hskip.5em\inserttocsection} +%\setbeamertemplate{subsection in toc}{} +\setbeamertemplate{subsubsection in toc}{} + +\mode + diff --git a/my_docs/22/lmod_zoom_mtg_2022_08_02/beamerinnerthemeTACC16.sty b/my_docs/22/lmod_zoom_mtg_2022_08_02/beamerinnerthemeTACC16.sty deleted file mode 120000 index 5955acc99..000000000 --- a/my_docs/22/lmod_zoom_mtg_2022_08_02/beamerinnerthemeTACC16.sty +++ /dev/null @@ -1 +0,0 @@ -../../beamer/beamerinnerthemeTACC16.sty \ No newline at end of file diff --git a/my_docs/22/lmod_zoom_mtg_2022_08_02/beamerinnerthemeTACC16.sty b/my_docs/22/lmod_zoom_mtg_2022_08_02/beamerinnerthemeTACC16.sty new file mode 100755 index 000000000..f7f454e1d --- /dev/null +++ b/my_docs/22/lmod_zoom_mtg_2022_08_02/beamerinnerthemeTACC16.sty @@ -0,0 +1,11 @@ +\mode + +\setbeamertemplate{itemize item}[triangle] +\setbeamertemplate{itemize subitem}[triangle] +\setbeamertemplate{itemize subsubitem}[triangle] +\setbeamertemplate{section in toc}{$\bullet$\hskip.5em\inserttocsection} +%\setbeamertemplate{subsection in toc}{} +\setbeamertemplate{subsubsection in toc}{} + +\mode + diff --git a/my_docs/22/lmod_zoom_mtg_2022_08_02/beamerouterthemeTACC.sty b/my_docs/22/lmod_zoom_mtg_2022_08_02/beamerouterthemeTACC.sty deleted file mode 120000 index da0a45d33..000000000 --- a/my_docs/22/lmod_zoom_mtg_2022_08_02/beamerouterthemeTACC.sty +++ /dev/null @@ -1 +0,0 @@ -../../beamer/beamerouterthemeTACC.sty \ No newline at end of file diff --git a/my_docs/22/lmod_zoom_mtg_2022_08_02/beamerouterthemeTACC.sty b/my_docs/22/lmod_zoom_mtg_2022_08_02/beamerouterthemeTACC.sty new file mode 100755 index 000000000..038580303 --- /dev/null +++ b/my_docs/22/lmod_zoom_mtg_2022_08_02/beamerouterthemeTACC.sty @@ -0,0 +1,196 @@ +% Copyright 2003 by Till Tantau +% +% This program can be redistributed and/or modified under the terms +% of the GNU Public License, version 2. + +\mode + +\setbeamertemplate{frametitle}[default][center] +\addtobeamertemplate{frametitle}{\vskip 4ex minus 4ex}{} + +% Here we define what appears at the bottom of each slide: the "footline". +\setbeamertemplate{footline}{% + \leavevmode% + + % Horizontal line dividing the rest of the slide from the footer? + % hrule goes all the way across... + % \hrule height.3pt% + % With \rule, you can specify the thickness + % \rule[raise-height]{width}{thickness} + \hspace{.025\textwidth}\rule{.95\textwidth}{.5pt} + + \hbox{% + % On the left half of the footer, insert the TACC logo + \begin{minipage}{.5\textwidth}% + \hskip .033\textwidth%Give horizontal space else this will set on the left edge of the slide! + % TACC logo with custom viewport! + \includegraphics[viewport=1 -1 135 35, clip=true, width=.4\textwidth]{figures/TACC_logo} + \end{minipage} + % + \begin{minipage}{.5\textwidth}% + \vskip .023\textheight% + \raggedleft% + \setlength{\rightskip}{.033\textwidth} + % + % If we are not on the first page, insert a page number + % For some reason, insertframenumber is buggy when you have fragile + % slides with verbatim environments in them... it tends to skip numbers + % for some reason! On the other hand, the pagenumber is incremented + % for *every* slide, including transition slides... + \ifnum \thepage>1 + % \insertshorttitle + \insertframenumber + % \insertframenumber/\inserttotalframenumber + % \insertpagenumber + \else % Do a phantom of whatever you do on other pages, so spacing matches + %$\phantom{\insertshorttitle}$ + $\phantom{\insertframenumber}$ + %$\phantom{\insertframenumber/\inserttotalframenumber}$ + %$\phantom{\insertpagenumber}$ + \fi + \hfill\includegraphics[width=.5\textwidth]{figures/UT_logo}% + \end{minipage}% + }% + \vskip .023\textheight% +} + + + + +\ifTACCheadernav + +\usesectionheadtemplate +{\hfill\insertsectionhead} +{\hfill\color{fg!50!bg}\insertsectionhead} + +% Head +\ifbeamer@compress + +% Here we define how the top of the frame looks, the "headline". +\setbeamertemplate{headline} +{% + \ifnum \thepage>1 + \leavevmode% + \begin{beamercolorbox}[wd=.5\paperwidth,ht=2.5ex,dp=1.125ex]{% + section in head/foot}% + \insertsectionnavigationhorizontal{.5\paperwidth}{\hskip0pt plus1filll}{}% + \end{beamercolorbox}% + \begin{beamercolorbox}[wd=.5\paperwidth,ht=2.5ex,dp=1.125ex]{% + subsection in head/foot}% + \insertsubsectionnavigationhorizontal{% + .5\paperwidth}{}{\hskip0pt plus1filll}% + \end{beamercolorbox}% + \fi %\thepage>1 +} + +\else% Not compressed + +\setbeamertemplate{headline} +{% + \ifnum \thepage>1 + \leavevmode% + \@tempdimb=2.4375ex% + \ifnum\beamer@subsectionmax<\beamer@sectionmax% + \multiply\@tempdimb by\beamer@sectionmax% + \else% + \multiply\@tempdimb by\beamer@subsectionmax% + \fi% + \ifdim\@tempdimb>0pt% + \advance\@tempdimb by 1.125ex% + \begin{beamercolorbox}[wd=.5\paperwidth,ht=\@tempdimb]{% + section in head/foot}% + \vbox to\@tempdimb{\vfil\insertsectionnavigation{.5\paperwidth}\vfil}% + \end{beamercolorbox}% + \begin{beamercolorbox}[wd=.5\paperwidth,ht=\@tempdimb]{% + subsection in head/foot}% + \vbox to\@tempdimb{\vfil\insertsubsectionnavigation{.5\paperwidth}\vfil}% + \end{beamercolorbox}% + \fi% + \fi % \thepage>1 +} + +\fi % end if compressed +\fi % TACCheadernav + + +\ifTACCheadertree + +\setbeamertemplate{headline} +{ + \begin{beamercolorbox}[wd=\paperwidth,colsep=1.5pt + ]{upper separation line head} + \end{beamercolorbox} + % + % Place short title + % + \begin{beamercolorbox}[wd=\paperwidth,ht=2.5ex,dp=1.125ex,% + leftskip=.3cm,rightskip=.3cm plus1fil]{title in head/foot} + \usebeamerfont{title in head/foot}\insertshorttitle + \end{beamercolorbox} + + % + % Place section + % + \begin{beamercolorbox}[wd=\paperwidth,ht=2.5ex,dp=1.125ex,% + leftskip=.3cm,rightskip=.3cm plus1fil]{section in head/foot} + \usebeamerfont{section in head/foot}% + %\ifbeamer@tree@showhooks + \setbox\beamer@tempbox=\hbox{\insertsectionhead}% + \ifdim\wd\beamer@tempbox>1pt% + \hskip2pt\raise1.9pt\hbox{\vrule width0.4pt height1.875ex\vrule width 5pt height0.4pt}% + \hskip1pt% + \fi% \ifdim + %\else% + %\hskip6pt% + %\fi% \ifbeamer + \insertsectionhead + \end{beamercolorbox} + +% +% Place subsection +% +\begin{beamercolorbox}[wd=\paperwidth,ht=2.5ex,dp=1.125ex,% + leftskip=.3cm,rightskip=.3cm plus1fil]{subsection in head/foot} + \usebeamerfont{subsection in head/foot}% + %\ifbeamer@tree@showhooks + \setbox\beamer@tempbox=\hbox{\insertsubsectionhead}% + \ifdim\wd\beamer@tempbox>1pt% + \hskip9.4pt\raise1.9pt\hbox{\vrule width0.4pt height1.875ex\vrule width 5pt height0.4pt}% + \hskip1pt% + \fi% \ifdim + %\else% + %\hskip12pt% + %\fi% \ifbeamer + \insertsubsectionhead +\end{beamercolorbox} + +% +% Place final separation box +% + \begin{beamercolorbox}[wd=\paperwidth,colsep=1.5pt + ]{lower separation line head} + \end{beamercolorbox} + + % + % Another matching rule which helps to frame the content + % + \hspace{.025\textwidth}\rule{.95\textwidth}{.5pt} +} +\fi % TACCheadertree + + +% The following command suppresses all navigation symbols. This is +% necessary in the TACC theme, since it overlaps where we want the +% logo to be. +\setbeamertemplate{navigation symbols}{} + +% Align the navigation symbols vertically (still overlaps our logo!) +%\setbeamertemplate{navigation symbols}[vertical]{} + +% Only places the slide-forward and slide-back symbol, but yes, +% this still overlaps our logo! +%\setbeamertemplate{navigation symbols}[only frame symbol]{} + + +\mode + diff --git a/my_docs/22/lmod_zoom_mtg_2022_08_02/beamerouterthemeTACC16.sty b/my_docs/22/lmod_zoom_mtg_2022_08_02/beamerouterthemeTACC16.sty deleted file mode 120000 index 54bd09537..000000000 --- a/my_docs/22/lmod_zoom_mtg_2022_08_02/beamerouterthemeTACC16.sty +++ /dev/null @@ -1 +0,0 @@ -../../beamer/beamerouterthemeTACC16.sty \ No newline at end of file diff --git a/my_docs/22/lmod_zoom_mtg_2022_08_02/beamerouterthemeTACC16.sty b/my_docs/22/lmod_zoom_mtg_2022_08_02/beamerouterthemeTACC16.sty new file mode 100755 index 000000000..d5e6388c7 --- /dev/null +++ b/my_docs/22/lmod_zoom_mtg_2022_08_02/beamerouterthemeTACC16.sty @@ -0,0 +1,312 @@ +% Antonio Gomez (agomez@tacc.utexas.edu) +% 4-20-17. Added option to put the footer on the right side + + + +\mode + +\usepackage{xcolor} +\usepackage{graphicx} +\usepackage{etoolbox} + + + +% This theme accepts the "rightfooter" option +% When used, it will put the TACC logo at the bottom of the slide on the right side +% By default, it goes to the left + +\xifaspectratio{ + {169} { + \pgfdeclareimage[width=\paperwidth]{titlebackground}{./figures/master169.jpg} + \if@rightfooterOption + \pgfdeclareimage[width=\paperwidth]{background}{./figures/secondary_right169.jpg} +\else + \pgfdeclareimage[width=\paperwidth]{background}{./figures/secondary169.jpg} +\fi +} +}[ +\pgfdeclareimage[width=\paperwidth]{titlebackground}{./figures/master.jpg} + \if@rightfooterOption + \pgfdeclareimage[width=\paperwidth]{background}{./figures/secondary_right.jpg} +\else + \pgfdeclareimage[width=\paperwidth]{background}{./figures/secondary.jpg} +\fi +] + +\setbeamertemplate{background canvas}{% +\xifaspectratio{ + {169} { + \ifnum\c@framenumber=1 % + \begin{picture}(0,0) + \put(-3,-256){% + \pgfuseimage{titlebackground} + } + \end{picture} + \else% + \begin{picture}(0,0) + \put(-3,-260){% + \pgfuseimage{background} + } + \end{picture} + \fi + } + {43} { + \ifnum\c@framenumber=1 % + \begin{picture}(0,0) + \put(-4,-274){% + \pgfuseimage{titlebackground} + } + \end{picture} + \else% + \begin{picture}(0,0) + \put(-4,-274){% + \pgfuseimage{background} + } + \end{picture} + \fi + } +} +} + + + +%\setbeamertemplate{background canvas}{% +% % On title page +% \ifnum\c@framenumber=1 % +% \begin{picture}(0,0) +% \put(0,-253){% +% \pgfuseimage{titlebackground} +% } +% \end{picture} +% +% \else% +% \xifaspectratio{ +% {169} { +% % Other frames background +% \begin{picture}(0,0) +% \put(-4,-260){% +% \pgfuseimage{background} +% } +% \end{picture} +% } +% }[ +% % Other frames background +% \begin{picture}(0,0) +% \put(-4,-274){% +% \pgfuseimage{background} +% } +% \end{picture} +% ] +% \fi% +%} + + +\setbeamertemplate{title page}{ +\vspace{40pt} +\begin{center} +\usebeamerfont{title} {\huge \inserttitle}\par +\vspace{4ex} +\usebeamerfont{author} { + \insertauthor +}\par +\vspace{2ex} +\usebeamerfont{institute}{ + \insertinstitute +} \par +\vspace{2ex} +\usebeamerfont{date}{ + \insertdate +} +\end{center} +} + + +\setbeamertemplate{frametitle}[default][center] +\setbeamertemplate{frametitle}{ + \makeatletter + \regexpatchcmd{\insertframetitle} + {(\c{usebeamertemplate}.*)\c{fi}} + {\c{NoCaseChange}\cB\{\1\cE\}\c{fi}} + {}{}% + \makeatother + \vskip1ex + \insertframetitle +} + +% Here we define what appears at the bottom of each slide: the "footline". +\setbeamertemplate{footline}{% + \leavevmode% + + % Horizontal line dividing the rest of the slide from the footer? + % hrule goes all the way across... + % \hrule height.3pt% + % With \rule, you can specify the thickness + % \rule[raise-height]{width}{thickness} + % \hspace{.025\textwidth}\rule{.95\textwidth}{.5pt} + + \hbox{% + \ifnum \thepage>1 + \if@rightfooterOption + \begin{minipage}{.2\textwidth}% + \hskip .05\textwidth%Give horizontal space else this will set on the left edge of the slide! + \end{minipage} + \else + \begin{minipage}{.4\textwidth}% + \hskip .05\textwidth%Give horizontal space else this will set on the left edge of the slide! + \end{minipage} + \fi + + + \begin{minipage}{\textwidth}% + % \vskip .023\textheight% + \raggedleft% + \setlength{\rightskip}{\textwidth} + \if@rightfooterOption + \hbox{% + \begin{beamercolorbox}[wd=0.7\textwidth,ht=2.25ex,dp=1ex,left]{author in head/foot}% + \insertshorttitle{} \hskip .01\textwidth | \hskip .01\textwidth \insertdate{} \hskip .01\textwidth | \hskip .01\textwidth \insertframenumber{} + \end{beamercolorbox}% + } + \else + \hbox{% + \begin{beamercolorbox}[wd=0.5\textwidth,ht=2.25ex,dp=1ex,left]{author in head/foot}% + \insertshorttitle{} \hskip .01\textwidth | \hskip .01\textwidth \insertdate{} \hskip .01\textwidth | \hskip .01\textwidth \insertframenumber{} + \end{beamercolorbox}% + } + \fi + + \end{minipage}% + \begin{minipage}{.05\textwidth}% + \end{minipage}% + \fi %\thepage>1 + }% + \vskip .023\textheight% + +} + + + + +\ifTACCheadernav + +\usesectionheadtemplate +{\hfill\insertsectionhead} +{\hfill\color{fg!50!bg}\insertsectionhead} + +% Head +\ifbeamer@compress + +% Here we define how the top of the frame looks, the "headline". +\setbeamertemplate{headline} +{% + \ifnum \thepage>1 + \leavevmode% + \begin{beamercolorbox}[wd=.5\paperwidth,ht=2.5ex,dp=1.125ex]{% + section in head/foot}% + \insertsectionnavigationhorizontal{.5\paperwidth}{\hskip0pt plus1filll}{}% + \end{beamercolorbox}% + \begin{beamercolorbox}[wd=.5\paperwidth,ht=2.5ex,dp=1.125ex]{% + subsection in head/foot}% + \insertsubsectionnavigationhorizontal{% + .5\paperwidth}{}{\hskip0pt plus1filll}% + \end{beamercolorbox}% + \fi %\thepage>1 +} + +\else% Not compressed + +\setbeamertemplate{headline} +{% + \ifnum \thepage>1 + \leavevmode% + \@tempdimb=2.4375ex% + \ifnum\beamer@subsectionmax<\beamer@sectionmax% + \multiply\@tempdimb by\beamer@sectionmax% + \else% + \multiply\@tempdimb by\beamer@subsectionmax% + \fi% + \ifdim\@tempdimb>0pt% + \advance\@tempdimb by 1.125ex% + \begin{beamercolorbox}[wd=.5\paperwidth,ht=\@tempdimb]{% + section in head/foot}% + \vbox to\@tempdimb{\vfil\insertsectionnavigation{.5\paperwidth}\vfil}% + \end{beamercolorbox}% + \begin{beamercolorbox}[wd=.5\paperwidth,ht=\@tempdimb]{% + subsection in head/foot}% + \vbox to\@tempdimb{\vfil\insertsubsectionnavigation{.5\paperwidth}\vfil}% + \end{beamercolorbox}% + \fi% + \fi % \thepage>1 +} + +\fi % end if compressed +\fi % TACCheadernav + + +\ifTACCheadertree + +\setbeamertemplate{headline} +{ + \begin{beamercolorbox}[wd=\paperwidth,colsep=1.5pt]{upper separation line head} + \end{beamercolorbox} + % + % Place short title + % + \begin{beamercolorbox}[wd=\paperwidth,ht=2.5ex,dp=1.125ex,% + leftskip=.3cm,rightskip=.3cm plus1fil]{title in head/foot} + \usebeamerfont{title in head/foot}\insertshorttitle + \end{beamercolorbox} + + % + % Place section + % + \begin{beamercolorbox}[wd=\paperwidth,ht=2.5ex,dp=1.125ex,% + leftskip=.3cm,rightskip=.3cm plus1fil]{section in head/foot} + \usebeamerfont{section in head/foot}% + %\ifbeamer@tree@showhooks + \setbox\beamer@tempbox=\hbox{\insertsectionhead}% + \ifdim\wd\beamer@tempbox>1pt% + \hskip2pt\raise1.9pt\hbox{\vrule width0.4pt height1.875ex\vrule width 5pt height0.4pt}% + \hskip1pt% + \fi + \insertsectionhead + \end{beamercolorbox} + +% +% Place subsection +% +\begin{beamercolorbox}[wd=\paperwidth,ht=2.5ex,dp=1.125ex,% + leftskip=.3cm,rightskip=.3cm plus1fil]{subsection in head/foot} + \usebeamerfont{subsection in head/foot}% + %\ifbeamer@tree@showhooks + \setbox\beamer@tempbox=\hbox{\insertsubsectionhead}% + \ifdim\wd\beamer@tempbox>1pt% + \hskip9.4pt\raise1.9pt\hbox{\vrule width0.4pt height1.875ex\vrule width 5pt height0.4pt}% + \hskip1pt% + \fi + \insertsubsectionhead +\end{beamercolorbox} + +% +% Place final separation box +% + \begin{beamercolorbox}[wd=\paperwidth,colsep=1.5pt + ]{lower separation line head} + \end{beamercolorbox} + + % + % Another matching rule which helps to frame the content + % + \hspace{.025\textwidth}\rule{.95\textwidth}{.5pt} +} +\fi % TACCheadertree + + +% The following command suppresses all navigation symbols. This is +% necessary in the TACC theme, since it overlaps where we want the +% logo to be. +\setbeamertemplate{navigation symbols}{} + + +\mode + diff --git a/my_docs/22/lmod_zoom_mtg_2022_08_02/beamerthemeTACC.sty b/my_docs/22/lmod_zoom_mtg_2022_08_02/beamerthemeTACC.sty deleted file mode 120000 index 5c339abd4..000000000 --- a/my_docs/22/lmod_zoom_mtg_2022_08_02/beamerthemeTACC.sty +++ /dev/null @@ -1 +0,0 @@ -../../beamer/beamerthemeTACC.sty \ No newline at end of file diff --git a/my_docs/22/lmod_zoom_mtg_2022_08_02/beamerthemeTACC.sty b/my_docs/22/lmod_zoom_mtg_2022_08_02/beamerthemeTACC.sty new file mode 100755 index 000000000..c6a1b1269 --- /dev/null +++ b/my_docs/22/lmod_zoom_mtg_2022_08_02/beamerthemeTACC.sty @@ -0,0 +1,26 @@ +%% TACC theme for beamer + +\newif\ifTACCheadernav +\DeclareOption{headernav}{\global\TACCheadernavtrue} + +\newif\ifTACCheadertree +\DeclareOption{headertree}{\global\TACCheadertreetrue} +\ProcessOptions + +\mode + +\usefonttheme{TACC} +\usecolortheme{TACC} +\useinnertheme{TACC} +\useoutertheme{TACC} + +\mode + + +\newcommand{\event}[1]{% + \makeatletter% + \def\TACC@eventname{#1}% + \makeatother} + +\newcommand{\sectionframe}[1]{\section{#1}\frame{\Large\textbf{#1}}} +\newcommand{\subsectionframe}[1]{\subsection{#1}\frame{\large\textbf{#1}}} diff --git a/my_docs/22/lmod_zoom_mtg_2022_08_02/beamerthemeTACC16.sty b/my_docs/22/lmod_zoom_mtg_2022_08_02/beamerthemeTACC16.sty deleted file mode 120000 index 7a9d4d296..000000000 --- a/my_docs/22/lmod_zoom_mtg_2022_08_02/beamerthemeTACC16.sty +++ /dev/null @@ -1 +0,0 @@ -../../beamer/beamerthemeTACC16.sty \ No newline at end of file diff --git a/my_docs/22/lmod_zoom_mtg_2022_08_02/beamerthemeTACC16.sty b/my_docs/22/lmod_zoom_mtg_2022_08_02/beamerthemeTACC16.sty new file mode 100755 index 000000000..b522d0207 --- /dev/null +++ b/my_docs/22/lmod_zoom_mtg_2022_08_02/beamerthemeTACC16.sty @@ -0,0 +1,61 @@ +%% TACC theme for beamer + + +\newif\if@rightfooterOption +\@rightfooterOptionfalse +\DeclareOption{rightfooter}{\@rightfooterOptiontrue} +\ProcessOptions + + +\newif\ifTACCheadernav +\DeclareOption{headernav}{\global\TACCheadernavtrue} + +\newif\ifTACCheadertree +\DeclareOption{headertree}{\global\TACCheadertreetrue} +\ProcessOptions + +\usepackage{xparse} +\ExplSyntaxOn +\NewDocumentCommand{\ifaspectratio}{mmm} + { + % Recover the option from those passed to the class + \keys_set:nf { zunbeltz/beameroptions } { \use:c { opt@beamer.cls } } + \str_if_eq:nVTF { #1 } \l_zunbeltz_aspectratio_tl { #2 } { #3 } + } +\NewDocumentCommand{\xifaspectratio}{mO{}} + { + % Recover the option from those passed to the class + \keys_set:nf { zunbeltz/beameroptions } { \use:c { opt@beamer.cls } } + \str_case:VnF \l_zunbeltz_aspectratio_tl { #1 } { #2 } + } +% We need to define only one key, the other are treated as `unknown' +\keys_define:nn { zunbeltz/beameroptions } + { + aspectratio .tl_set:N = \l_zunbeltz_aspectratio_tl, + aspectratio .initial:n = 43, + unknown .code:n = {}, + } + +% Generate the variants we need +\cs_generate_variant:Nn \keys_set:nn { nf } +\cs_generate_variant:Nn \str_if_eq:nnTF { nV } +\cs_generate_variant:Nn \str_case:nnF { V } +\ExplSyntaxOff + +\mode + +\usefonttheme{TACC16} +\useinnertheme{TACC16} +\useoutertheme{TACC16} +\usecolortheme{TACC16} + +\mode + + +\newcommand{\event}[1]{% + \makeatletter% + \def\TACC@eventname{#1}% + \makeatother} + +\newcommand{\sectionframe}[1]{\section{#1}\frame{\Large\textbf{#1}}} +\newcommand{\subsectionframe}[1]{\subsection{#1}\frame{\large\textbf{#1}}} diff --git a/my_docs/22/lmod_zoom_mtg_2022_08_02/figures b/my_docs/22/lmod_zoom_mtg_2022_08_02/figures deleted file mode 120000 index ddafd8974..000000000 --- a/my_docs/22/lmod_zoom_mtg_2022_08_02/figures +++ /dev/null @@ -1 +0,0 @@ -../../beamer/figures \ No newline at end of file diff --git a/my_docs/22/lmod_zoom_mtg_2022_08_02/figures/TACC_logo.pdf b/my_docs/22/lmod_zoom_mtg_2022_08_02/figures/TACC_logo.pdf new file mode 100755 index 000000000..c018a20cb Binary files /dev/null and b/my_docs/22/lmod_zoom_mtg_2022_08_02/figures/TACC_logo.pdf differ diff --git a/my_docs/22/lmod_zoom_mtg_2022_08_02/figures/UT_logo.pdf b/my_docs/22/lmod_zoom_mtg_2022_08_02/figures/UT_logo.pdf new file mode 100755 index 000000000..d5b42e752 Binary files /dev/null and b/my_docs/22/lmod_zoom_mtg_2022_08_02/figures/UT_logo.pdf differ diff --git a/my_docs/22/lmod_zoom_mtg_2022_08_02/figures/cc.png b/my_docs/22/lmod_zoom_mtg_2022_08_02/figures/cc.png new file mode 100644 index 000000000..8a532ff8f Binary files /dev/null and b/my_docs/22/lmod_zoom_mtg_2022_08_02/figures/cc.png differ diff --git a/my_docs/22/lmod_zoom_mtg_2022_08_02/figures/isa.png b/my_docs/22/lmod_zoom_mtg_2022_08_02/figures/isa.png new file mode 100644 index 000000000..f95d985e7 Binary files /dev/null and b/my_docs/22/lmod_zoom_mtg_2022_08_02/figures/isa.png differ diff --git a/my_docs/22/lmod_zoom_mtg_2022_08_02/figures/master.jpg b/my_docs/22/lmod_zoom_mtg_2022_08_02/figures/master.jpg new file mode 100644 index 000000000..f5c56c04a Binary files /dev/null and b/my_docs/22/lmod_zoom_mtg_2022_08_02/figures/master.jpg differ diff --git a/my_docs/22/lmod_zoom_mtg_2022_08_02/figures/master169.jpg b/my_docs/22/lmod_zoom_mtg_2022_08_02/figures/master169.jpg new file mode 100644 index 000000000..b215776eb Binary files /dev/null and b/my_docs/22/lmod_zoom_mtg_2022_08_02/figures/master169.jpg differ diff --git a/my_docs/22/lmod_zoom_mtg_2022_08_02/figures/master169.png b/my_docs/22/lmod_zoom_mtg_2022_08_02/figures/master169.png new file mode 100644 index 000000000..bc5c0ed12 Binary files /dev/null and b/my_docs/22/lmod_zoom_mtg_2022_08_02/figures/master169.png differ diff --git a/my_docs/22/lmod_zoom_mtg_2022_08_02/figures/secondary.jpg b/my_docs/22/lmod_zoom_mtg_2022_08_02/figures/secondary.jpg new file mode 100644 index 000000000..d905a95c9 Binary files /dev/null and b/my_docs/22/lmod_zoom_mtg_2022_08_02/figures/secondary.jpg differ diff --git a/my_docs/22/lmod_zoom_mtg_2022_08_02/figures/secondary169.jpg b/my_docs/22/lmod_zoom_mtg_2022_08_02/figures/secondary169.jpg new file mode 100644 index 000000000..4eb017957 Binary files /dev/null and b/my_docs/22/lmod_zoom_mtg_2022_08_02/figures/secondary169.jpg differ diff --git a/my_docs/22/lmod_zoom_mtg_2022_08_02/figures/secondary169.png b/my_docs/22/lmod_zoom_mtg_2022_08_02/figures/secondary169.png new file mode 100644 index 000000000..cb9060a56 Binary files /dev/null and b/my_docs/22/lmod_zoom_mtg_2022_08_02/figures/secondary169.png differ diff --git a/my_docs/22/lmod_zoom_mtg_2022_08_02/figures/secondary_right.jpg b/my_docs/22/lmod_zoom_mtg_2022_08_02/figures/secondary_right.jpg new file mode 100644 index 000000000..f25f93a58 Binary files /dev/null and b/my_docs/22/lmod_zoom_mtg_2022_08_02/figures/secondary_right.jpg differ diff --git a/my_docs/22/lmod_zoom_mtg_2022_08_02/figures/secondary_right169.jpg b/my_docs/22/lmod_zoom_mtg_2022_08_02/figures/secondary_right169.jpg new file mode 100644 index 000000000..567a1078f Binary files /dev/null and b/my_docs/22/lmod_zoom_mtg_2022_08_02/figures/secondary_right169.jpg differ diff --git a/my_docs/22/lmod_zoom_mtg_2022_08_02/themes b/my_docs/22/lmod_zoom_mtg_2022_08_02/themes deleted file mode 120000 index a98530730..000000000 --- a/my_docs/22/lmod_zoom_mtg_2022_08_02/themes +++ /dev/null @@ -1 +0,0 @@ -../../beamer/themes \ No newline at end of file diff --git a/my_docs/22/lmod_zoom_mtg_2022_08_02/themes/beamercolorthemeTACC16.sty b/my_docs/22/lmod_zoom_mtg_2022_08_02/themes/beamercolorthemeTACC16.sty new file mode 100644 index 000000000..248ae8cb6 --- /dev/null +++ b/my_docs/22/lmod_zoom_mtg_2022_08_02/themes/beamercolorthemeTACC16.sty @@ -0,0 +1,193 @@ +% Copyright 2003 by Till Tantau . +% +% This program can be redistributed and/or modified under the terms +% of the GNU Public License, version 2. + +\mode + +\usepackage{textcase,regexpatch} + +\setbeamertemplate{blocks}[rounded][shadow=true] + + +\definecolor{TACCred}{RGB}{180,13,29} +\definecolor{TACCorange}{RGB}{210,104,43} +\definecolor{TACCblue}{RGB}{21,77,122} +%\definecolor{TACCgreen}{RGB}{30,134,104} +\definecolor{TACCgreen}{RGB}{49,168,51} + +% I downloaded a gimp color palette from +% http://maururu.net/2007/latex-beamer-color-palette/ +% Which provides rgb values (I think) for several of the +% default beamer themes. You can open this in gimp by +% opening the Palettes dialog, right-clicking anywhere and choosing +% 'Import Palette'. A color in there called 'default added blue' +% appeared to be approximately what I wanted. It had the triple +% of values 141 145 208. If you double-click on this in the +% palette editor it gives you a bunch of information. You can't +% use these values directly to set a color...it just comes out white. +% I think definecolor is expecting something normalized by 255. Yes! + + +%%% +% Set the normal text color +%%% +\setbeamercolor{normal text}{fg=black} %,bg=white} +\setbeamercolor{example text}{fg=TACCgreen} +\setbeamercolor{alerted text}{fg=TACCorange} + + +\setbeamercolor{structure}{fg=black} +%\setbeamercolor{structure}{fg=black} + +\setbeamercolor{background canvas}{parent=normal text} +\setbeamercolor{background}{parent=background canvas} + +\setbeamercolor{palette primary}{use=structure,fg=structure.fg} +\setbeamercolor{palette secondary}{use=structure,fg=structure.fg!75!black} +\setbeamercolor{palette tertiary}{use=structure,fg=structure.fg!50!black} +\setbeamercolor{palette quaternary}{fg=black} + +\setbeamercolor{palette sidebar primary}{use=normal text,fg=normal text.fg} +\setbeamercolor{palette sidebar secondary}{use=structure,fg=structure.fg} +\setbeamercolor{palette sidebar tertiary}{use=normal text,fg=normal text.fg} +\setbeamercolor{palette sidebar quaternary}{use=structure,fg=structure.fg} + +\setbeamercolor{math text}{} +\setbeamercolor{math text inlined}{parent=math text} +\setbeamercolor{math text displayed}{parent=math text} + +\setbeamercolor{normal text in math text}{} + +\setbeamercolor{local structure}{parent=structure} + +\setbeamercolor{titlelike}{parent=structure} + +\setbeamercolor{title}{parent=titlelike} +\setbeamercolor{title in head/foot}{parent=palette quaternary} +\setbeamercolor{title in sidebar}{parent=palette sidebar quaternary} + +\setbeamercolor{subtitle}{parent=title} + +\setbeamercolor{author}{} +\setbeamercolor{author in head/foot}{parent=palette primary} +\setbeamercolor{author in sidebar}{use=palette sidebar tertiary,fg=palette sidebar tertiary.fg} + +\setbeamercolor{institute}{} +\setbeamercolor{institute in head/foot}{parent=palette tertiary} +\setbeamercolor{institute in sidebar}{use=palette sidebar tertiary,fg=palette sidebar tertiary.fg} + +\setbeamercolor{date}{} +\setbeamercolor{date in head/foot}{parent=palette secondary} +\setbeamercolor{date in sidebar}{use=palette sidebar tertiary,fg=palette sidebar tertiary.fg} + +\setbeamercolor{titlegraphic}{} + +\setbeamercolor{part name}{} +\setbeamercolor{part title}{parent=titlelike} + +\setbeamercolor{section in toc}{parent=structure} +\setbeamercolor{section in toc shaded}{parent=section in toc} +\setbeamercolor{section in head/foot}{parent=palette tertiary} +\setbeamercolor{section in sidebar}{parent=palette sidebar secondary} +\setbeamercolor{section in sidebar shaded}{use=section in sidebar,fg=section in sidebar.fg!40!bg} +\setbeamercolor{section number projected}{parent=item projected} + +\setbeamercolor{subsection in toc}{} +\setbeamercolor{subsection in toc shaded}{parent=subsection in toc} +\setbeamercolor{subsection in head/foot}{parent=palette secondary} +\setbeamercolor{subsection in sidebar}{parent=palette sidebar primary} +\setbeamercolor{subsection in sidebar shaded}{use=subsection in sidebar,fg=subsection in sidebar.fg!40!bg} +\setbeamercolor{subsection number projected}{parent={subitem projected}} + +\setbeamercolor{subsubsection in toc}{parent=subsection in toc} +\setbeamercolor{subsubsection in toc shaded}{parent=subsubsection in toc} +\setbeamercolor{subsubsection in head/foot}{parent=subsection in head/foot} +\setbeamercolor{subsubsection in sidebar}{parent=subsection in sidebar} +\setbeamercolor{subsubsection in sidebar shaded}{parent=subsection in sidebar shaded} +\setbeamercolor{subsubsection number projected}{parent=subsubitem projected} + +\setbeamercolor{headline}{} +\setbeamercolor{footline}{} + +\setbeamercolor{sidebar}{} +\setbeamercolor{sidebar left}{parent=sidebar} +\setbeamercolor{sidebar right}{parent=sidebar} + +\setbeamercolor{logo}{parent=palette secondary} + +\setbeamercolor{frametitle}{parent=titlelike} +\setbeamercolor{framesubtitle}{parent=frametitle} + +\setbeamercolor{frametitle right}{parent=frametitle} + +\setbeamercolor{caption}{} +\setbeamercolor{caption name}{parent=structure} + +\setbeamercolor{button}{use=local structure,bg=local structure.fg!50!bg,fg=white} +\setbeamercolor{button border}{use=button,fg=button.bg} +\setbeamercolor{navigation symbols}{use=structure,fg=structure.fg!40!bg} +\setbeamercolor{navigation symbols dimmed}{use=structure,fg=structure.fg!20!bg} +\setbeamercolor{mini frame}{parent=section in head/foot} + +\setbeamercolor{block body}{fg=black} +\setbeamercolor{block body alerted}{fg=black} +\setbeamercolor{block body example}{fg=black} + +\setbeamercolor{block title}{bg=TACCblue,fg=white} +\setbeamercolor{block title alerted}{bg=TACCred,fg=white} +\setbeamercolor{block title example}{bg=TACCgreen,fg=white} + +\setbeamercolor{item}{parent=local structure} +\setbeamercolor{subitem}{parent=item} +\setbeamercolor{subsubitem}{parent=subitem} + +\setbeamercolor{item projected}{parent=item,use=item,fg=black,bg=item.fg} +\setbeamercolor{subitem projected}{parent=item projected} +\setbeamercolor{subsubitem projected}{parent=subitem projected} + +\setbeamercolor{enumerate item}{parent=item} +\setbeamercolor{enumerate subitem}{parent=subitem} +\setbeamercolor{enumerate subsubitem}{parent=subsubitem} + +\setbeamercolor{itemize item}{parent=item} +\setbeamercolor{itemize subitem}{parent=subitem} +\setbeamercolor{itemize subsubitem}{parent=subsubitem} + +\setbeamercolor{itemize/enumerate body}{} +\setbeamercolor{itemize/enumerate subbody}{} +\setbeamercolor{itemize/enumerate subsubbody}{} + +\setbeamercolor{description item}{parent=item} + +\setbeamercolor{bibliography item}{parent=item} + +\setbeamercolor{bibliography entry author}{use=structure,fg=structure.fg} +\setbeamercolor{bibliography entry title}{use=normal text,fg=normal text.fg} +\setbeamercolor{bibliography entry location}{use=structure,fg=structure.fg!65!bg} +\setbeamercolor{bibliography entry note}{use=structure,fg=structure.fg!65!bg} + +\setbeamercolor{separation line}{} + +\setbeamercolor{upper separation line head}{parent=separation line} +\setbeamercolor{middle separation line head}{parent=separation line} +\setbeamercolor{lower separation line head}{parent=separation line} + +\setbeamercolor{upper separation line foot}{parent=separation line} +\setbeamercolor{middle separation line foot}{parent=separation line} +\setbeamercolor{lower separation line foot}{parent=separation line} + +\setbeamercolor{abstract}{} +\setbeamercolor{abstract title}{parent=structure} + +\setbeamercolor{verse}{} + +\setbeamercolor{quotation}{} +\setbeamercolor{quote}{parent=quotation} + +\setbeamercolor{page number in head/foot}{fg=fg!50!bg} + +\setbeamercolor{qed symbol}{parent=structure} + +\mode + diff --git a/my_docs/22/lmod_zoom_mtg_2022_08_02/themes/beamerfontthemeTACC16.sty b/my_docs/22/lmod_zoom_mtg_2022_08_02/themes/beamerfontthemeTACC16.sty new file mode 100644 index 000000000..d0fc325cc --- /dev/null +++ b/my_docs/22/lmod_zoom_mtg_2022_08_02/themes/beamerfontthemeTACC16.sty @@ -0,0 +1,21 @@ +% Copyright 2003 by Till Tantau +% +% This program can be redistributed and/or modified under the terms +% of the GNU Public License, version 2. + +\mode +\setbeamerfont{title}{parent=structure,size=\LARGE,series=\bfseries} +\setbeamerfont{author}{parent=structure,size=\large, series=\normalfont} +\setbeamerfont{frametitle}{parent=structure,size=\LARGE,series=\bfseries} +\setbeamerfont{framesubtitle}{parent=frametitle,size=\small} + +%\usefonttheme{professionalfonts} % using non standard fonts for beamer +%\usefonttheme{serif} % default family is serif +%\usepackage{fontspec} +%\setmainfont{Century Gothic} + +%\usepackage{fontspec} +\usepackage{libertine} + +\mode + diff --git a/my_docs/22/lmod_zoom_mtg_2022_08_02/themes/beamerinnerthemeTACC16.sty b/my_docs/22/lmod_zoom_mtg_2022_08_02/themes/beamerinnerthemeTACC16.sty new file mode 100644 index 000000000..f7f454e1d --- /dev/null +++ b/my_docs/22/lmod_zoom_mtg_2022_08_02/themes/beamerinnerthemeTACC16.sty @@ -0,0 +1,11 @@ +\mode + +\setbeamertemplate{itemize item}[triangle] +\setbeamertemplate{itemize subitem}[triangle] +\setbeamertemplate{itemize subsubitem}[triangle] +\setbeamertemplate{section in toc}{$\bullet$\hskip.5em\inserttocsection} +%\setbeamertemplate{subsection in toc}{} +\setbeamertemplate{subsubsection in toc}{} + +\mode + diff --git a/my_docs/22/lmod_zoom_mtg_2022_08_02/themes/beamerouterthemeTACC16-169.sty b/my_docs/22/lmod_zoom_mtg_2022_08_02/themes/beamerouterthemeTACC16-169.sty new file mode 100644 index 000000000..c62f9ed04 --- /dev/null +++ b/my_docs/22/lmod_zoom_mtg_2022_08_02/themes/beamerouterthemeTACC16-169.sty @@ -0,0 +1,247 @@ +% Copyright 2003 by Till Tantau +% +% This program can be redistributed and/or modified under the terms +% of the GNU Public License, version 2. + +\mode + +\usepackage{xcolor} +\usepackage{graphicx} +\usepackage{etoolbox} + +\pgfdeclareimage[width=\paperwidth]{titlebackground}{./figures/master169.png} +\pgfdeclareimage[width=\paperwidth]{background}{./figures/secondary169.png} + +\setbeamertemplate{background canvas}{% + \ifnum\c@framenumber=1% + \begin{picture}(0,0) + \put(-0.15,-250){% + \pgfuseimage{titlebackground} + } + %\put(0,-130.7){% + + %\begin{minipage}[b][45mm][t]{\textwidth}%{226mm} + %\begin{center} + % \usebeamerfont{title}{\MakeTextUppercase{\inserttitle}\par} + %\vspace{2ex} + %\usebeamerfont{author}{\insertauthor} + % \end{center} + %\end{minipage} + %} + \end{picture} + % On title page + \else% + % Other frames background + \begin{picture}(0,0) + \put(-0.15,-255.55){% + \pgfuseimage{background} + } + \end{picture} + \fi% +} + + +\setbeamertemplate{title page}{ +\vspace{40pt} +\begin{center} +\usebeamerfont{title} {\huge \inserttitle}\par +\vspace{4ex} +\usebeamerfont{author} { + \insertauthor +}\par +\vspace{2ex} +\usebeamerfont{institute}{ + \insertinstitute +} \par +\vspace{2ex} +\usebeamerfont{date}{ + \insertdate +} +\end{center} +} + + +\setbeamertemplate{frametitle}[default][center] +\setbeamertemplate{frametitle}{ + \makeatletter + \regexpatchcmd{\insertframetitle} + {(\c{usebeamertemplate}.*)\c{fi}} + {\c{NoCaseChange}\cB\{\1\cE\}\c{fi}} + {}{}% + \makeatother + \vskip1ex + \insertframetitle +} + +% Here we define what appears at the bottom of each slide: the "footline". +\setbeamertemplate{footline}{% + \leavevmode% + + % Horizontal line dividing the rest of the slide from the footer? + % hrule goes all the way across... + % \hrule height.3pt% + % With \rule, you can specify the thickness + % \rule[raise-height]{width}{thickness} + % \hspace{.025\textwidth}\rule{.95\textwidth}{.5pt} + + \hbox{% + \ifnum \thepage>1 + % On the left half of the footer, insert the TACC of + \begin{minipage}{.2\textwidth}% + \hskip .05\textwidth%Give horizontal space else this will set on the left edge of the slide! + % \includegraphics[width=.8\textwidth]{TACC_logo.png} + \end{minipage} + + + \begin{minipage}{\textwidth}% + % \vskip .023\textheight% + \raggedleft% + \setlength{\rightskip}{\textwidth} + \hbox{% + \begin{beamercolorbox}[wd=0.7\textwidth,ht=2.25ex,dp=1ex,left]{author in head/foot}% + \insertshorttitle{} \hskip .01\textwidth | \hskip .01\textwidth \insertdate{} \hskip .01\textwidth | \hskip .01\textwidth \insertframenumber{} + \end{beamercolorbox}% + } + + % + % If we are not on the first page, insert a page number + % For some reason, insertframenumber is buggy when you have fragile + % slides with verbatim environments in them... it tends to skip numbers + % for some reason! On the other hand, the pagenumber is incremented + % for *every* slide, including transition slides... + % \hfill\includegraphics[width=\textwidth]{tacc_ut.png} + \end{minipage}% + \begin{minipage}{.05\textwidth}% + \end{minipage}% + \fi %\thepage>1 + }% + \vskip .023\textheight% + +} + + + + +\ifTACCheadernav + +\usesectionheadtemplate +{\hfill\insertsectionhead} +{\hfill\color{fg!50!bg}\insertsectionhead} + +% Head +\ifbeamer@compress + +% Here we define how the top of the frame looks, the "headline". +\setbeamertemplate{headline} +{% + \ifnum \thepage>1 + \leavevmode% + \begin{beamercolorbox}[wd=.5\paperwidth,ht=2.5ex,dp=1.125ex]{% + section in head/foot}% + \insertsectionnavigationhorizontal{.5\paperwidth}{\hskip0pt plus1filll}{}% + \end{beamercolorbox}% + \begin{beamercolorbox}[wd=.5\paperwidth,ht=2.5ex,dp=1.125ex]{% + subsection in head/foot}% + \insertsubsectionnavigationhorizontal{% + .5\paperwidth}{}{\hskip0pt plus1filll}% + \end{beamercolorbox}% + \fi %\thepage>1 +} + +\else% Not compressed + +\setbeamertemplate{headline} +{% + \ifnum \thepage>1 + \leavevmode% + \@tempdimb=2.4375ex% + \ifnum\beamer@subsectionmax<\beamer@sectionmax% + \multiply\@tempdimb by\beamer@sectionmax% + \else% + \multiply\@tempdimb by\beamer@subsectionmax% + \fi% + \ifdim\@tempdimb>0pt% + \advance\@tempdimb by 1.125ex% + \begin{beamercolorbox}[wd=.5\paperwidth,ht=\@tempdimb]{% + section in head/foot}% + \vbox to\@tempdimb{\vfil\insertsectionnavigation{.5\paperwidth}\vfil}% + \end{beamercolorbox}% + \begin{beamercolorbox}[wd=.5\paperwidth,ht=\@tempdimb]{% + subsection in head/foot}% + \vbox to\@tempdimb{\vfil\insertsubsectionnavigation{.5\paperwidth}\vfil}% + \end{beamercolorbox}% + \fi% + \fi % \thepage>1 +} + +\fi % end if compressed +\fi % TACCheadernav + + +\ifTACCheadertree + +\setbeamertemplate{headline} +{ + \begin{beamercolorbox}[wd=\paperwidth,colsep=1.5pt]{upper separation line head} + \end{beamercolorbox} + % + % Place short title + % + \begin{beamercolorbox}[wd=\paperwidth,ht=2.5ex,dp=1.125ex,% + leftskip=.3cm,rightskip=.3cm plus1fil]{title in head/foot} + \usebeamerfont{title in head/foot}\insertshorttitle + \end{beamercolorbox} + + % + % Place section + % + \begin{beamercolorbox}[wd=\paperwidth,ht=2.5ex,dp=1.125ex,% + leftskip=.3cm,rightskip=.3cm plus1fil]{section in head/foot} + \usebeamerfont{section in head/foot}% + %\ifbeamer@tree@showhooks + \setbox\beamer@tempbox=\hbox{\insertsectionhead}% + \ifdim\wd\beamer@tempbox>1pt% + \hskip2pt\raise1.9pt\hbox{\vrule width0.4pt height1.875ex\vrule width 5pt height0.4pt}% + \hskip1pt% + \fi + \insertsectionhead + \end{beamercolorbox} + +% +% Place subsection +% +\begin{beamercolorbox}[wd=\paperwidth,ht=2.5ex,dp=1.125ex,% + leftskip=.3cm,rightskip=.3cm plus1fil]{subsection in head/foot} + \usebeamerfont{subsection in head/foot}% + %\ifbeamer@tree@showhooks + \setbox\beamer@tempbox=\hbox{\insertsubsectionhead}% + \ifdim\wd\beamer@tempbox>1pt% + \hskip9.4pt\raise1.9pt\hbox{\vrule width0.4pt height1.875ex\vrule width 5pt height0.4pt}% + \hskip1pt% + \fi + \insertsubsectionhead +\end{beamercolorbox} + +% +% Place final separation box +% + \begin{beamercolorbox}[wd=\paperwidth,colsep=1.5pt + ]{lower separation line head} + \end{beamercolorbox} + + % + % Another matching rule which helps to frame the content + % + \hspace{.025\textwidth}\rule{.95\textwidth}{.5pt} +} +\fi % TACCheadertree + + +% The following command suppresses all navigation symbols. This is +% necessary in the TACC theme, since it overlaps where we want the +% logo to be. +\setbeamertemplate{navigation symbols}{} + + +\mode + diff --git a/my_docs/22/lmod_zoom_mtg_2022_08_02/themes/beamerouterthemeTACC16.sty b/my_docs/22/lmod_zoom_mtg_2022_08_02/themes/beamerouterthemeTACC16.sty new file mode 100644 index 000000000..c5b178018 --- /dev/null +++ b/my_docs/22/lmod_zoom_mtg_2022_08_02/themes/beamerouterthemeTACC16.sty @@ -0,0 +1,247 @@ +% Copyright 2003 by Till Tantau +% +% This program can be redistributed and/or modified under the terms +% of the GNU Public License, version 2. + +\mode + +\usepackage{xcolor} +\usepackage{graphicx} +\usepackage{etoolbox} + +\pgfdeclareimage[width=\paperwidth]{titlebackground}{master.jpg} +\pgfdeclareimage[width=\paperwidth]{background}{secondary.jpg} + +\setbeamertemplate{background canvas}{% + \ifnum\c@framenumber=1% + \begin{picture}(0,0) + \put(0,-273){% + \pgfuseimage{titlebackground} + } + %\put(0,-130.7){% + + %\begin{minipage}[b][45mm][t]{\textwidth}%{226mm} + %\begin{center} + % \usebeamerfont{title}{\MakeTextUppercase{\inserttitle}\par} + %\vspace{2ex} + %\usebeamerfont{author}{\insertauthor} + % \end{center} + %\end{minipage} + %} + \end{picture} + % On title page + \else% + % Other frames background + \begin{picture}(0,0) + \put(0,-273){% + \pgfuseimage{background} + } + \end{picture} + \fi% +} + + +\setbeamertemplate{title page}{ +\vspace{40pt} +\begin{center} +\usebeamerfont{title} {\huge \inserttitle}\par +\vspace{4ex} +\usebeamerfont{author} { + \insertauthor +}\par +\vspace{2ex} +\usebeamerfont{institute}{ + \insertinstitute +} \par +\vspace{2ex} +\usebeamerfont{date}{ + \insertdate +} +\end{center} +} + + +\setbeamertemplate{frametitle}[default][center] +\setbeamertemplate{frametitle}{ + \makeatletter + \regexpatchcmd{\insertframetitle} + {(\c{usebeamertemplate}.*)\c{fi}} + {\c{NoCaseChange}\cB\{\1\cE\}\c{fi}} + {}{}% + \makeatother + \vskip1ex + \insertframetitle +} + +% Here we define what appears at the bottom of each slide: the "footline". +\setbeamertemplate{footline}{% + \leavevmode% + + % Horizontal line dividing the rest of the slide from the footer? + % hrule goes all the way across... + % \hrule height.3pt% + % With \rule, you can specify the thickness + % \rule[raise-height]{width}{thickness} + % \hspace{.025\textwidth}\rule{.95\textwidth}{.5pt} + + \hbox{% + \ifnum \thepage>1 + % On the left half of the footer, insert the TACC of + \begin{minipage}{.2\textwidth}% + \hskip .05\textwidth%Give horizontal space else this will set on the left edge of the slide! + % \includegraphics[width=.8\textwidth]{figures/TACC_logo.png} + \end{minipage} + + + \begin{minipage}{\textwidth}% + % \vskip .023\textheight% + \raggedleft% + \setlength{\rightskip}{\textwidth} + \hbox{% + \begin{beamercolorbox}[wd=0.7\textwidth,ht=2.25ex,dp=1ex,left]{author in head/foot}% + \insertshorttitle{} \hskip .01\textwidth | \hskip .01\textwidth \insertdate{} \hskip .01\textwidth | \hskip .01\textwidth \insertframenumber{} + \end{beamercolorbox}% + } + + % + % If we are not on the first page, insert a page number + % For some reason, insertframenumber is buggy when you have fragile + % slides with verbatim environments in them... it tends to skip numbers + % for some reason! On the other hand, the pagenumber is incremented + % for *every* slide, including transition slides... + % \hfill\includegraphics[width=\textwidth]{figures/tacc_ut.png} + \end{minipage}% + \begin{minipage}{.05\textwidth}% + \end{minipage}% + \fi %\thepage>1 + }% + \vskip .023\textheight% + +} + + + + +\ifTACCheadernav + +\usesectionheadtemplate +{\hfill\insertsectionhead} +{\hfill\color{fg!50!bg}\insertsectionhead} + +% Head +\ifbeamer@compress + +% Here we define how the top of the frame looks, the "headline". +\setbeamertemplate{headline} +{% + \ifnum \thepage>1 + \leavevmode% + \begin{beamercolorbox}[wd=.5\paperwidth,ht=2.5ex,dp=1.125ex]{% + section in head/foot}% + \insertsectionnavigationhorizontal{.5\paperwidth}{\hskip0pt plus1filll}{}% + \end{beamercolorbox}% + \begin{beamercolorbox}[wd=.5\paperwidth,ht=2.5ex,dp=1.125ex]{% + subsection in head/foot}% + \insertsubsectionnavigationhorizontal{% + .5\paperwidth}{}{\hskip0pt plus1filll}% + \end{beamercolorbox}% + \fi %\thepage>1 +} + +\else% Not compressed + +\setbeamertemplate{headline} +{% + \ifnum \thepage>1 + \leavevmode% + \@tempdimb=2.4375ex% + \ifnum\beamer@subsectionmax<\beamer@sectionmax% + \multiply\@tempdimb by\beamer@sectionmax% + \else% + \multiply\@tempdimb by\beamer@subsectionmax% + \fi% + \ifdim\@tempdimb>0pt% + \advance\@tempdimb by 1.125ex% + \begin{beamercolorbox}[wd=.5\paperwidth,ht=\@tempdimb]{% + section in head/foot}% + \vbox to\@tempdimb{\vfil\insertsectionnavigation{.5\paperwidth}\vfil}% + \end{beamercolorbox}% + \begin{beamercolorbox}[wd=.5\paperwidth,ht=\@tempdimb]{% + subsection in head/foot}% + \vbox to\@tempdimb{\vfil\insertsubsectionnavigation{.5\paperwidth}\vfil}% + \end{beamercolorbox}% + \fi% + \fi % \thepage>1 +} + +\fi % end if compressed +\fi % TACCheadernav + + +\ifTACCheadertree + +\setbeamertemplate{headline} +{ + \begin{beamercolorbox}[wd=\paperwidth,colsep=1.5pt]{upper separation line head} + \end{beamercolorbox} + % + % Place short title + % + \begin{beamercolorbox}[wd=\paperwidth,ht=2.5ex,dp=1.125ex,% + leftskip=.3cm,rightskip=.3cm plus1fil]{title in head/foot} + \usebeamerfont{title in head/foot}\insertshorttitle + \end{beamercolorbox} + + % + % Place section + % + \begin{beamercolorbox}[wd=\paperwidth,ht=2.5ex,dp=1.125ex,% + leftskip=.3cm,rightskip=.3cm plus1fil]{section in head/foot} + \usebeamerfont{section in head/foot}% + %\ifbeamer@tree@showhooks + \setbox\beamer@tempbox=\hbox{\insertsectionhead}% + \ifdim\wd\beamer@tempbox>1pt% + \hskip2pt\raise1.9pt\hbox{\vrule width0.4pt height1.875ex\vrule width 5pt height0.4pt}% + \hskip1pt% + \fi + \insertsectionhead + \end{beamercolorbox} + +% +% Place subsection +% +\begin{beamercolorbox}[wd=\paperwidth,ht=2.5ex,dp=1.125ex,% + leftskip=.3cm,rightskip=.3cm plus1fil]{subsection in head/foot} + \usebeamerfont{subsection in head/foot}% + %\ifbeamer@tree@showhooks + \setbox\beamer@tempbox=\hbox{\insertsubsectionhead}% + \ifdim\wd\beamer@tempbox>1pt% + \hskip9.4pt\raise1.9pt\hbox{\vrule width0.4pt height1.875ex\vrule width 5pt height0.4pt}% + \hskip1pt% + \fi + \insertsubsectionhead +\end{beamercolorbox} + +% +% Place final separation box +% + \begin{beamercolorbox}[wd=\paperwidth,colsep=1.5pt + ]{lower separation line head} + \end{beamercolorbox} + + % + % Another matching rule which helps to frame the content + % + \hspace{.025\textwidth}\rule{.95\textwidth}{.5pt} +} +\fi % TACCheadertree + + +% The following command suppresses all navigation symbols. This is +% necessary in the TACC theme, since it overlaps where we want the +% logo to be. +\setbeamertemplate{navigation symbols}{} + + +\mode + diff --git a/my_docs/22/lmod_zoom_mtg_2022_08_02/themes/beamerthemeTACC16-169.sty b/my_docs/22/lmod_zoom_mtg_2022_08_02/themes/beamerthemeTACC16-169.sty new file mode 100644 index 000000000..22caf9a05 --- /dev/null +++ b/my_docs/22/lmod_zoom_mtg_2022_08_02/themes/beamerthemeTACC16-169.sty @@ -0,0 +1,38 @@ +%% TACC theme for beamer + +\newif\ifTACCheadernav +\DeclareOption{headernav}{\global\TACCheadernavtrue} + +\newif\ifTACCheadertree +\DeclareOption{headertree}{\global\TACCheadertreetrue} +\ProcessOptions + +\mode + +\makeatletter + \def\beamer@calltheme#1#2#3{% + \def\beamer@themelist{#2} + \@for\beamer@themename:=\beamer@themelist\do + {\usepackage[{#1}]{\beamer@themelocation/#3\beamer@themename}}} + + \def\usefolder#1{ + \def\beamer@themelocation{#1} + } + \def\beamer@themelocation{} + +\usefolder{themes} +\usefonttheme{TACC16} +\useinnertheme{TACC16} +\useoutertheme{TACC16-169} +\usecolortheme{TACC16} + +\mode + + +\newcommand{\event}[1]{% + \makeatletter% + \def\TACC@eventname{#1}% + \makeatother} + +\newcommand{\sectionframe}[1]{\section{#1}\frame{\Large\textbf{#1}}} +\newcommand{\subsectionframe}[1]{\subsection{#1}\frame{\large\textbf{#1}}} diff --git a/my_docs/22/lmod_zoom_mtg_2022_08_02/themes/beamerthemeTACC16.sty b/my_docs/22/lmod_zoom_mtg_2022_08_02/themes/beamerthemeTACC16.sty new file mode 100644 index 000000000..750bdd388 --- /dev/null +++ b/my_docs/22/lmod_zoom_mtg_2022_08_02/themes/beamerthemeTACC16.sty @@ -0,0 +1,26 @@ +%% TACC theme for beamer + +\newif\ifTACCheadernav +\DeclareOption{headernav}{\global\TACCheadernavtrue} + +\newif\ifTACCheadertree +\DeclareOption{headertree}{\global\TACCheadertreetrue} +\ProcessOptions + +\mode + +\usefonttheme{TACC16} +\useinnertheme{TACC16} +\useoutertheme{TACC16} +\usecolortheme{TACC16} + +\mode + + +\newcommand{\event}[1]{% + \makeatletter% + \def\TACC@eventname{#1}% + \makeatother} + +\newcommand{\sectionframe}[1]{\section{#1}\frame{\Large\textbf{#1}}} +\newcommand{\subsectionframe}[1]{\subsection{#1}\frame{\large\textbf{#1}}} diff --git a/my_docs/22/lmod_zoom_mtg_2022_08_02/themes/example.pdf b/my_docs/22/lmod_zoom_mtg_2022_08_02/themes/example.pdf new file mode 100644 index 000000000..add373eee Binary files /dev/null and b/my_docs/22/lmod_zoom_mtg_2022_08_02/themes/example.pdf differ diff --git a/my_docs/22/lmod_zoom_mtg_2022_08_02/themes/license.tex b/my_docs/22/lmod_zoom_mtg_2022_08_02/themes/license.tex new file mode 100644 index 000000000..74ff86759 --- /dev/null +++ b/my_docs/22/lmod_zoom_mtg_2022_08_02/themes/license.tex @@ -0,0 +1,14 @@ + +\begin{frame}{License} +\footnotesize +\textcopyright The University of Texas at Austin, \the\year\\ +\vspace{0.5 cm} +This work is licensed under the Creative Commons Attribution Non-Commercial 3.0 Unported License. To view a copy of this license, +visit http://creativecommons.org/licenses/by-nc/3.0/\\ +\vspace{0.5 cm} +When attributing this work, please use the following text: +"Designing and Administering Large-scale Systems", Texas Advanced Computing Center, \the\year. Available under a Creative Commons Attribution Non-Commercial 3.0 Unported License. +\newline +\newline +\includegraphics[width=1cm]{./figures/cc.png} +\end{frame} \ No newline at end of file diff --git a/my_docs/22/lmod_zoom_mtg_2022_09_06/Lmod-4color@2x.png b/my_docs/22/lmod_zoom_mtg_2022_09_06/Lmod-4color@2x.png deleted file mode 120000 index 47d505dbf..000000000 --- a/my_docs/22/lmod_zoom_mtg_2022_09_06/Lmod-4color@2x.png +++ /dev/null @@ -1 +0,0 @@ -../../beamer/Lmod-4color@2x.png \ No newline at end of file diff --git a/my_docs/22/lmod_zoom_mtg_2022_09_06/Lmod-4color@2x.png b/my_docs/22/lmod_zoom_mtg_2022_09_06/Lmod-4color@2x.png new file mode 100644 index 000000000..4810d74c3 Binary files /dev/null and b/my_docs/22/lmod_zoom_mtg_2022_09_06/Lmod-4color@2x.png differ diff --git a/my_docs/22/lmod_zoom_mtg_2022_09_06/beamercolorthemeTACC.sty b/my_docs/22/lmod_zoom_mtg_2022_09_06/beamercolorthemeTACC.sty deleted file mode 120000 index 8d27e673a..000000000 --- a/my_docs/22/lmod_zoom_mtg_2022_09_06/beamercolorthemeTACC.sty +++ /dev/null @@ -1 +0,0 @@ -../../beamer/beamercolorthemeTACC.sty \ No newline at end of file diff --git a/my_docs/22/lmod_zoom_mtg_2022_09_06/beamercolorthemeTACC.sty b/my_docs/22/lmod_zoom_mtg_2022_09_06/beamercolorthemeTACC.sty new file mode 100755 index 000000000..78beb6a4a --- /dev/null +++ b/my_docs/22/lmod_zoom_mtg_2022_09_06/beamercolorthemeTACC.sty @@ -0,0 +1,323 @@ +% Copyright 2003 by Till Tantau . +% +% This program can be redistributed and/or modified under the terms +% of the GNU Public License, version 2. + +\mode + +% I downloaded a gimp color palette from +% http://maururu.net/2007/latex-beamer-color-palette/ +% Which provides rgb values (I think) for several of the +% default beamer themes. You can open this in gimp by +% opening the Palettes dialog, right-clicking anywhere and choosing +% 'Import Palette'. A color in there called 'default added blue' +% appeared to be approximately what I wanted. It had the triple +% of values 141 145 208. If you double-click on this in the +% palette editor it gives you a bunch of information. You can't +% use these values directly to set a color...it just comes out white. +% I think definecolor is expecting something normalized by 255. Yes! + + +% bluish colors +\definecolor{defaddedblue}{rgb}{0.5529,.5686,.8157} % 141,145,208 +\definecolor{defblockheader}{rgb}{.1921,.2235,.6824} % 49,57,174 +\definecolor{flyaddedblue}{rgb}{.5961,.6118,.8431} % 152,156,215 + +% bluish-greys +\definecolor{beetleaddedblue1}{rgb}{.3333,.4039,.6196} % 85 103 158, dark +\definecolor{beetleaddedblue2}{rgb}{.4510,.5098,.7020} % 115 130 179, medium +\definecolor{beetleaddedblue3}{rgb}{.7059,.7255,.7961} % 180 185 203, light (greyest) + +% very light blue-greys +\definecolor{deflightouter1}{rgb}{.7608,.7647,.9020} % 194 195 230, dark +\definecolor{deflightouter2}{rgb}{.8 ,.8039,.9176} % 204 205 234, medium +\definecolor{deflightouter3}{rgb}{.8392,.8431,.9373} % 214 215 239, light + +% reddish colors +\definecolor{flyalertblockheader}{rgb}{.7373,.1294,.1333} % 188 33 34 +\definecolor{flyaddedred}{rgb}{.8667,.5647,.5647}% 221 144 144 +\definecolor{beaverouterframe}{rgb}{.5529,.0980,.0980}% 141 25 25 + +% greens (green is used for 'examples' in beamer) +\definecolor{defexblock}{rgb}{.9098,.9333,.9020} % 232 238 230, light +\definecolor{defaddedgreen}{rgb}{.5412,.6510,.4706} % 138 166 120, medium +\definecolor{defexblockheader}{rgb}{.1686,.3647,.0392} % 43 93 10, dark + +\definecolor{lightexblock}{rgb}{.9137,.9451,.9020} % 233 241 230, light +\definecolor{lightexblockheader}{rgb}{.8235,.8980,.8} % 210 229 204, medium +\definecolor{lightexblockheadertext}{rgb}{.2431,.5098,.0745} % 62 130 19, dark + + +%%% +% Set the normal text color +%%% +\setbeamercolor{normal text}{fg=black,bg=white} + +%%% +% Set the alerted text color +%%% +% \setbeamercolor{alerted text}{fg=red} +\setbeamercolor{alerted text}{fg=red!50!black} % half black/half red for green bg +% \setbeamercolor{alerted text}{fg=beaverouterframe} +% \setbeamercolor{alerted text}{fg=defblockheader} % doesn't stand out enough + + +% Set the 'example' text +\setbeamercolor{example text}{fg=green!50!black} + +\setbeamercolor{structure}{fg=black} + +\setbeamercolor{background canvas}{parent=normal text} +\setbeamercolor{background}{parent=background canvas} + +\setbeamercolor{palette primary}{use=structure,fg=structure.fg} +\setbeamercolor{palette secondary}{use=structure,fg=structure.fg!75!black} +\setbeamercolor{palette tertiary}{use=structure,fg=structure.fg!50!black} +\setbeamercolor{palette quaternary}{fg=black} + +\setbeamercolor{palette sidebar primary}{use=normal text,fg=normal text.fg} +\setbeamercolor{palette sidebar secondary}{use=structure,fg=structure.fg} +\setbeamercolor{palette sidebar tertiary}{use=normal text,fg=normal text.fg} +\setbeamercolor{palette sidebar quaternary}{use=structure,fg=structure.fg} + +\setbeamercolor{math text}{} +\setbeamercolor{math text inlined}{parent=math text} +\setbeamercolor{math text displayed}{parent=math text} + +\setbeamercolor{normal text in math text}{} + +\setbeamercolor{local structure}{parent=structure} + +\setbeamercolor{titlelike}{parent=structure} + +\setbeamercolor{title}{parent=titlelike} +\setbeamercolor{title in head/foot}{parent=palette quaternary} +\setbeamercolor{title in sidebar}{parent=palette sidebar quaternary} + +\setbeamercolor{subtitle}{parent=title} + +\setbeamercolor{author}{} +\setbeamercolor{author in head/foot}{parent=palette primary} +\setbeamercolor{author in sidebar}{use=palette sidebar tertiary,fg=palette sidebar tertiary.fg} + +\setbeamercolor{institute}{} +\setbeamercolor{institute in head/foot}{parent=palette tertiary} +\setbeamercolor{institute in sidebar}{use=palette sidebar tertiary,fg=palette sidebar tertiary.fg} + +\setbeamercolor{date}{} +\setbeamercolor{date in head/foot}{parent=palette secondary} +\setbeamercolor{date in sidebar}{use=palette sidebar tertiary,fg=palette sidebar tertiary.fg} + +\setbeamercolor{titlegraphic}{} + +\setbeamercolor{part name}{} +\setbeamercolor{part title}{parent=titlelike} + +\setbeamercolor{section in toc}{parent=structure} +\setbeamercolor{section in toc shaded}{parent=section in toc} +\setbeamercolor{section in head/foot}{parent=palette tertiary} +\setbeamercolor{section in sidebar}{parent=palette sidebar secondary} +\setbeamercolor{section in sidebar shaded}{use=section in sidebar,fg=section in sidebar.fg!40!bg} +\setbeamercolor{section number projected}{parent=item projected} + +\setbeamercolor{subsection in toc}{} +\setbeamercolor{subsection in toc shaded}{parent=subsection in toc} +\setbeamercolor{subsection in head/foot}{parent=palette secondary} +\setbeamercolor{subsection in sidebar}{parent=palette sidebar primary} +\setbeamercolor{subsection in sidebar shaded}{use=subsection in sidebar,fg=subsection in sidebar.fg!40!bg} +\setbeamercolor{subsection number projected}{parent={subitem projected}} + +\setbeamercolor{subsubsection in toc}{parent=subsection in toc} +\setbeamercolor{subsubsection in toc shaded}{parent=subsubsection in toc} +\setbeamercolor{subsubsection in head/foot}{parent=subsection in head/foot} +\setbeamercolor{subsubsection in sidebar}{parent=subsection in sidebar} +\setbeamercolor{subsubsection in sidebar shaded}{parent=subsection in sidebar shaded} +\setbeamercolor{subsubsection number projected}{parent=subsubitem projected} + +\setbeamercolor{headline}{} +\setbeamercolor{footline}{} + +\setbeamercolor{sidebar}{} +\setbeamercolor{sidebar left}{parent=sidebar} +\setbeamercolor{sidebar right}{parent=sidebar} + +\setbeamercolor{logo}{parent=palette secondary} + +\setbeamercolor{frametitle}{parent=titlelike} +\setbeamercolor{framesubtitle}{parent=frametitle} + +\setbeamercolor{frametitle right}{parent=frametitle} + +\setbeamercolor{caption}{} +\setbeamercolor{caption name}{parent=structure} + +\setbeamercolor{button}{use=local structure,bg=local structure.fg!50!bg,fg=white} +\setbeamercolor{button border}{use=button,fg=button.bg} +\setbeamercolor{navigation symbols}{use=structure,fg=structure.fg!40!bg} +\setbeamercolor{navigation symbols dimmed}{use=structure,fg=structure.fg!20!bg} +\setbeamercolor{mini frame}{parent=section in head/foot} + +% Color expressions are defined in the xcolor package +% +% Ex: Mixture of 40% green, 60% yellow: green!40!yellow +% +% The complement of any color can be obtained by prepending +% a minus sign: -green!40!yellow +% +% One can also combine up to three colors (in differing proportions) +% using the rgb command. For example, the following command combines +% 3 parts of the first color, with 2 parts of the second, and one part +% "red" +% +%\color{rgb:-green!40!yellow,3;green!40!yellow,2;red,1} +% Unfortunately, I don't think this works as an argument to setbeamercolor... +% "Orange" bg=green!30!yellow!30!red +% close to burnt orange: red!75!green +% lightgray is a color, but gray!25!white looks better +% +% A nice pair of greens +% (dark, a little too dark to be under black text...) -red!75!green!50!blue!25 +% (light) -red!75!green!50!blue!25!gray +% +% Some colors are only available via options to the xcolor package, eg. +% x11names,DarkOliveGreen4 +% svgnames, Chartreuse +% dvipsnames, ForestGreen +% +% but beamer does not seem to have any of these. +% +% The base color names which are always available are: +% black +% blue +% brown +% cyan +% darkgray +% gray +% green +% lightgray +% lime +% magenta +% olive +% orange +% pink +% purple +% red +% teal +% violet +% white +% yellow + +% From the beamer user guide, pg. 167 +% Inner color themes only specify the colors of elements used in inner +% themes. Most noticably, they specify the colors used for blocks. +% ... + +% Example color definition +% beamercolorthemedefault.sty:\definecolor{beamer@blendedblue}{rgb}{0.2,0.2,0.7} +% beamercolorthemedefault.sty:\setbeamercolor{structure}{fg=beamer@blendedblue} + +% The greens +% \setbeamercolor{block body}{bg=-red!75!green!50!blue!25!gray} +% \setbeamercolor{block title}{parent=structure,bg=-red!75!green!50!blue!25,fg=-red!75!green!50!blue!25!gray} + +%%% +% Set the block body and title background/foreground colors +%%% +% \setbeamercolor{block body}{bg=flyaddedblue} +% \setbeamercolor{block title}{bg=defblockheader,fg=flyaddedblue} + +% Purplish blues, too dark overall +% \setbeamercolor{block body}{bg=beetleaddedblue3} +% \setbeamercolor{block title}{bg=beetleaddedblue2,fg=beetleaddedblue3} + +% Very light blue greys +% 1. Not enough contrast +% \setbeamercolor{block body}{bg=deflightouter3} +% \setbeamercolor{block title}{bg=deflightouter2,fg=deflightouter3} + +% 2. Not enough contrast +% \setbeamercolor{block body}{bg=deflightouter3} +% \setbeamercolor{block title}{bg=deflightouter1,fg=deflightouter3} + +% 3. Combination of deflightouter and fly. The block bg is +% lighter than the all-beetle color scheme I previously thought was best. +% Currently I like this one the best +\setbeamercolor{block body}{bg=deflightouter3} +\setbeamercolor{block title}{bg=beetleaddedblue2,fg=deflightouter3} + +% 4. Greens. Looks like a highlighter. I don't really trust greens +% on projectors... It's almost too bright/hurts your eyes. +% \setbeamercolor{block body}{bg=defexblock} +% \setbeamercolor{block title}{bg=defaddedgreen,fg=defexblock} + +% This looks pretty good ... it's similar to the greens we had before +% but should be lighter. The blocks are just a little too "mint" colored +% though... +% \setbeamercolor{block body}{bg=defexblock} +% \setbeamercolor{block title}{bg=defexblockheader,fg=defexblock} + +% Pea Soup! +%\setbeamercolor{block body}{bg=defaddedgreen} +%\setbeamercolor{block title}{bg=defexblockheader,fg=defaddedgreen} + + +% Changing these didn't seem to do anything...I had to change the +% 'alerted text' color instead +\setbeamercolor{block body alerted}{} +\setbeamercolor{block body example}{} +\setbeamercolor{block title alerted}{parent=alerted text} +\setbeamercolor{block title example}{parent=example text} + +\setbeamercolor{item}{parent=local structure} +\setbeamercolor{subitem}{parent=item} +\setbeamercolor{subsubitem}{parent=subitem} + +\setbeamercolor{item projected}{parent=item,use=item,fg=white,bg=item.fg} +\setbeamercolor{subitem projected}{parent=item projected} +\setbeamercolor{subsubitem projected}{parent=subitem projected} + +\setbeamercolor{enumerate item}{parent=item} +\setbeamercolor{enumerate subitem}{parent=subitem} +\setbeamercolor{enumerate subsubitem}{parent=subsubitem} + +\setbeamercolor{itemize item}{parent=item} +\setbeamercolor{itemize subitem}{parent=subitem} +\setbeamercolor{itemize subsubitem}{parent=subsubitem} + +\setbeamercolor{itemize/enumerate body}{} +\setbeamercolor{itemize/enumerate subbody}{} +\setbeamercolor{itemize/enumerate subsubbody}{} + +\setbeamercolor{description item}{parent=item} + +\setbeamercolor{bibliography item}{parent=item} + +\setbeamercolor{bibliography entry author}{use=structure,fg=structure.fg} +\setbeamercolor{bibliography entry title}{use=normal text,fg=normal text.fg} +\setbeamercolor{bibliography entry location}{use=structure,fg=structure.fg!65!bg} +\setbeamercolor{bibliography entry note}{use=structure,fg=structure.fg!65!bg} + +\setbeamercolor{separation line}{} + +\setbeamercolor{upper separation line head}{parent=separation line} +\setbeamercolor{middle separation line head}{parent=separation line} +\setbeamercolor{lower separation line head}{parent=separation line} + +\setbeamercolor{upper separation line foot}{parent=separation line} +\setbeamercolor{middle separation line foot}{parent=separation line} +\setbeamercolor{lower separation line foot}{parent=separation line} + +\setbeamercolor{abstract}{} +\setbeamercolor{abstract title}{parent=structure} + +\setbeamercolor{verse}{} + +\setbeamercolor{quotation}{} +\setbeamercolor{quote}{parent=quotation} + +\setbeamercolor{page number in head/foot}{fg=fg!50!bg} + +\setbeamercolor{qed symbol}{parent=structure} + +\mode + diff --git a/my_docs/22/lmod_zoom_mtg_2022_09_06/beamercolorthemeTACC16.sty b/my_docs/22/lmod_zoom_mtg_2022_09_06/beamercolorthemeTACC16.sty deleted file mode 120000 index 58415801b..000000000 --- a/my_docs/22/lmod_zoom_mtg_2022_09_06/beamercolorthemeTACC16.sty +++ /dev/null @@ -1 +0,0 @@ -../../beamer/beamercolorthemeTACC16.sty \ No newline at end of file diff --git a/my_docs/22/lmod_zoom_mtg_2022_09_06/beamercolorthemeTACC16.sty b/my_docs/22/lmod_zoom_mtg_2022_09_06/beamercolorthemeTACC16.sty new file mode 100755 index 000000000..779dde91f --- /dev/null +++ b/my_docs/22/lmod_zoom_mtg_2022_09_06/beamercolorthemeTACC16.sty @@ -0,0 +1,192 @@ +% Copyright 2003 by Till Tantau . +% +% This program can be redistributed and/or modified under the terms +% of the GNU Public License, version 2. + +\mode + +\usepackage{textcase,regexpatch} + +\setbeamertemplate{blocks}[rounded][shadow=true] + + +\definecolor{TACCred}{RGB}{180,13,29} +\definecolor{TACCorange}{RGB}{210,104,43} +\definecolor{TACCblue}{RGB}{108, 134, 191} +\definecolor{TACCgreen}{RGB}{23,106,70} + +% I downloaded a gimp color palette from +% http://maururu.net/2007/latex-beamer-color-palette/ +% Which provides rgb values (I think) for several of the +% default beamer themes. You can open this in gimp by +% opening the Palettes dialog, right-clicking anywhere and choosing +% 'Import Palette'. A color in there called 'default added blue' +% appeared to be approximately what I wanted. It had the triple +% of values 141 145 208. If you double-click on this in the +% palette editor it gives you a bunch of information. You can't +% use these values directly to set a color...it just comes out white. +% I think definecolor is expecting something normalized by 255. Yes! + + +%%% +% Set the normal text color +%%% +\setbeamercolor{normal text}{fg=black} %,bg=white} +\setbeamercolor{example text}{fg=TACCgreen} +\setbeamercolor{alerted text}{fg=TACCorange} + + +\setbeamercolor{structure}{fg=black} +%\setbeamercolor{structure}{fg=black} + +\setbeamercolor{background canvas}{parent=normal text} +\setbeamercolor{background}{parent=background canvas} + +\setbeamercolor{palette primary}{use=structure,fg=structure.fg} +\setbeamercolor{palette secondary}{use=structure,fg=structure.fg!75!black} +\setbeamercolor{palette tertiary}{use=structure,fg=structure.fg!50!black} +\setbeamercolor{palette quaternary}{fg=black} + +\setbeamercolor{palette sidebar primary}{use=normal text,fg=normal text.fg} +\setbeamercolor{palette sidebar secondary}{use=structure,fg=structure.fg} +\setbeamercolor{palette sidebar tertiary}{use=normal text,fg=normal text.fg} +\setbeamercolor{palette sidebar quaternary}{use=structure,fg=structure.fg} + +\setbeamercolor{math text}{} +\setbeamercolor{math text inlined}{parent=math text} +\setbeamercolor{math text displayed}{parent=math text} + +\setbeamercolor{normal text in math text}{} + +\setbeamercolor{local structure}{parent=structure} + +\setbeamercolor{titlelike}{parent=structure} + +\setbeamercolor{title}{parent=titlelike} +\setbeamercolor{title in head/foot}{parent=palette quaternary} +\setbeamercolor{title in sidebar}{parent=palette sidebar quaternary} + +\setbeamercolor{subtitle}{parent=title} + +\setbeamercolor{author}{} +\setbeamercolor{author in head/foot}{parent=palette primary} +\setbeamercolor{author in sidebar}{use=palette sidebar tertiary,fg=palette sidebar tertiary.fg} + +\setbeamercolor{institute}{} +\setbeamercolor{institute in head/foot}{parent=palette tertiary} +\setbeamercolor{institute in sidebar}{use=palette sidebar tertiary,fg=palette sidebar tertiary.fg} + +\setbeamercolor{date}{} +\setbeamercolor{date in head/foot}{parent=palette secondary} +\setbeamercolor{date in sidebar}{use=palette sidebar tertiary,fg=palette sidebar tertiary.fg} + +\setbeamercolor{titlegraphic}{} + +\setbeamercolor{part name}{} +\setbeamercolor{part title}{parent=titlelike} + +\setbeamercolor{section in toc}{parent=structure} +\setbeamercolor{section in toc shaded}{parent=section in toc} +\setbeamercolor{section in head/foot}{parent=palette tertiary} +\setbeamercolor{section in sidebar}{parent=palette sidebar secondary} +\setbeamercolor{section in sidebar shaded}{use=section in sidebar,fg=section in sidebar.fg!40!bg} +\setbeamercolor{section number projected}{parent=item projected} + +\setbeamercolor{subsection in toc}{} +\setbeamercolor{subsection in toc shaded}{parent=subsection in toc} +\setbeamercolor{subsection in head/foot}{parent=palette secondary} +\setbeamercolor{subsection in sidebar}{parent=palette sidebar primary} +\setbeamercolor{subsection in sidebar shaded}{use=subsection in sidebar,fg=subsection in sidebar.fg!40!bg} +\setbeamercolor{subsection number projected}{parent={subitem projected}} + +\setbeamercolor{subsubsection in toc}{parent=subsection in toc} +\setbeamercolor{subsubsection in toc shaded}{parent=subsubsection in toc} +\setbeamercolor{subsubsection in head/foot}{parent=subsection in head/foot} +\setbeamercolor{subsubsection in sidebar}{parent=subsection in sidebar} +\setbeamercolor{subsubsection in sidebar shaded}{parent=subsection in sidebar shaded} +\setbeamercolor{subsubsection number projected}{parent=subsubitem projected} + +\setbeamercolor{headline}{} +\setbeamercolor{footline}{} + +\setbeamercolor{sidebar}{} +\setbeamercolor{sidebar left}{parent=sidebar} +\setbeamercolor{sidebar right}{parent=sidebar} + +\setbeamercolor{logo}{parent=palette secondary} + +\setbeamercolor{frametitle}{parent=titlelike} +\setbeamercolor{framesubtitle}{parent=frametitle} + +\setbeamercolor{frametitle right}{parent=frametitle} + +\setbeamercolor{caption}{} +\setbeamercolor{caption name}{parent=structure} + +\setbeamercolor{button}{use=local structure,bg=local structure.fg!50!bg,fg=white} +\setbeamercolor{button border}{use=button,fg=button.bg} +\setbeamercolor{navigation symbols}{use=structure,fg=structure.fg!40!bg} +\setbeamercolor{navigation symbols dimmed}{use=structure,fg=structure.fg!20!bg} +\setbeamercolor{mini frame}{parent=section in head/foot} + +\setbeamercolor{block body}{fg=black} +\setbeamercolor{block body alerted}{fg=black} +\setbeamercolor{block body example}{fg=black} + +\setbeamercolor{block title}{bg=TACCblue,fg=white} +\setbeamercolor{block title alerted}{bg=TACCred,fg=white} +\setbeamercolor{block title example}{bg=TACCgreen,fg=white} + +\setbeamercolor{item}{parent=local structure} +\setbeamercolor{subitem}{parent=item} +\setbeamercolor{subsubitem}{parent=subitem} + +\setbeamercolor{item projected}{parent=item,use=item,fg=black,bg=item.fg} +\setbeamercolor{subitem projected}{parent=item projected} +\setbeamercolor{subsubitem projected}{parent=subitem projected} + +\setbeamercolor{enumerate item}{parent=item} +\setbeamercolor{enumerate subitem}{parent=subitem} +\setbeamercolor{enumerate subsubitem}{parent=subsubitem} + +\setbeamercolor{itemize item}{parent=item} +\setbeamercolor{itemize subitem}{parent=subitem} +\setbeamercolor{itemize subsubitem}{parent=subsubitem} + +\setbeamercolor{itemize/enumerate body}{} +\setbeamercolor{itemize/enumerate subbody}{} +\setbeamercolor{itemize/enumerate subsubbody}{} + +\setbeamercolor{description item}{parent=item} + +\setbeamercolor{bibliography item}{parent=item} + +\setbeamercolor{bibliography entry author}{use=structure,fg=structure.fg} +\setbeamercolor{bibliography entry title}{use=normal text,fg=normal text.fg} +\setbeamercolor{bibliography entry location}{use=structure,fg=structure.fg!65!bg} +\setbeamercolor{bibliography entry note}{use=structure,fg=structure.fg!65!bg} + +\setbeamercolor{separation line}{} + +\setbeamercolor{upper separation line head}{parent=separation line} +\setbeamercolor{middle separation line head}{parent=separation line} +\setbeamercolor{lower separation line head}{parent=separation line} + +\setbeamercolor{upper separation line foot}{parent=separation line} +\setbeamercolor{middle separation line foot}{parent=separation line} +\setbeamercolor{lower separation line foot}{parent=separation line} + +\setbeamercolor{abstract}{} +\setbeamercolor{abstract title}{parent=structure} + +\setbeamercolor{verse}{} + +\setbeamercolor{quotation}{} +\setbeamercolor{quote}{parent=quotation} + +\setbeamercolor{page number in head/foot}{fg=fg!50!bg} + +\setbeamercolor{qed symbol}{parent=structure} + +\mode + diff --git a/my_docs/22/lmod_zoom_mtg_2022_09_06/beamerfontthemeTACC.sty b/my_docs/22/lmod_zoom_mtg_2022_09_06/beamerfontthemeTACC.sty deleted file mode 120000 index 78e971fb8..000000000 --- a/my_docs/22/lmod_zoom_mtg_2022_09_06/beamerfontthemeTACC.sty +++ /dev/null @@ -1 +0,0 @@ -../../beamer/beamerfontthemeTACC.sty \ No newline at end of file diff --git a/my_docs/22/lmod_zoom_mtg_2022_09_06/beamerfontthemeTACC.sty b/my_docs/22/lmod_zoom_mtg_2022_09_06/beamerfontthemeTACC.sty new file mode 100755 index 000000000..ef9ce1e5e --- /dev/null +++ b/my_docs/22/lmod_zoom_mtg_2022_09_06/beamerfontthemeTACC.sty @@ -0,0 +1,12 @@ +% Copyright 2003 by Till Tantau +% +% This program can be redistributed and/or modified under the terms +% of the GNU Public License, version 2. + +\mode + +\setbeamerfont{frametitle}{parent=structure,size=\LARGE,series=\bfseries} +\setbeamerfont{framesubtitle}{parent=frametitle,size=\small} + +\mode + \ No newline at end of file diff --git a/my_docs/22/lmod_zoom_mtg_2022_09_06/beamerfontthemeTACC16.sty b/my_docs/22/lmod_zoom_mtg_2022_09_06/beamerfontthemeTACC16.sty deleted file mode 120000 index a1f2fa5f9..000000000 --- a/my_docs/22/lmod_zoom_mtg_2022_09_06/beamerfontthemeTACC16.sty +++ /dev/null @@ -1 +0,0 @@ -../../beamer/beamerfontthemeTACC16.sty \ No newline at end of file diff --git a/my_docs/22/lmod_zoom_mtg_2022_09_06/beamerfontthemeTACC16.sty b/my_docs/22/lmod_zoom_mtg_2022_09_06/beamerfontthemeTACC16.sty new file mode 100755 index 000000000..b65271835 --- /dev/null +++ b/my_docs/22/lmod_zoom_mtg_2022_09_06/beamerfontthemeTACC16.sty @@ -0,0 +1,21 @@ +% Copyright 2003 by Till Tantau +% +% This program can be redistributed and/or modified under the terms +% of the GNU Public License, version 2. + +\mode +\setbeamerfont{title}{parent=structure,size=\LARGE,series=\bfseries} +\setbeamerfont{author}{parent=structure,size=\large, series=\normalfont} +\setbeamerfont{frametitle}{parent=structure,size=\LARGE,series=\bfseries} +\setbeamerfont{framesubtitle}{parent=frametitle,size=\small} + +%\usefonttheme{professionalfonts} % using non standard fonts for beamer +%\usefonttheme{serif} % default family is serif +%\usepackage{fontspec} +%\setmainfont{Century Gothic} + +\usepackage{fontspec} +\usepackage{libertine} + +\mode + diff --git a/my_docs/22/lmod_zoom_mtg_2022_09_06/beamerinnerthemeTACC.sty b/my_docs/22/lmod_zoom_mtg_2022_09_06/beamerinnerthemeTACC.sty deleted file mode 120000 index 8d5ae3921..000000000 --- a/my_docs/22/lmod_zoom_mtg_2022_09_06/beamerinnerthemeTACC.sty +++ /dev/null @@ -1 +0,0 @@ -../../beamer/beamerinnerthemeTACC.sty \ No newline at end of file diff --git a/my_docs/22/lmod_zoom_mtg_2022_09_06/beamerinnerthemeTACC.sty b/my_docs/22/lmod_zoom_mtg_2022_09_06/beamerinnerthemeTACC.sty new file mode 100755 index 000000000..29e2bce81 --- /dev/null +++ b/my_docs/22/lmod_zoom_mtg_2022_09_06/beamerinnerthemeTACC.sty @@ -0,0 +1,11 @@ +\mode + +\setbeamertemplate{itemize item}[circle] +\setbeamertemplate{itemize subitem}{{}--{}} +\setbeamertemplate{itemize subsubitem}[circle] +\setbeamertemplate{section in toc}{$\bullet$\hskip.5em\inserttocsection} +%\setbeamertemplate{subsection in toc}{} +\setbeamertemplate{subsubsection in toc}{} + +\mode + diff --git a/my_docs/22/lmod_zoom_mtg_2022_09_06/beamerinnerthemeTACC16.sty b/my_docs/22/lmod_zoom_mtg_2022_09_06/beamerinnerthemeTACC16.sty deleted file mode 120000 index 5955acc99..000000000 --- a/my_docs/22/lmod_zoom_mtg_2022_09_06/beamerinnerthemeTACC16.sty +++ /dev/null @@ -1 +0,0 @@ -../../beamer/beamerinnerthemeTACC16.sty \ No newline at end of file diff --git a/my_docs/22/lmod_zoom_mtg_2022_09_06/beamerinnerthemeTACC16.sty b/my_docs/22/lmod_zoom_mtg_2022_09_06/beamerinnerthemeTACC16.sty new file mode 100755 index 000000000..f7f454e1d --- /dev/null +++ b/my_docs/22/lmod_zoom_mtg_2022_09_06/beamerinnerthemeTACC16.sty @@ -0,0 +1,11 @@ +\mode + +\setbeamertemplate{itemize item}[triangle] +\setbeamertemplate{itemize subitem}[triangle] +\setbeamertemplate{itemize subsubitem}[triangle] +\setbeamertemplate{section in toc}{$\bullet$\hskip.5em\inserttocsection} +%\setbeamertemplate{subsection in toc}{} +\setbeamertemplate{subsubsection in toc}{} + +\mode + diff --git a/my_docs/22/lmod_zoom_mtg_2022_09_06/beamerouterthemeTACC.sty b/my_docs/22/lmod_zoom_mtg_2022_09_06/beamerouterthemeTACC.sty deleted file mode 120000 index da0a45d33..000000000 --- a/my_docs/22/lmod_zoom_mtg_2022_09_06/beamerouterthemeTACC.sty +++ /dev/null @@ -1 +0,0 @@ -../../beamer/beamerouterthemeTACC.sty \ No newline at end of file diff --git a/my_docs/22/lmod_zoom_mtg_2022_09_06/beamerouterthemeTACC.sty b/my_docs/22/lmod_zoom_mtg_2022_09_06/beamerouterthemeTACC.sty new file mode 100755 index 000000000..038580303 --- /dev/null +++ b/my_docs/22/lmod_zoom_mtg_2022_09_06/beamerouterthemeTACC.sty @@ -0,0 +1,196 @@ +% Copyright 2003 by Till Tantau +% +% This program can be redistributed and/or modified under the terms +% of the GNU Public License, version 2. + +\mode + +\setbeamertemplate{frametitle}[default][center] +\addtobeamertemplate{frametitle}{\vskip 4ex minus 4ex}{} + +% Here we define what appears at the bottom of each slide: the "footline". +\setbeamertemplate{footline}{% + \leavevmode% + + % Horizontal line dividing the rest of the slide from the footer? + % hrule goes all the way across... + % \hrule height.3pt% + % With \rule, you can specify the thickness + % \rule[raise-height]{width}{thickness} + \hspace{.025\textwidth}\rule{.95\textwidth}{.5pt} + + \hbox{% + % On the left half of the footer, insert the TACC logo + \begin{minipage}{.5\textwidth}% + \hskip .033\textwidth%Give horizontal space else this will set on the left edge of the slide! + % TACC logo with custom viewport! + \includegraphics[viewport=1 -1 135 35, clip=true, width=.4\textwidth]{figures/TACC_logo} + \end{minipage} + % + \begin{minipage}{.5\textwidth}% + \vskip .023\textheight% + \raggedleft% + \setlength{\rightskip}{.033\textwidth} + % + % If we are not on the first page, insert a page number + % For some reason, insertframenumber is buggy when you have fragile + % slides with verbatim environments in them... it tends to skip numbers + % for some reason! On the other hand, the pagenumber is incremented + % for *every* slide, including transition slides... + \ifnum \thepage>1 + % \insertshorttitle + \insertframenumber + % \insertframenumber/\inserttotalframenumber + % \insertpagenumber + \else % Do a phantom of whatever you do on other pages, so spacing matches + %$\phantom{\insertshorttitle}$ + $\phantom{\insertframenumber}$ + %$\phantom{\insertframenumber/\inserttotalframenumber}$ + %$\phantom{\insertpagenumber}$ + \fi + \hfill\includegraphics[width=.5\textwidth]{figures/UT_logo}% + \end{minipage}% + }% + \vskip .023\textheight% +} + + + + +\ifTACCheadernav + +\usesectionheadtemplate +{\hfill\insertsectionhead} +{\hfill\color{fg!50!bg}\insertsectionhead} + +% Head +\ifbeamer@compress + +% Here we define how the top of the frame looks, the "headline". +\setbeamertemplate{headline} +{% + \ifnum \thepage>1 + \leavevmode% + \begin{beamercolorbox}[wd=.5\paperwidth,ht=2.5ex,dp=1.125ex]{% + section in head/foot}% + \insertsectionnavigationhorizontal{.5\paperwidth}{\hskip0pt plus1filll}{}% + \end{beamercolorbox}% + \begin{beamercolorbox}[wd=.5\paperwidth,ht=2.5ex,dp=1.125ex]{% + subsection in head/foot}% + \insertsubsectionnavigationhorizontal{% + .5\paperwidth}{}{\hskip0pt plus1filll}% + \end{beamercolorbox}% + \fi %\thepage>1 +} + +\else% Not compressed + +\setbeamertemplate{headline} +{% + \ifnum \thepage>1 + \leavevmode% + \@tempdimb=2.4375ex% + \ifnum\beamer@subsectionmax<\beamer@sectionmax% + \multiply\@tempdimb by\beamer@sectionmax% + \else% + \multiply\@tempdimb by\beamer@subsectionmax% + \fi% + \ifdim\@tempdimb>0pt% + \advance\@tempdimb by 1.125ex% + \begin{beamercolorbox}[wd=.5\paperwidth,ht=\@tempdimb]{% + section in head/foot}% + \vbox to\@tempdimb{\vfil\insertsectionnavigation{.5\paperwidth}\vfil}% + \end{beamercolorbox}% + \begin{beamercolorbox}[wd=.5\paperwidth,ht=\@tempdimb]{% + subsection in head/foot}% + \vbox to\@tempdimb{\vfil\insertsubsectionnavigation{.5\paperwidth}\vfil}% + \end{beamercolorbox}% + \fi% + \fi % \thepage>1 +} + +\fi % end if compressed +\fi % TACCheadernav + + +\ifTACCheadertree + +\setbeamertemplate{headline} +{ + \begin{beamercolorbox}[wd=\paperwidth,colsep=1.5pt + ]{upper separation line head} + \end{beamercolorbox} + % + % Place short title + % + \begin{beamercolorbox}[wd=\paperwidth,ht=2.5ex,dp=1.125ex,% + leftskip=.3cm,rightskip=.3cm plus1fil]{title in head/foot} + \usebeamerfont{title in head/foot}\insertshorttitle + \end{beamercolorbox} + + % + % Place section + % + \begin{beamercolorbox}[wd=\paperwidth,ht=2.5ex,dp=1.125ex,% + leftskip=.3cm,rightskip=.3cm plus1fil]{section in head/foot} + \usebeamerfont{section in head/foot}% + %\ifbeamer@tree@showhooks + \setbox\beamer@tempbox=\hbox{\insertsectionhead}% + \ifdim\wd\beamer@tempbox>1pt% + \hskip2pt\raise1.9pt\hbox{\vrule width0.4pt height1.875ex\vrule width 5pt height0.4pt}% + \hskip1pt% + \fi% \ifdim + %\else% + %\hskip6pt% + %\fi% \ifbeamer + \insertsectionhead + \end{beamercolorbox} + +% +% Place subsection +% +\begin{beamercolorbox}[wd=\paperwidth,ht=2.5ex,dp=1.125ex,% + leftskip=.3cm,rightskip=.3cm plus1fil]{subsection in head/foot} + \usebeamerfont{subsection in head/foot}% + %\ifbeamer@tree@showhooks + \setbox\beamer@tempbox=\hbox{\insertsubsectionhead}% + \ifdim\wd\beamer@tempbox>1pt% + \hskip9.4pt\raise1.9pt\hbox{\vrule width0.4pt height1.875ex\vrule width 5pt height0.4pt}% + \hskip1pt% + \fi% \ifdim + %\else% + %\hskip12pt% + %\fi% \ifbeamer + \insertsubsectionhead +\end{beamercolorbox} + +% +% Place final separation box +% + \begin{beamercolorbox}[wd=\paperwidth,colsep=1.5pt + ]{lower separation line head} + \end{beamercolorbox} + + % + % Another matching rule which helps to frame the content + % + \hspace{.025\textwidth}\rule{.95\textwidth}{.5pt} +} +\fi % TACCheadertree + + +% The following command suppresses all navigation symbols. This is +% necessary in the TACC theme, since it overlaps where we want the +% logo to be. +\setbeamertemplate{navigation symbols}{} + +% Align the navigation symbols vertically (still overlaps our logo!) +%\setbeamertemplate{navigation symbols}[vertical]{} + +% Only places the slide-forward and slide-back symbol, but yes, +% this still overlaps our logo! +%\setbeamertemplate{navigation symbols}[only frame symbol]{} + + +\mode + diff --git a/my_docs/22/lmod_zoom_mtg_2022_09_06/beamerouterthemeTACC16.sty b/my_docs/22/lmod_zoom_mtg_2022_09_06/beamerouterthemeTACC16.sty deleted file mode 120000 index 54bd09537..000000000 --- a/my_docs/22/lmod_zoom_mtg_2022_09_06/beamerouterthemeTACC16.sty +++ /dev/null @@ -1 +0,0 @@ -../../beamer/beamerouterthemeTACC16.sty \ No newline at end of file diff --git a/my_docs/22/lmod_zoom_mtg_2022_09_06/beamerouterthemeTACC16.sty b/my_docs/22/lmod_zoom_mtg_2022_09_06/beamerouterthemeTACC16.sty new file mode 100755 index 000000000..d5e6388c7 --- /dev/null +++ b/my_docs/22/lmod_zoom_mtg_2022_09_06/beamerouterthemeTACC16.sty @@ -0,0 +1,312 @@ +% Antonio Gomez (agomez@tacc.utexas.edu) +% 4-20-17. Added option to put the footer on the right side + + + +\mode + +\usepackage{xcolor} +\usepackage{graphicx} +\usepackage{etoolbox} + + + +% This theme accepts the "rightfooter" option +% When used, it will put the TACC logo at the bottom of the slide on the right side +% By default, it goes to the left + +\xifaspectratio{ + {169} { + \pgfdeclareimage[width=\paperwidth]{titlebackground}{./figures/master169.jpg} + \if@rightfooterOption + \pgfdeclareimage[width=\paperwidth]{background}{./figures/secondary_right169.jpg} +\else + \pgfdeclareimage[width=\paperwidth]{background}{./figures/secondary169.jpg} +\fi +} +}[ +\pgfdeclareimage[width=\paperwidth]{titlebackground}{./figures/master.jpg} + \if@rightfooterOption + \pgfdeclareimage[width=\paperwidth]{background}{./figures/secondary_right.jpg} +\else + \pgfdeclareimage[width=\paperwidth]{background}{./figures/secondary.jpg} +\fi +] + +\setbeamertemplate{background canvas}{% +\xifaspectratio{ + {169} { + \ifnum\c@framenumber=1 % + \begin{picture}(0,0) + \put(-3,-256){% + \pgfuseimage{titlebackground} + } + \end{picture} + \else% + \begin{picture}(0,0) + \put(-3,-260){% + \pgfuseimage{background} + } + \end{picture} + \fi + } + {43} { + \ifnum\c@framenumber=1 % + \begin{picture}(0,0) + \put(-4,-274){% + \pgfuseimage{titlebackground} + } + \end{picture} + \else% + \begin{picture}(0,0) + \put(-4,-274){% + \pgfuseimage{background} + } + \end{picture} + \fi + } +} +} + + + +%\setbeamertemplate{background canvas}{% +% % On title page +% \ifnum\c@framenumber=1 % +% \begin{picture}(0,0) +% \put(0,-253){% +% \pgfuseimage{titlebackground} +% } +% \end{picture} +% +% \else% +% \xifaspectratio{ +% {169} { +% % Other frames background +% \begin{picture}(0,0) +% \put(-4,-260){% +% \pgfuseimage{background} +% } +% \end{picture} +% } +% }[ +% % Other frames background +% \begin{picture}(0,0) +% \put(-4,-274){% +% \pgfuseimage{background} +% } +% \end{picture} +% ] +% \fi% +%} + + +\setbeamertemplate{title page}{ +\vspace{40pt} +\begin{center} +\usebeamerfont{title} {\huge \inserttitle}\par +\vspace{4ex} +\usebeamerfont{author} { + \insertauthor +}\par +\vspace{2ex} +\usebeamerfont{institute}{ + \insertinstitute +} \par +\vspace{2ex} +\usebeamerfont{date}{ + \insertdate +} +\end{center} +} + + +\setbeamertemplate{frametitle}[default][center] +\setbeamertemplate{frametitle}{ + \makeatletter + \regexpatchcmd{\insertframetitle} + {(\c{usebeamertemplate}.*)\c{fi}} + {\c{NoCaseChange}\cB\{\1\cE\}\c{fi}} + {}{}% + \makeatother + \vskip1ex + \insertframetitle +} + +% Here we define what appears at the bottom of each slide: the "footline". +\setbeamertemplate{footline}{% + \leavevmode% + + % Horizontal line dividing the rest of the slide from the footer? + % hrule goes all the way across... + % \hrule height.3pt% + % With \rule, you can specify the thickness + % \rule[raise-height]{width}{thickness} + % \hspace{.025\textwidth}\rule{.95\textwidth}{.5pt} + + \hbox{% + \ifnum \thepage>1 + \if@rightfooterOption + \begin{minipage}{.2\textwidth}% + \hskip .05\textwidth%Give horizontal space else this will set on the left edge of the slide! + \end{minipage} + \else + \begin{minipage}{.4\textwidth}% + \hskip .05\textwidth%Give horizontal space else this will set on the left edge of the slide! + \end{minipage} + \fi + + + \begin{minipage}{\textwidth}% + % \vskip .023\textheight% + \raggedleft% + \setlength{\rightskip}{\textwidth} + \if@rightfooterOption + \hbox{% + \begin{beamercolorbox}[wd=0.7\textwidth,ht=2.25ex,dp=1ex,left]{author in head/foot}% + \insertshorttitle{} \hskip .01\textwidth | \hskip .01\textwidth \insertdate{} \hskip .01\textwidth | \hskip .01\textwidth \insertframenumber{} + \end{beamercolorbox}% + } + \else + \hbox{% + \begin{beamercolorbox}[wd=0.5\textwidth,ht=2.25ex,dp=1ex,left]{author in head/foot}% + \insertshorttitle{} \hskip .01\textwidth | \hskip .01\textwidth \insertdate{} \hskip .01\textwidth | \hskip .01\textwidth \insertframenumber{} + \end{beamercolorbox}% + } + \fi + + \end{minipage}% + \begin{minipage}{.05\textwidth}% + \end{minipage}% + \fi %\thepage>1 + }% + \vskip .023\textheight% + +} + + + + +\ifTACCheadernav + +\usesectionheadtemplate +{\hfill\insertsectionhead} +{\hfill\color{fg!50!bg}\insertsectionhead} + +% Head +\ifbeamer@compress + +% Here we define how the top of the frame looks, the "headline". +\setbeamertemplate{headline} +{% + \ifnum \thepage>1 + \leavevmode% + \begin{beamercolorbox}[wd=.5\paperwidth,ht=2.5ex,dp=1.125ex]{% + section in head/foot}% + \insertsectionnavigationhorizontal{.5\paperwidth}{\hskip0pt plus1filll}{}% + \end{beamercolorbox}% + \begin{beamercolorbox}[wd=.5\paperwidth,ht=2.5ex,dp=1.125ex]{% + subsection in head/foot}% + \insertsubsectionnavigationhorizontal{% + .5\paperwidth}{}{\hskip0pt plus1filll}% + \end{beamercolorbox}% + \fi %\thepage>1 +} + +\else% Not compressed + +\setbeamertemplate{headline} +{% + \ifnum \thepage>1 + \leavevmode% + \@tempdimb=2.4375ex% + \ifnum\beamer@subsectionmax<\beamer@sectionmax% + \multiply\@tempdimb by\beamer@sectionmax% + \else% + \multiply\@tempdimb by\beamer@subsectionmax% + \fi% + \ifdim\@tempdimb>0pt% + \advance\@tempdimb by 1.125ex% + \begin{beamercolorbox}[wd=.5\paperwidth,ht=\@tempdimb]{% + section in head/foot}% + \vbox to\@tempdimb{\vfil\insertsectionnavigation{.5\paperwidth}\vfil}% + \end{beamercolorbox}% + \begin{beamercolorbox}[wd=.5\paperwidth,ht=\@tempdimb]{% + subsection in head/foot}% + \vbox to\@tempdimb{\vfil\insertsubsectionnavigation{.5\paperwidth}\vfil}% + \end{beamercolorbox}% + \fi% + \fi % \thepage>1 +} + +\fi % end if compressed +\fi % TACCheadernav + + +\ifTACCheadertree + +\setbeamertemplate{headline} +{ + \begin{beamercolorbox}[wd=\paperwidth,colsep=1.5pt]{upper separation line head} + \end{beamercolorbox} + % + % Place short title + % + \begin{beamercolorbox}[wd=\paperwidth,ht=2.5ex,dp=1.125ex,% + leftskip=.3cm,rightskip=.3cm plus1fil]{title in head/foot} + \usebeamerfont{title in head/foot}\insertshorttitle + \end{beamercolorbox} + + % + % Place section + % + \begin{beamercolorbox}[wd=\paperwidth,ht=2.5ex,dp=1.125ex,% + leftskip=.3cm,rightskip=.3cm plus1fil]{section in head/foot} + \usebeamerfont{section in head/foot}% + %\ifbeamer@tree@showhooks + \setbox\beamer@tempbox=\hbox{\insertsectionhead}% + \ifdim\wd\beamer@tempbox>1pt% + \hskip2pt\raise1.9pt\hbox{\vrule width0.4pt height1.875ex\vrule width 5pt height0.4pt}% + \hskip1pt% + \fi + \insertsectionhead + \end{beamercolorbox} + +% +% Place subsection +% +\begin{beamercolorbox}[wd=\paperwidth,ht=2.5ex,dp=1.125ex,% + leftskip=.3cm,rightskip=.3cm plus1fil]{subsection in head/foot} + \usebeamerfont{subsection in head/foot}% + %\ifbeamer@tree@showhooks + \setbox\beamer@tempbox=\hbox{\insertsubsectionhead}% + \ifdim\wd\beamer@tempbox>1pt% + \hskip9.4pt\raise1.9pt\hbox{\vrule width0.4pt height1.875ex\vrule width 5pt height0.4pt}% + \hskip1pt% + \fi + \insertsubsectionhead +\end{beamercolorbox} + +% +% Place final separation box +% + \begin{beamercolorbox}[wd=\paperwidth,colsep=1.5pt + ]{lower separation line head} + \end{beamercolorbox} + + % + % Another matching rule which helps to frame the content + % + \hspace{.025\textwidth}\rule{.95\textwidth}{.5pt} +} +\fi % TACCheadertree + + +% The following command suppresses all navigation symbols. This is +% necessary in the TACC theme, since it overlaps where we want the +% logo to be. +\setbeamertemplate{navigation symbols}{} + + +\mode + diff --git a/my_docs/22/lmod_zoom_mtg_2022_09_06/beamerthemeTACC.sty b/my_docs/22/lmod_zoom_mtg_2022_09_06/beamerthemeTACC.sty deleted file mode 120000 index 5c339abd4..000000000 --- a/my_docs/22/lmod_zoom_mtg_2022_09_06/beamerthemeTACC.sty +++ /dev/null @@ -1 +0,0 @@ -../../beamer/beamerthemeTACC.sty \ No newline at end of file diff --git a/my_docs/22/lmod_zoom_mtg_2022_09_06/beamerthemeTACC.sty b/my_docs/22/lmod_zoom_mtg_2022_09_06/beamerthemeTACC.sty new file mode 100755 index 000000000..c6a1b1269 --- /dev/null +++ b/my_docs/22/lmod_zoom_mtg_2022_09_06/beamerthemeTACC.sty @@ -0,0 +1,26 @@ +%% TACC theme for beamer + +\newif\ifTACCheadernav +\DeclareOption{headernav}{\global\TACCheadernavtrue} + +\newif\ifTACCheadertree +\DeclareOption{headertree}{\global\TACCheadertreetrue} +\ProcessOptions + +\mode + +\usefonttheme{TACC} +\usecolortheme{TACC} +\useinnertheme{TACC} +\useoutertheme{TACC} + +\mode + + +\newcommand{\event}[1]{% + \makeatletter% + \def\TACC@eventname{#1}% + \makeatother} + +\newcommand{\sectionframe}[1]{\section{#1}\frame{\Large\textbf{#1}}} +\newcommand{\subsectionframe}[1]{\subsection{#1}\frame{\large\textbf{#1}}} diff --git a/my_docs/22/lmod_zoom_mtg_2022_09_06/beamerthemeTACC16.sty b/my_docs/22/lmod_zoom_mtg_2022_09_06/beamerthemeTACC16.sty deleted file mode 120000 index 7a9d4d296..000000000 --- a/my_docs/22/lmod_zoom_mtg_2022_09_06/beamerthemeTACC16.sty +++ /dev/null @@ -1 +0,0 @@ -../../beamer/beamerthemeTACC16.sty \ No newline at end of file diff --git a/my_docs/22/lmod_zoom_mtg_2022_09_06/beamerthemeTACC16.sty b/my_docs/22/lmod_zoom_mtg_2022_09_06/beamerthemeTACC16.sty new file mode 100755 index 000000000..b522d0207 --- /dev/null +++ b/my_docs/22/lmod_zoom_mtg_2022_09_06/beamerthemeTACC16.sty @@ -0,0 +1,61 @@ +%% TACC theme for beamer + + +\newif\if@rightfooterOption +\@rightfooterOptionfalse +\DeclareOption{rightfooter}{\@rightfooterOptiontrue} +\ProcessOptions + + +\newif\ifTACCheadernav +\DeclareOption{headernav}{\global\TACCheadernavtrue} + +\newif\ifTACCheadertree +\DeclareOption{headertree}{\global\TACCheadertreetrue} +\ProcessOptions + +\usepackage{xparse} +\ExplSyntaxOn +\NewDocumentCommand{\ifaspectratio}{mmm} + { + % Recover the option from those passed to the class + \keys_set:nf { zunbeltz/beameroptions } { \use:c { opt@beamer.cls } } + \str_if_eq:nVTF { #1 } \l_zunbeltz_aspectratio_tl { #2 } { #3 } + } +\NewDocumentCommand{\xifaspectratio}{mO{}} + { + % Recover the option from those passed to the class + \keys_set:nf { zunbeltz/beameroptions } { \use:c { opt@beamer.cls } } + \str_case:VnF \l_zunbeltz_aspectratio_tl { #1 } { #2 } + } +% We need to define only one key, the other are treated as `unknown' +\keys_define:nn { zunbeltz/beameroptions } + { + aspectratio .tl_set:N = \l_zunbeltz_aspectratio_tl, + aspectratio .initial:n = 43, + unknown .code:n = {}, + } + +% Generate the variants we need +\cs_generate_variant:Nn \keys_set:nn { nf } +\cs_generate_variant:Nn \str_if_eq:nnTF { nV } +\cs_generate_variant:Nn \str_case:nnF { V } +\ExplSyntaxOff + +\mode + +\usefonttheme{TACC16} +\useinnertheme{TACC16} +\useoutertheme{TACC16} +\usecolortheme{TACC16} + +\mode + + +\newcommand{\event}[1]{% + \makeatletter% + \def\TACC@eventname{#1}% + \makeatother} + +\newcommand{\sectionframe}[1]{\section{#1}\frame{\Large\textbf{#1}}} +\newcommand{\subsectionframe}[1]{\subsection{#1}\frame{\large\textbf{#1}}} diff --git a/my_docs/22/lmod_zoom_mtg_2022_09_06/figures b/my_docs/22/lmod_zoom_mtg_2022_09_06/figures deleted file mode 120000 index ddafd8974..000000000 --- a/my_docs/22/lmod_zoom_mtg_2022_09_06/figures +++ /dev/null @@ -1 +0,0 @@ -../../beamer/figures \ No newline at end of file diff --git a/my_docs/22/lmod_zoom_mtg_2022_09_06/figures/TACC_logo.pdf b/my_docs/22/lmod_zoom_mtg_2022_09_06/figures/TACC_logo.pdf new file mode 100755 index 000000000..c018a20cb Binary files /dev/null and b/my_docs/22/lmod_zoom_mtg_2022_09_06/figures/TACC_logo.pdf differ diff --git a/my_docs/22/lmod_zoom_mtg_2022_09_06/figures/UT_logo.pdf b/my_docs/22/lmod_zoom_mtg_2022_09_06/figures/UT_logo.pdf new file mode 100755 index 000000000..d5b42e752 Binary files /dev/null and b/my_docs/22/lmod_zoom_mtg_2022_09_06/figures/UT_logo.pdf differ diff --git a/my_docs/22/lmod_zoom_mtg_2022_09_06/figures/cc.png b/my_docs/22/lmod_zoom_mtg_2022_09_06/figures/cc.png new file mode 100644 index 000000000..8a532ff8f Binary files /dev/null and b/my_docs/22/lmod_zoom_mtg_2022_09_06/figures/cc.png differ diff --git a/my_docs/22/lmod_zoom_mtg_2022_09_06/figures/isa.png b/my_docs/22/lmod_zoom_mtg_2022_09_06/figures/isa.png new file mode 100644 index 000000000..f95d985e7 Binary files /dev/null and b/my_docs/22/lmod_zoom_mtg_2022_09_06/figures/isa.png differ diff --git a/my_docs/22/lmod_zoom_mtg_2022_09_06/figures/master.jpg b/my_docs/22/lmod_zoom_mtg_2022_09_06/figures/master.jpg new file mode 100644 index 000000000..f5c56c04a Binary files /dev/null and b/my_docs/22/lmod_zoom_mtg_2022_09_06/figures/master.jpg differ diff --git a/my_docs/22/lmod_zoom_mtg_2022_09_06/figures/master169.jpg b/my_docs/22/lmod_zoom_mtg_2022_09_06/figures/master169.jpg new file mode 100644 index 000000000..b215776eb Binary files /dev/null and b/my_docs/22/lmod_zoom_mtg_2022_09_06/figures/master169.jpg differ diff --git a/my_docs/22/lmod_zoom_mtg_2022_09_06/figures/master169.png b/my_docs/22/lmod_zoom_mtg_2022_09_06/figures/master169.png new file mode 100644 index 000000000..bc5c0ed12 Binary files /dev/null and b/my_docs/22/lmod_zoom_mtg_2022_09_06/figures/master169.png differ diff --git a/my_docs/22/lmod_zoom_mtg_2022_09_06/figures/secondary.jpg b/my_docs/22/lmod_zoom_mtg_2022_09_06/figures/secondary.jpg new file mode 100644 index 000000000..d905a95c9 Binary files /dev/null and b/my_docs/22/lmod_zoom_mtg_2022_09_06/figures/secondary.jpg differ diff --git a/my_docs/22/lmod_zoom_mtg_2022_09_06/figures/secondary169.jpg b/my_docs/22/lmod_zoom_mtg_2022_09_06/figures/secondary169.jpg new file mode 100644 index 000000000..4eb017957 Binary files /dev/null and b/my_docs/22/lmod_zoom_mtg_2022_09_06/figures/secondary169.jpg differ diff --git a/my_docs/22/lmod_zoom_mtg_2022_09_06/figures/secondary169.png b/my_docs/22/lmod_zoom_mtg_2022_09_06/figures/secondary169.png new file mode 100644 index 000000000..cb9060a56 Binary files /dev/null and b/my_docs/22/lmod_zoom_mtg_2022_09_06/figures/secondary169.png differ diff --git a/my_docs/22/lmod_zoom_mtg_2022_09_06/figures/secondary_right.jpg b/my_docs/22/lmod_zoom_mtg_2022_09_06/figures/secondary_right.jpg new file mode 100644 index 000000000..f25f93a58 Binary files /dev/null and b/my_docs/22/lmod_zoom_mtg_2022_09_06/figures/secondary_right.jpg differ diff --git a/my_docs/22/lmod_zoom_mtg_2022_09_06/figures/secondary_right169.jpg b/my_docs/22/lmod_zoom_mtg_2022_09_06/figures/secondary_right169.jpg new file mode 100644 index 000000000..567a1078f Binary files /dev/null and b/my_docs/22/lmod_zoom_mtg_2022_09_06/figures/secondary_right169.jpg differ diff --git a/my_docs/22/lmod_zoom_mtg_2022_09_06/themes b/my_docs/22/lmod_zoom_mtg_2022_09_06/themes deleted file mode 120000 index a98530730..000000000 --- a/my_docs/22/lmod_zoom_mtg_2022_09_06/themes +++ /dev/null @@ -1 +0,0 @@ -../../beamer/themes \ No newline at end of file diff --git a/my_docs/22/lmod_zoom_mtg_2022_09_06/themes/beamercolorthemeTACC16.sty b/my_docs/22/lmod_zoom_mtg_2022_09_06/themes/beamercolorthemeTACC16.sty new file mode 100644 index 000000000..248ae8cb6 --- /dev/null +++ b/my_docs/22/lmod_zoom_mtg_2022_09_06/themes/beamercolorthemeTACC16.sty @@ -0,0 +1,193 @@ +% Copyright 2003 by Till Tantau . +% +% This program can be redistributed and/or modified under the terms +% of the GNU Public License, version 2. + +\mode + +\usepackage{textcase,regexpatch} + +\setbeamertemplate{blocks}[rounded][shadow=true] + + +\definecolor{TACCred}{RGB}{180,13,29} +\definecolor{TACCorange}{RGB}{210,104,43} +\definecolor{TACCblue}{RGB}{21,77,122} +%\definecolor{TACCgreen}{RGB}{30,134,104} +\definecolor{TACCgreen}{RGB}{49,168,51} + +% I downloaded a gimp color palette from +% http://maururu.net/2007/latex-beamer-color-palette/ +% Which provides rgb values (I think) for several of the +% default beamer themes. You can open this in gimp by +% opening the Palettes dialog, right-clicking anywhere and choosing +% 'Import Palette'. A color in there called 'default added blue' +% appeared to be approximately what I wanted. It had the triple +% of values 141 145 208. If you double-click on this in the +% palette editor it gives you a bunch of information. You can't +% use these values directly to set a color...it just comes out white. +% I think definecolor is expecting something normalized by 255. Yes! + + +%%% +% Set the normal text color +%%% +\setbeamercolor{normal text}{fg=black} %,bg=white} +\setbeamercolor{example text}{fg=TACCgreen} +\setbeamercolor{alerted text}{fg=TACCorange} + + +\setbeamercolor{structure}{fg=black} +%\setbeamercolor{structure}{fg=black} + +\setbeamercolor{background canvas}{parent=normal text} +\setbeamercolor{background}{parent=background canvas} + +\setbeamercolor{palette primary}{use=structure,fg=structure.fg} +\setbeamercolor{palette secondary}{use=structure,fg=structure.fg!75!black} +\setbeamercolor{palette tertiary}{use=structure,fg=structure.fg!50!black} +\setbeamercolor{palette quaternary}{fg=black} + +\setbeamercolor{palette sidebar primary}{use=normal text,fg=normal text.fg} +\setbeamercolor{palette sidebar secondary}{use=structure,fg=structure.fg} +\setbeamercolor{palette sidebar tertiary}{use=normal text,fg=normal text.fg} +\setbeamercolor{palette sidebar quaternary}{use=structure,fg=structure.fg} + +\setbeamercolor{math text}{} +\setbeamercolor{math text inlined}{parent=math text} +\setbeamercolor{math text displayed}{parent=math text} + +\setbeamercolor{normal text in math text}{} + +\setbeamercolor{local structure}{parent=structure} + +\setbeamercolor{titlelike}{parent=structure} + +\setbeamercolor{title}{parent=titlelike} +\setbeamercolor{title in head/foot}{parent=palette quaternary} +\setbeamercolor{title in sidebar}{parent=palette sidebar quaternary} + +\setbeamercolor{subtitle}{parent=title} + +\setbeamercolor{author}{} +\setbeamercolor{author in head/foot}{parent=palette primary} +\setbeamercolor{author in sidebar}{use=palette sidebar tertiary,fg=palette sidebar tertiary.fg} + +\setbeamercolor{institute}{} +\setbeamercolor{institute in head/foot}{parent=palette tertiary} +\setbeamercolor{institute in sidebar}{use=palette sidebar tertiary,fg=palette sidebar tertiary.fg} + +\setbeamercolor{date}{} +\setbeamercolor{date in head/foot}{parent=palette secondary} +\setbeamercolor{date in sidebar}{use=palette sidebar tertiary,fg=palette sidebar tertiary.fg} + +\setbeamercolor{titlegraphic}{} + +\setbeamercolor{part name}{} +\setbeamercolor{part title}{parent=titlelike} + +\setbeamercolor{section in toc}{parent=structure} +\setbeamercolor{section in toc shaded}{parent=section in toc} +\setbeamercolor{section in head/foot}{parent=palette tertiary} +\setbeamercolor{section in sidebar}{parent=palette sidebar secondary} +\setbeamercolor{section in sidebar shaded}{use=section in sidebar,fg=section in sidebar.fg!40!bg} +\setbeamercolor{section number projected}{parent=item projected} + +\setbeamercolor{subsection in toc}{} +\setbeamercolor{subsection in toc shaded}{parent=subsection in toc} +\setbeamercolor{subsection in head/foot}{parent=palette secondary} +\setbeamercolor{subsection in sidebar}{parent=palette sidebar primary} +\setbeamercolor{subsection in sidebar shaded}{use=subsection in sidebar,fg=subsection in sidebar.fg!40!bg} +\setbeamercolor{subsection number projected}{parent={subitem projected}} + +\setbeamercolor{subsubsection in toc}{parent=subsection in toc} +\setbeamercolor{subsubsection in toc shaded}{parent=subsubsection in toc} +\setbeamercolor{subsubsection in head/foot}{parent=subsection in head/foot} +\setbeamercolor{subsubsection in sidebar}{parent=subsection in sidebar} +\setbeamercolor{subsubsection in sidebar shaded}{parent=subsection in sidebar shaded} +\setbeamercolor{subsubsection number projected}{parent=subsubitem projected} + +\setbeamercolor{headline}{} +\setbeamercolor{footline}{} + +\setbeamercolor{sidebar}{} +\setbeamercolor{sidebar left}{parent=sidebar} +\setbeamercolor{sidebar right}{parent=sidebar} + +\setbeamercolor{logo}{parent=palette secondary} + +\setbeamercolor{frametitle}{parent=titlelike} +\setbeamercolor{framesubtitle}{parent=frametitle} + +\setbeamercolor{frametitle right}{parent=frametitle} + +\setbeamercolor{caption}{} +\setbeamercolor{caption name}{parent=structure} + +\setbeamercolor{button}{use=local structure,bg=local structure.fg!50!bg,fg=white} +\setbeamercolor{button border}{use=button,fg=button.bg} +\setbeamercolor{navigation symbols}{use=structure,fg=structure.fg!40!bg} +\setbeamercolor{navigation symbols dimmed}{use=structure,fg=structure.fg!20!bg} +\setbeamercolor{mini frame}{parent=section in head/foot} + +\setbeamercolor{block body}{fg=black} +\setbeamercolor{block body alerted}{fg=black} +\setbeamercolor{block body example}{fg=black} + +\setbeamercolor{block title}{bg=TACCblue,fg=white} +\setbeamercolor{block title alerted}{bg=TACCred,fg=white} +\setbeamercolor{block title example}{bg=TACCgreen,fg=white} + +\setbeamercolor{item}{parent=local structure} +\setbeamercolor{subitem}{parent=item} +\setbeamercolor{subsubitem}{parent=subitem} + +\setbeamercolor{item projected}{parent=item,use=item,fg=black,bg=item.fg} +\setbeamercolor{subitem projected}{parent=item projected} +\setbeamercolor{subsubitem projected}{parent=subitem projected} + +\setbeamercolor{enumerate item}{parent=item} +\setbeamercolor{enumerate subitem}{parent=subitem} +\setbeamercolor{enumerate subsubitem}{parent=subsubitem} + +\setbeamercolor{itemize item}{parent=item} +\setbeamercolor{itemize subitem}{parent=subitem} +\setbeamercolor{itemize subsubitem}{parent=subsubitem} + +\setbeamercolor{itemize/enumerate body}{} +\setbeamercolor{itemize/enumerate subbody}{} +\setbeamercolor{itemize/enumerate subsubbody}{} + +\setbeamercolor{description item}{parent=item} + +\setbeamercolor{bibliography item}{parent=item} + +\setbeamercolor{bibliography entry author}{use=structure,fg=structure.fg} +\setbeamercolor{bibliography entry title}{use=normal text,fg=normal text.fg} +\setbeamercolor{bibliography entry location}{use=structure,fg=structure.fg!65!bg} +\setbeamercolor{bibliography entry note}{use=structure,fg=structure.fg!65!bg} + +\setbeamercolor{separation line}{} + +\setbeamercolor{upper separation line head}{parent=separation line} +\setbeamercolor{middle separation line head}{parent=separation line} +\setbeamercolor{lower separation line head}{parent=separation line} + +\setbeamercolor{upper separation line foot}{parent=separation line} +\setbeamercolor{middle separation line foot}{parent=separation line} +\setbeamercolor{lower separation line foot}{parent=separation line} + +\setbeamercolor{abstract}{} +\setbeamercolor{abstract title}{parent=structure} + +\setbeamercolor{verse}{} + +\setbeamercolor{quotation}{} +\setbeamercolor{quote}{parent=quotation} + +\setbeamercolor{page number in head/foot}{fg=fg!50!bg} + +\setbeamercolor{qed symbol}{parent=structure} + +\mode + diff --git a/my_docs/22/lmod_zoom_mtg_2022_09_06/themes/beamerfontthemeTACC16.sty b/my_docs/22/lmod_zoom_mtg_2022_09_06/themes/beamerfontthemeTACC16.sty new file mode 100644 index 000000000..d0fc325cc --- /dev/null +++ b/my_docs/22/lmod_zoom_mtg_2022_09_06/themes/beamerfontthemeTACC16.sty @@ -0,0 +1,21 @@ +% Copyright 2003 by Till Tantau +% +% This program can be redistributed and/or modified under the terms +% of the GNU Public License, version 2. + +\mode +\setbeamerfont{title}{parent=structure,size=\LARGE,series=\bfseries} +\setbeamerfont{author}{parent=structure,size=\large, series=\normalfont} +\setbeamerfont{frametitle}{parent=structure,size=\LARGE,series=\bfseries} +\setbeamerfont{framesubtitle}{parent=frametitle,size=\small} + +%\usefonttheme{professionalfonts} % using non standard fonts for beamer +%\usefonttheme{serif} % default family is serif +%\usepackage{fontspec} +%\setmainfont{Century Gothic} + +%\usepackage{fontspec} +\usepackage{libertine} + +\mode + diff --git a/my_docs/22/lmod_zoom_mtg_2022_09_06/themes/beamerinnerthemeTACC16.sty b/my_docs/22/lmod_zoom_mtg_2022_09_06/themes/beamerinnerthemeTACC16.sty new file mode 100644 index 000000000..f7f454e1d --- /dev/null +++ b/my_docs/22/lmod_zoom_mtg_2022_09_06/themes/beamerinnerthemeTACC16.sty @@ -0,0 +1,11 @@ +\mode + +\setbeamertemplate{itemize item}[triangle] +\setbeamertemplate{itemize subitem}[triangle] +\setbeamertemplate{itemize subsubitem}[triangle] +\setbeamertemplate{section in toc}{$\bullet$\hskip.5em\inserttocsection} +%\setbeamertemplate{subsection in toc}{} +\setbeamertemplate{subsubsection in toc}{} + +\mode + diff --git a/my_docs/22/lmod_zoom_mtg_2022_09_06/themes/beamerouterthemeTACC16-169.sty b/my_docs/22/lmod_zoom_mtg_2022_09_06/themes/beamerouterthemeTACC16-169.sty new file mode 100644 index 000000000..c62f9ed04 --- /dev/null +++ b/my_docs/22/lmod_zoom_mtg_2022_09_06/themes/beamerouterthemeTACC16-169.sty @@ -0,0 +1,247 @@ +% Copyright 2003 by Till Tantau +% +% This program can be redistributed and/or modified under the terms +% of the GNU Public License, version 2. + +\mode + +\usepackage{xcolor} +\usepackage{graphicx} +\usepackage{etoolbox} + +\pgfdeclareimage[width=\paperwidth]{titlebackground}{./figures/master169.png} +\pgfdeclareimage[width=\paperwidth]{background}{./figures/secondary169.png} + +\setbeamertemplate{background canvas}{% + \ifnum\c@framenumber=1% + \begin{picture}(0,0) + \put(-0.15,-250){% + \pgfuseimage{titlebackground} + } + %\put(0,-130.7){% + + %\begin{minipage}[b][45mm][t]{\textwidth}%{226mm} + %\begin{center} + % \usebeamerfont{title}{\MakeTextUppercase{\inserttitle}\par} + %\vspace{2ex} + %\usebeamerfont{author}{\insertauthor} + % \end{center} + %\end{minipage} + %} + \end{picture} + % On title page + \else% + % Other frames background + \begin{picture}(0,0) + \put(-0.15,-255.55){% + \pgfuseimage{background} + } + \end{picture} + \fi% +} + + +\setbeamertemplate{title page}{ +\vspace{40pt} +\begin{center} +\usebeamerfont{title} {\huge \inserttitle}\par +\vspace{4ex} +\usebeamerfont{author} { + \insertauthor +}\par +\vspace{2ex} +\usebeamerfont{institute}{ + \insertinstitute +} \par +\vspace{2ex} +\usebeamerfont{date}{ + \insertdate +} +\end{center} +} + + +\setbeamertemplate{frametitle}[default][center] +\setbeamertemplate{frametitle}{ + \makeatletter + \regexpatchcmd{\insertframetitle} + {(\c{usebeamertemplate}.*)\c{fi}} + {\c{NoCaseChange}\cB\{\1\cE\}\c{fi}} + {}{}% + \makeatother + \vskip1ex + \insertframetitle +} + +% Here we define what appears at the bottom of each slide: the "footline". +\setbeamertemplate{footline}{% + \leavevmode% + + % Horizontal line dividing the rest of the slide from the footer? + % hrule goes all the way across... + % \hrule height.3pt% + % With \rule, you can specify the thickness + % \rule[raise-height]{width}{thickness} + % \hspace{.025\textwidth}\rule{.95\textwidth}{.5pt} + + \hbox{% + \ifnum \thepage>1 + % On the left half of the footer, insert the TACC of + \begin{minipage}{.2\textwidth}% + \hskip .05\textwidth%Give horizontal space else this will set on the left edge of the slide! + % \includegraphics[width=.8\textwidth]{TACC_logo.png} + \end{minipage} + + + \begin{minipage}{\textwidth}% + % \vskip .023\textheight% + \raggedleft% + \setlength{\rightskip}{\textwidth} + \hbox{% + \begin{beamercolorbox}[wd=0.7\textwidth,ht=2.25ex,dp=1ex,left]{author in head/foot}% + \insertshorttitle{} \hskip .01\textwidth | \hskip .01\textwidth \insertdate{} \hskip .01\textwidth | \hskip .01\textwidth \insertframenumber{} + \end{beamercolorbox}% + } + + % + % If we are not on the first page, insert a page number + % For some reason, insertframenumber is buggy when you have fragile + % slides with verbatim environments in them... it tends to skip numbers + % for some reason! On the other hand, the pagenumber is incremented + % for *every* slide, including transition slides... + % \hfill\includegraphics[width=\textwidth]{tacc_ut.png} + \end{minipage}% + \begin{minipage}{.05\textwidth}% + \end{minipage}% + \fi %\thepage>1 + }% + \vskip .023\textheight% + +} + + + + +\ifTACCheadernav + +\usesectionheadtemplate +{\hfill\insertsectionhead} +{\hfill\color{fg!50!bg}\insertsectionhead} + +% Head +\ifbeamer@compress + +% Here we define how the top of the frame looks, the "headline". +\setbeamertemplate{headline} +{% + \ifnum \thepage>1 + \leavevmode% + \begin{beamercolorbox}[wd=.5\paperwidth,ht=2.5ex,dp=1.125ex]{% + section in head/foot}% + \insertsectionnavigationhorizontal{.5\paperwidth}{\hskip0pt plus1filll}{}% + \end{beamercolorbox}% + \begin{beamercolorbox}[wd=.5\paperwidth,ht=2.5ex,dp=1.125ex]{% + subsection in head/foot}% + \insertsubsectionnavigationhorizontal{% + .5\paperwidth}{}{\hskip0pt plus1filll}% + \end{beamercolorbox}% + \fi %\thepage>1 +} + +\else% Not compressed + +\setbeamertemplate{headline} +{% + \ifnum \thepage>1 + \leavevmode% + \@tempdimb=2.4375ex% + \ifnum\beamer@subsectionmax<\beamer@sectionmax% + \multiply\@tempdimb by\beamer@sectionmax% + \else% + \multiply\@tempdimb by\beamer@subsectionmax% + \fi% + \ifdim\@tempdimb>0pt% + \advance\@tempdimb by 1.125ex% + \begin{beamercolorbox}[wd=.5\paperwidth,ht=\@tempdimb]{% + section in head/foot}% + \vbox to\@tempdimb{\vfil\insertsectionnavigation{.5\paperwidth}\vfil}% + \end{beamercolorbox}% + \begin{beamercolorbox}[wd=.5\paperwidth,ht=\@tempdimb]{% + subsection in head/foot}% + \vbox to\@tempdimb{\vfil\insertsubsectionnavigation{.5\paperwidth}\vfil}% + \end{beamercolorbox}% + \fi% + \fi % \thepage>1 +} + +\fi % end if compressed +\fi % TACCheadernav + + +\ifTACCheadertree + +\setbeamertemplate{headline} +{ + \begin{beamercolorbox}[wd=\paperwidth,colsep=1.5pt]{upper separation line head} + \end{beamercolorbox} + % + % Place short title + % + \begin{beamercolorbox}[wd=\paperwidth,ht=2.5ex,dp=1.125ex,% + leftskip=.3cm,rightskip=.3cm plus1fil]{title in head/foot} + \usebeamerfont{title in head/foot}\insertshorttitle + \end{beamercolorbox} + + % + % Place section + % + \begin{beamercolorbox}[wd=\paperwidth,ht=2.5ex,dp=1.125ex,% + leftskip=.3cm,rightskip=.3cm plus1fil]{section in head/foot} + \usebeamerfont{section in head/foot}% + %\ifbeamer@tree@showhooks + \setbox\beamer@tempbox=\hbox{\insertsectionhead}% + \ifdim\wd\beamer@tempbox>1pt% + \hskip2pt\raise1.9pt\hbox{\vrule width0.4pt height1.875ex\vrule width 5pt height0.4pt}% + \hskip1pt% + \fi + \insertsectionhead + \end{beamercolorbox} + +% +% Place subsection +% +\begin{beamercolorbox}[wd=\paperwidth,ht=2.5ex,dp=1.125ex,% + leftskip=.3cm,rightskip=.3cm plus1fil]{subsection in head/foot} + \usebeamerfont{subsection in head/foot}% + %\ifbeamer@tree@showhooks + \setbox\beamer@tempbox=\hbox{\insertsubsectionhead}% + \ifdim\wd\beamer@tempbox>1pt% + \hskip9.4pt\raise1.9pt\hbox{\vrule width0.4pt height1.875ex\vrule width 5pt height0.4pt}% + \hskip1pt% + \fi + \insertsubsectionhead +\end{beamercolorbox} + +% +% Place final separation box +% + \begin{beamercolorbox}[wd=\paperwidth,colsep=1.5pt + ]{lower separation line head} + \end{beamercolorbox} + + % + % Another matching rule which helps to frame the content + % + \hspace{.025\textwidth}\rule{.95\textwidth}{.5pt} +} +\fi % TACCheadertree + + +% The following command suppresses all navigation symbols. This is +% necessary in the TACC theme, since it overlaps where we want the +% logo to be. +\setbeamertemplate{navigation symbols}{} + + +\mode + diff --git a/my_docs/22/lmod_zoom_mtg_2022_09_06/themes/beamerouterthemeTACC16.sty b/my_docs/22/lmod_zoom_mtg_2022_09_06/themes/beamerouterthemeTACC16.sty new file mode 100644 index 000000000..c5b178018 --- /dev/null +++ b/my_docs/22/lmod_zoom_mtg_2022_09_06/themes/beamerouterthemeTACC16.sty @@ -0,0 +1,247 @@ +% Copyright 2003 by Till Tantau +% +% This program can be redistributed and/or modified under the terms +% of the GNU Public License, version 2. + +\mode + +\usepackage{xcolor} +\usepackage{graphicx} +\usepackage{etoolbox} + +\pgfdeclareimage[width=\paperwidth]{titlebackground}{master.jpg} +\pgfdeclareimage[width=\paperwidth]{background}{secondary.jpg} + +\setbeamertemplate{background canvas}{% + \ifnum\c@framenumber=1% + \begin{picture}(0,0) + \put(0,-273){% + \pgfuseimage{titlebackground} + } + %\put(0,-130.7){% + + %\begin{minipage}[b][45mm][t]{\textwidth}%{226mm} + %\begin{center} + % \usebeamerfont{title}{\MakeTextUppercase{\inserttitle}\par} + %\vspace{2ex} + %\usebeamerfont{author}{\insertauthor} + % \end{center} + %\end{minipage} + %} + \end{picture} + % On title page + \else% + % Other frames background + \begin{picture}(0,0) + \put(0,-273){% + \pgfuseimage{background} + } + \end{picture} + \fi% +} + + +\setbeamertemplate{title page}{ +\vspace{40pt} +\begin{center} +\usebeamerfont{title} {\huge \inserttitle}\par +\vspace{4ex} +\usebeamerfont{author} { + \insertauthor +}\par +\vspace{2ex} +\usebeamerfont{institute}{ + \insertinstitute +} \par +\vspace{2ex} +\usebeamerfont{date}{ + \insertdate +} +\end{center} +} + + +\setbeamertemplate{frametitle}[default][center] +\setbeamertemplate{frametitle}{ + \makeatletter + \regexpatchcmd{\insertframetitle} + {(\c{usebeamertemplate}.*)\c{fi}} + {\c{NoCaseChange}\cB\{\1\cE\}\c{fi}} + {}{}% + \makeatother + \vskip1ex + \insertframetitle +} + +% Here we define what appears at the bottom of each slide: the "footline". +\setbeamertemplate{footline}{% + \leavevmode% + + % Horizontal line dividing the rest of the slide from the footer? + % hrule goes all the way across... + % \hrule height.3pt% + % With \rule, you can specify the thickness + % \rule[raise-height]{width}{thickness} + % \hspace{.025\textwidth}\rule{.95\textwidth}{.5pt} + + \hbox{% + \ifnum \thepage>1 + % On the left half of the footer, insert the TACC of + \begin{minipage}{.2\textwidth}% + \hskip .05\textwidth%Give horizontal space else this will set on the left edge of the slide! + % \includegraphics[width=.8\textwidth]{figures/TACC_logo.png} + \end{minipage} + + + \begin{minipage}{\textwidth}% + % \vskip .023\textheight% + \raggedleft% + \setlength{\rightskip}{\textwidth} + \hbox{% + \begin{beamercolorbox}[wd=0.7\textwidth,ht=2.25ex,dp=1ex,left]{author in head/foot}% + \insertshorttitle{} \hskip .01\textwidth | \hskip .01\textwidth \insertdate{} \hskip .01\textwidth | \hskip .01\textwidth \insertframenumber{} + \end{beamercolorbox}% + } + + % + % If we are not on the first page, insert a page number + % For some reason, insertframenumber is buggy when you have fragile + % slides with verbatim environments in them... it tends to skip numbers + % for some reason! On the other hand, the pagenumber is incremented + % for *every* slide, including transition slides... + % \hfill\includegraphics[width=\textwidth]{figures/tacc_ut.png} + \end{minipage}% + \begin{minipage}{.05\textwidth}% + \end{minipage}% + \fi %\thepage>1 + }% + \vskip .023\textheight% + +} + + + + +\ifTACCheadernav + +\usesectionheadtemplate +{\hfill\insertsectionhead} +{\hfill\color{fg!50!bg}\insertsectionhead} + +% Head +\ifbeamer@compress + +% Here we define how the top of the frame looks, the "headline". +\setbeamertemplate{headline} +{% + \ifnum \thepage>1 + \leavevmode% + \begin{beamercolorbox}[wd=.5\paperwidth,ht=2.5ex,dp=1.125ex]{% + section in head/foot}% + \insertsectionnavigationhorizontal{.5\paperwidth}{\hskip0pt plus1filll}{}% + \end{beamercolorbox}% + \begin{beamercolorbox}[wd=.5\paperwidth,ht=2.5ex,dp=1.125ex]{% + subsection in head/foot}% + \insertsubsectionnavigationhorizontal{% + .5\paperwidth}{}{\hskip0pt plus1filll}% + \end{beamercolorbox}% + \fi %\thepage>1 +} + +\else% Not compressed + +\setbeamertemplate{headline} +{% + \ifnum \thepage>1 + \leavevmode% + \@tempdimb=2.4375ex% + \ifnum\beamer@subsectionmax<\beamer@sectionmax% + \multiply\@tempdimb by\beamer@sectionmax% + \else% + \multiply\@tempdimb by\beamer@subsectionmax% + \fi% + \ifdim\@tempdimb>0pt% + \advance\@tempdimb by 1.125ex% + \begin{beamercolorbox}[wd=.5\paperwidth,ht=\@tempdimb]{% + section in head/foot}% + \vbox to\@tempdimb{\vfil\insertsectionnavigation{.5\paperwidth}\vfil}% + \end{beamercolorbox}% + \begin{beamercolorbox}[wd=.5\paperwidth,ht=\@tempdimb]{% + subsection in head/foot}% + \vbox to\@tempdimb{\vfil\insertsubsectionnavigation{.5\paperwidth}\vfil}% + \end{beamercolorbox}% + \fi% + \fi % \thepage>1 +} + +\fi % end if compressed +\fi % TACCheadernav + + +\ifTACCheadertree + +\setbeamertemplate{headline} +{ + \begin{beamercolorbox}[wd=\paperwidth,colsep=1.5pt]{upper separation line head} + \end{beamercolorbox} + % + % Place short title + % + \begin{beamercolorbox}[wd=\paperwidth,ht=2.5ex,dp=1.125ex,% + leftskip=.3cm,rightskip=.3cm plus1fil]{title in head/foot} + \usebeamerfont{title in head/foot}\insertshorttitle + \end{beamercolorbox} + + % + % Place section + % + \begin{beamercolorbox}[wd=\paperwidth,ht=2.5ex,dp=1.125ex,% + leftskip=.3cm,rightskip=.3cm plus1fil]{section in head/foot} + \usebeamerfont{section in head/foot}% + %\ifbeamer@tree@showhooks + \setbox\beamer@tempbox=\hbox{\insertsectionhead}% + \ifdim\wd\beamer@tempbox>1pt% + \hskip2pt\raise1.9pt\hbox{\vrule width0.4pt height1.875ex\vrule width 5pt height0.4pt}% + \hskip1pt% + \fi + \insertsectionhead + \end{beamercolorbox} + +% +% Place subsection +% +\begin{beamercolorbox}[wd=\paperwidth,ht=2.5ex,dp=1.125ex,% + leftskip=.3cm,rightskip=.3cm plus1fil]{subsection in head/foot} + \usebeamerfont{subsection in head/foot}% + %\ifbeamer@tree@showhooks + \setbox\beamer@tempbox=\hbox{\insertsubsectionhead}% + \ifdim\wd\beamer@tempbox>1pt% + \hskip9.4pt\raise1.9pt\hbox{\vrule width0.4pt height1.875ex\vrule width 5pt height0.4pt}% + \hskip1pt% + \fi + \insertsubsectionhead +\end{beamercolorbox} + +% +% Place final separation box +% + \begin{beamercolorbox}[wd=\paperwidth,colsep=1.5pt + ]{lower separation line head} + \end{beamercolorbox} + + % + % Another matching rule which helps to frame the content + % + \hspace{.025\textwidth}\rule{.95\textwidth}{.5pt} +} +\fi % TACCheadertree + + +% The following command suppresses all navigation symbols. This is +% necessary in the TACC theme, since it overlaps where we want the +% logo to be. +\setbeamertemplate{navigation symbols}{} + + +\mode + diff --git a/my_docs/22/lmod_zoom_mtg_2022_09_06/themes/beamerthemeTACC16-169.sty b/my_docs/22/lmod_zoom_mtg_2022_09_06/themes/beamerthemeTACC16-169.sty new file mode 100644 index 000000000..22caf9a05 --- /dev/null +++ b/my_docs/22/lmod_zoom_mtg_2022_09_06/themes/beamerthemeTACC16-169.sty @@ -0,0 +1,38 @@ +%% TACC theme for beamer + +\newif\ifTACCheadernav +\DeclareOption{headernav}{\global\TACCheadernavtrue} + +\newif\ifTACCheadertree +\DeclareOption{headertree}{\global\TACCheadertreetrue} +\ProcessOptions + +\mode + +\makeatletter + \def\beamer@calltheme#1#2#3{% + \def\beamer@themelist{#2} + \@for\beamer@themename:=\beamer@themelist\do + {\usepackage[{#1}]{\beamer@themelocation/#3\beamer@themename}}} + + \def\usefolder#1{ + \def\beamer@themelocation{#1} + } + \def\beamer@themelocation{} + +\usefolder{themes} +\usefonttheme{TACC16} +\useinnertheme{TACC16} +\useoutertheme{TACC16-169} +\usecolortheme{TACC16} + +\mode + + +\newcommand{\event}[1]{% + \makeatletter% + \def\TACC@eventname{#1}% + \makeatother} + +\newcommand{\sectionframe}[1]{\section{#1}\frame{\Large\textbf{#1}}} +\newcommand{\subsectionframe}[1]{\subsection{#1}\frame{\large\textbf{#1}}} diff --git a/my_docs/22/lmod_zoom_mtg_2022_09_06/themes/beamerthemeTACC16.sty b/my_docs/22/lmod_zoom_mtg_2022_09_06/themes/beamerthemeTACC16.sty new file mode 100644 index 000000000..750bdd388 --- /dev/null +++ b/my_docs/22/lmod_zoom_mtg_2022_09_06/themes/beamerthemeTACC16.sty @@ -0,0 +1,26 @@ +%% TACC theme for beamer + +\newif\ifTACCheadernav +\DeclareOption{headernav}{\global\TACCheadernavtrue} + +\newif\ifTACCheadertree +\DeclareOption{headertree}{\global\TACCheadertreetrue} +\ProcessOptions + +\mode + +\usefonttheme{TACC16} +\useinnertheme{TACC16} +\useoutertheme{TACC16} +\usecolortheme{TACC16} + +\mode + + +\newcommand{\event}[1]{% + \makeatletter% + \def\TACC@eventname{#1}% + \makeatother} + +\newcommand{\sectionframe}[1]{\section{#1}\frame{\Large\textbf{#1}}} +\newcommand{\subsectionframe}[1]{\subsection{#1}\frame{\large\textbf{#1}}} diff --git a/my_docs/22/lmod_zoom_mtg_2022_09_06/themes/example.pdf b/my_docs/22/lmod_zoom_mtg_2022_09_06/themes/example.pdf new file mode 100644 index 000000000..add373eee Binary files /dev/null and b/my_docs/22/lmod_zoom_mtg_2022_09_06/themes/example.pdf differ diff --git a/my_docs/22/lmod_zoom_mtg_2022_09_06/themes/license.tex b/my_docs/22/lmod_zoom_mtg_2022_09_06/themes/license.tex new file mode 100644 index 000000000..74ff86759 --- /dev/null +++ b/my_docs/22/lmod_zoom_mtg_2022_09_06/themes/license.tex @@ -0,0 +1,14 @@ + +\begin{frame}{License} +\footnotesize +\textcopyright The University of Texas at Austin, \the\year\\ +\vspace{0.5 cm} +This work is licensed under the Creative Commons Attribution Non-Commercial 3.0 Unported License. To view a copy of this license, +visit http://creativecommons.org/licenses/by-nc/3.0/\\ +\vspace{0.5 cm} +When attributing this work, please use the following text: +"Designing and Administering Large-scale Systems", Texas Advanced Computing Center, \the\year. Available under a Creative Commons Attribution Non-Commercial 3.0 Unported License. +\newline +\newline +\includegraphics[width=1cm]{./figures/cc.png} +\end{frame} \ No newline at end of file diff --git a/my_docs/22/lmod_zoom_mtg_2022_10_04/Lmod-4color@2x.png b/my_docs/22/lmod_zoom_mtg_2022_10_04/Lmod-4color@2x.png deleted file mode 120000 index 47d505dbf..000000000 --- a/my_docs/22/lmod_zoom_mtg_2022_10_04/Lmod-4color@2x.png +++ /dev/null @@ -1 +0,0 @@ -../../beamer/Lmod-4color@2x.png \ No newline at end of file diff --git a/my_docs/22/lmod_zoom_mtg_2022_10_04/Lmod-4color@2x.png b/my_docs/22/lmod_zoom_mtg_2022_10_04/Lmod-4color@2x.png new file mode 100644 index 000000000..4810d74c3 Binary files /dev/null and b/my_docs/22/lmod_zoom_mtg_2022_10_04/Lmod-4color@2x.png differ diff --git a/my_docs/22/lmod_zoom_mtg_2022_10_04/beamercolorthemeTACC.sty b/my_docs/22/lmod_zoom_mtg_2022_10_04/beamercolorthemeTACC.sty deleted file mode 120000 index 8d27e673a..000000000 --- a/my_docs/22/lmod_zoom_mtg_2022_10_04/beamercolorthemeTACC.sty +++ /dev/null @@ -1 +0,0 @@ -../../beamer/beamercolorthemeTACC.sty \ No newline at end of file diff --git a/my_docs/22/lmod_zoom_mtg_2022_10_04/beamercolorthemeTACC.sty b/my_docs/22/lmod_zoom_mtg_2022_10_04/beamercolorthemeTACC.sty new file mode 100755 index 000000000..78beb6a4a --- /dev/null +++ b/my_docs/22/lmod_zoom_mtg_2022_10_04/beamercolorthemeTACC.sty @@ -0,0 +1,323 @@ +% Copyright 2003 by Till Tantau . +% +% This program can be redistributed and/or modified under the terms +% of the GNU Public License, version 2. + +\mode + +% I downloaded a gimp color palette from +% http://maururu.net/2007/latex-beamer-color-palette/ +% Which provides rgb values (I think) for several of the +% default beamer themes. You can open this in gimp by +% opening the Palettes dialog, right-clicking anywhere and choosing +% 'Import Palette'. A color in there called 'default added blue' +% appeared to be approximately what I wanted. It had the triple +% of values 141 145 208. If you double-click on this in the +% palette editor it gives you a bunch of information. You can't +% use these values directly to set a color...it just comes out white. +% I think definecolor is expecting something normalized by 255. Yes! + + +% bluish colors +\definecolor{defaddedblue}{rgb}{0.5529,.5686,.8157} % 141,145,208 +\definecolor{defblockheader}{rgb}{.1921,.2235,.6824} % 49,57,174 +\definecolor{flyaddedblue}{rgb}{.5961,.6118,.8431} % 152,156,215 + +% bluish-greys +\definecolor{beetleaddedblue1}{rgb}{.3333,.4039,.6196} % 85 103 158, dark +\definecolor{beetleaddedblue2}{rgb}{.4510,.5098,.7020} % 115 130 179, medium +\definecolor{beetleaddedblue3}{rgb}{.7059,.7255,.7961} % 180 185 203, light (greyest) + +% very light blue-greys +\definecolor{deflightouter1}{rgb}{.7608,.7647,.9020} % 194 195 230, dark +\definecolor{deflightouter2}{rgb}{.8 ,.8039,.9176} % 204 205 234, medium +\definecolor{deflightouter3}{rgb}{.8392,.8431,.9373} % 214 215 239, light + +% reddish colors +\definecolor{flyalertblockheader}{rgb}{.7373,.1294,.1333} % 188 33 34 +\definecolor{flyaddedred}{rgb}{.8667,.5647,.5647}% 221 144 144 +\definecolor{beaverouterframe}{rgb}{.5529,.0980,.0980}% 141 25 25 + +% greens (green is used for 'examples' in beamer) +\definecolor{defexblock}{rgb}{.9098,.9333,.9020} % 232 238 230, light +\definecolor{defaddedgreen}{rgb}{.5412,.6510,.4706} % 138 166 120, medium +\definecolor{defexblockheader}{rgb}{.1686,.3647,.0392} % 43 93 10, dark + +\definecolor{lightexblock}{rgb}{.9137,.9451,.9020} % 233 241 230, light +\definecolor{lightexblockheader}{rgb}{.8235,.8980,.8} % 210 229 204, medium +\definecolor{lightexblockheadertext}{rgb}{.2431,.5098,.0745} % 62 130 19, dark + + +%%% +% Set the normal text color +%%% +\setbeamercolor{normal text}{fg=black,bg=white} + +%%% +% Set the alerted text color +%%% +% \setbeamercolor{alerted text}{fg=red} +\setbeamercolor{alerted text}{fg=red!50!black} % half black/half red for green bg +% \setbeamercolor{alerted text}{fg=beaverouterframe} +% \setbeamercolor{alerted text}{fg=defblockheader} % doesn't stand out enough + + +% Set the 'example' text +\setbeamercolor{example text}{fg=green!50!black} + +\setbeamercolor{structure}{fg=black} + +\setbeamercolor{background canvas}{parent=normal text} +\setbeamercolor{background}{parent=background canvas} + +\setbeamercolor{palette primary}{use=structure,fg=structure.fg} +\setbeamercolor{palette secondary}{use=structure,fg=structure.fg!75!black} +\setbeamercolor{palette tertiary}{use=structure,fg=structure.fg!50!black} +\setbeamercolor{palette quaternary}{fg=black} + +\setbeamercolor{palette sidebar primary}{use=normal text,fg=normal text.fg} +\setbeamercolor{palette sidebar secondary}{use=structure,fg=structure.fg} +\setbeamercolor{palette sidebar tertiary}{use=normal text,fg=normal text.fg} +\setbeamercolor{palette sidebar quaternary}{use=structure,fg=structure.fg} + +\setbeamercolor{math text}{} +\setbeamercolor{math text inlined}{parent=math text} +\setbeamercolor{math text displayed}{parent=math text} + +\setbeamercolor{normal text in math text}{} + +\setbeamercolor{local structure}{parent=structure} + +\setbeamercolor{titlelike}{parent=structure} + +\setbeamercolor{title}{parent=titlelike} +\setbeamercolor{title in head/foot}{parent=palette quaternary} +\setbeamercolor{title in sidebar}{parent=palette sidebar quaternary} + +\setbeamercolor{subtitle}{parent=title} + +\setbeamercolor{author}{} +\setbeamercolor{author in head/foot}{parent=palette primary} +\setbeamercolor{author in sidebar}{use=palette sidebar tertiary,fg=palette sidebar tertiary.fg} + +\setbeamercolor{institute}{} +\setbeamercolor{institute in head/foot}{parent=palette tertiary} +\setbeamercolor{institute in sidebar}{use=palette sidebar tertiary,fg=palette sidebar tertiary.fg} + +\setbeamercolor{date}{} +\setbeamercolor{date in head/foot}{parent=palette secondary} +\setbeamercolor{date in sidebar}{use=palette sidebar tertiary,fg=palette sidebar tertiary.fg} + +\setbeamercolor{titlegraphic}{} + +\setbeamercolor{part name}{} +\setbeamercolor{part title}{parent=titlelike} + +\setbeamercolor{section in toc}{parent=structure} +\setbeamercolor{section in toc shaded}{parent=section in toc} +\setbeamercolor{section in head/foot}{parent=palette tertiary} +\setbeamercolor{section in sidebar}{parent=palette sidebar secondary} +\setbeamercolor{section in sidebar shaded}{use=section in sidebar,fg=section in sidebar.fg!40!bg} +\setbeamercolor{section number projected}{parent=item projected} + +\setbeamercolor{subsection in toc}{} +\setbeamercolor{subsection in toc shaded}{parent=subsection in toc} +\setbeamercolor{subsection in head/foot}{parent=palette secondary} +\setbeamercolor{subsection in sidebar}{parent=palette sidebar primary} +\setbeamercolor{subsection in sidebar shaded}{use=subsection in sidebar,fg=subsection in sidebar.fg!40!bg} +\setbeamercolor{subsection number projected}{parent={subitem projected}} + +\setbeamercolor{subsubsection in toc}{parent=subsection in toc} +\setbeamercolor{subsubsection in toc shaded}{parent=subsubsection in toc} +\setbeamercolor{subsubsection in head/foot}{parent=subsection in head/foot} +\setbeamercolor{subsubsection in sidebar}{parent=subsection in sidebar} +\setbeamercolor{subsubsection in sidebar shaded}{parent=subsection in sidebar shaded} +\setbeamercolor{subsubsection number projected}{parent=subsubitem projected} + +\setbeamercolor{headline}{} +\setbeamercolor{footline}{} + +\setbeamercolor{sidebar}{} +\setbeamercolor{sidebar left}{parent=sidebar} +\setbeamercolor{sidebar right}{parent=sidebar} + +\setbeamercolor{logo}{parent=palette secondary} + +\setbeamercolor{frametitle}{parent=titlelike} +\setbeamercolor{framesubtitle}{parent=frametitle} + +\setbeamercolor{frametitle right}{parent=frametitle} + +\setbeamercolor{caption}{} +\setbeamercolor{caption name}{parent=structure} + +\setbeamercolor{button}{use=local structure,bg=local structure.fg!50!bg,fg=white} +\setbeamercolor{button border}{use=button,fg=button.bg} +\setbeamercolor{navigation symbols}{use=structure,fg=structure.fg!40!bg} +\setbeamercolor{navigation symbols dimmed}{use=structure,fg=structure.fg!20!bg} +\setbeamercolor{mini frame}{parent=section in head/foot} + +% Color expressions are defined in the xcolor package +% +% Ex: Mixture of 40% green, 60% yellow: green!40!yellow +% +% The complement of any color can be obtained by prepending +% a minus sign: -green!40!yellow +% +% One can also combine up to three colors (in differing proportions) +% using the rgb command. For example, the following command combines +% 3 parts of the first color, with 2 parts of the second, and one part +% "red" +% +%\color{rgb:-green!40!yellow,3;green!40!yellow,2;red,1} +% Unfortunately, I don't think this works as an argument to setbeamercolor... +% "Orange" bg=green!30!yellow!30!red +% close to burnt orange: red!75!green +% lightgray is a color, but gray!25!white looks better +% +% A nice pair of greens +% (dark, a little too dark to be under black text...) -red!75!green!50!blue!25 +% (light) -red!75!green!50!blue!25!gray +% +% Some colors are only available via options to the xcolor package, eg. +% x11names,DarkOliveGreen4 +% svgnames, Chartreuse +% dvipsnames, ForestGreen +% +% but beamer does not seem to have any of these. +% +% The base color names which are always available are: +% black +% blue +% brown +% cyan +% darkgray +% gray +% green +% lightgray +% lime +% magenta +% olive +% orange +% pink +% purple +% red +% teal +% violet +% white +% yellow + +% From the beamer user guide, pg. 167 +% Inner color themes only specify the colors of elements used in inner +% themes. Most noticably, they specify the colors used for blocks. +% ... + +% Example color definition +% beamercolorthemedefault.sty:\definecolor{beamer@blendedblue}{rgb}{0.2,0.2,0.7} +% beamercolorthemedefault.sty:\setbeamercolor{structure}{fg=beamer@blendedblue} + +% The greens +% \setbeamercolor{block body}{bg=-red!75!green!50!blue!25!gray} +% \setbeamercolor{block title}{parent=structure,bg=-red!75!green!50!blue!25,fg=-red!75!green!50!blue!25!gray} + +%%% +% Set the block body and title background/foreground colors +%%% +% \setbeamercolor{block body}{bg=flyaddedblue} +% \setbeamercolor{block title}{bg=defblockheader,fg=flyaddedblue} + +% Purplish blues, too dark overall +% \setbeamercolor{block body}{bg=beetleaddedblue3} +% \setbeamercolor{block title}{bg=beetleaddedblue2,fg=beetleaddedblue3} + +% Very light blue greys +% 1. Not enough contrast +% \setbeamercolor{block body}{bg=deflightouter3} +% \setbeamercolor{block title}{bg=deflightouter2,fg=deflightouter3} + +% 2. Not enough contrast +% \setbeamercolor{block body}{bg=deflightouter3} +% \setbeamercolor{block title}{bg=deflightouter1,fg=deflightouter3} + +% 3. Combination of deflightouter and fly. The block bg is +% lighter than the all-beetle color scheme I previously thought was best. +% Currently I like this one the best +\setbeamercolor{block body}{bg=deflightouter3} +\setbeamercolor{block title}{bg=beetleaddedblue2,fg=deflightouter3} + +% 4. Greens. Looks like a highlighter. I don't really trust greens +% on projectors... It's almost too bright/hurts your eyes. +% \setbeamercolor{block body}{bg=defexblock} +% \setbeamercolor{block title}{bg=defaddedgreen,fg=defexblock} + +% This looks pretty good ... it's similar to the greens we had before +% but should be lighter. The blocks are just a little too "mint" colored +% though... +% \setbeamercolor{block body}{bg=defexblock} +% \setbeamercolor{block title}{bg=defexblockheader,fg=defexblock} + +% Pea Soup! +%\setbeamercolor{block body}{bg=defaddedgreen} +%\setbeamercolor{block title}{bg=defexblockheader,fg=defaddedgreen} + + +% Changing these didn't seem to do anything...I had to change the +% 'alerted text' color instead +\setbeamercolor{block body alerted}{} +\setbeamercolor{block body example}{} +\setbeamercolor{block title alerted}{parent=alerted text} +\setbeamercolor{block title example}{parent=example text} + +\setbeamercolor{item}{parent=local structure} +\setbeamercolor{subitem}{parent=item} +\setbeamercolor{subsubitem}{parent=subitem} + +\setbeamercolor{item projected}{parent=item,use=item,fg=white,bg=item.fg} +\setbeamercolor{subitem projected}{parent=item projected} +\setbeamercolor{subsubitem projected}{parent=subitem projected} + +\setbeamercolor{enumerate item}{parent=item} +\setbeamercolor{enumerate subitem}{parent=subitem} +\setbeamercolor{enumerate subsubitem}{parent=subsubitem} + +\setbeamercolor{itemize item}{parent=item} +\setbeamercolor{itemize subitem}{parent=subitem} +\setbeamercolor{itemize subsubitem}{parent=subsubitem} + +\setbeamercolor{itemize/enumerate body}{} +\setbeamercolor{itemize/enumerate subbody}{} +\setbeamercolor{itemize/enumerate subsubbody}{} + +\setbeamercolor{description item}{parent=item} + +\setbeamercolor{bibliography item}{parent=item} + +\setbeamercolor{bibliography entry author}{use=structure,fg=structure.fg} +\setbeamercolor{bibliography entry title}{use=normal text,fg=normal text.fg} +\setbeamercolor{bibliography entry location}{use=structure,fg=structure.fg!65!bg} +\setbeamercolor{bibliography entry note}{use=structure,fg=structure.fg!65!bg} + +\setbeamercolor{separation line}{} + +\setbeamercolor{upper separation line head}{parent=separation line} +\setbeamercolor{middle separation line head}{parent=separation line} +\setbeamercolor{lower separation line head}{parent=separation line} + +\setbeamercolor{upper separation line foot}{parent=separation line} +\setbeamercolor{middle separation line foot}{parent=separation line} +\setbeamercolor{lower separation line foot}{parent=separation line} + +\setbeamercolor{abstract}{} +\setbeamercolor{abstract title}{parent=structure} + +\setbeamercolor{verse}{} + +\setbeamercolor{quotation}{} +\setbeamercolor{quote}{parent=quotation} + +\setbeamercolor{page number in head/foot}{fg=fg!50!bg} + +\setbeamercolor{qed symbol}{parent=structure} + +\mode + diff --git a/my_docs/22/lmod_zoom_mtg_2022_10_04/beamercolorthemeTACC16.sty b/my_docs/22/lmod_zoom_mtg_2022_10_04/beamercolorthemeTACC16.sty deleted file mode 120000 index 58415801b..000000000 --- a/my_docs/22/lmod_zoom_mtg_2022_10_04/beamercolorthemeTACC16.sty +++ /dev/null @@ -1 +0,0 @@ -../../beamer/beamercolorthemeTACC16.sty \ No newline at end of file diff --git a/my_docs/22/lmod_zoom_mtg_2022_10_04/beamercolorthemeTACC16.sty b/my_docs/22/lmod_zoom_mtg_2022_10_04/beamercolorthemeTACC16.sty new file mode 100755 index 000000000..779dde91f --- /dev/null +++ b/my_docs/22/lmod_zoom_mtg_2022_10_04/beamercolorthemeTACC16.sty @@ -0,0 +1,192 @@ +% Copyright 2003 by Till Tantau . +% +% This program can be redistributed and/or modified under the terms +% of the GNU Public License, version 2. + +\mode + +\usepackage{textcase,regexpatch} + +\setbeamertemplate{blocks}[rounded][shadow=true] + + +\definecolor{TACCred}{RGB}{180,13,29} +\definecolor{TACCorange}{RGB}{210,104,43} +\definecolor{TACCblue}{RGB}{108, 134, 191} +\definecolor{TACCgreen}{RGB}{23,106,70} + +% I downloaded a gimp color palette from +% http://maururu.net/2007/latex-beamer-color-palette/ +% Which provides rgb values (I think) for several of the +% default beamer themes. You can open this in gimp by +% opening the Palettes dialog, right-clicking anywhere and choosing +% 'Import Palette'. A color in there called 'default added blue' +% appeared to be approximately what I wanted. It had the triple +% of values 141 145 208. If you double-click on this in the +% palette editor it gives you a bunch of information. You can't +% use these values directly to set a color...it just comes out white. +% I think definecolor is expecting something normalized by 255. Yes! + + +%%% +% Set the normal text color +%%% +\setbeamercolor{normal text}{fg=black} %,bg=white} +\setbeamercolor{example text}{fg=TACCgreen} +\setbeamercolor{alerted text}{fg=TACCorange} + + +\setbeamercolor{structure}{fg=black} +%\setbeamercolor{structure}{fg=black} + +\setbeamercolor{background canvas}{parent=normal text} +\setbeamercolor{background}{parent=background canvas} + +\setbeamercolor{palette primary}{use=structure,fg=structure.fg} +\setbeamercolor{palette secondary}{use=structure,fg=structure.fg!75!black} +\setbeamercolor{palette tertiary}{use=structure,fg=structure.fg!50!black} +\setbeamercolor{palette quaternary}{fg=black} + +\setbeamercolor{palette sidebar primary}{use=normal text,fg=normal text.fg} +\setbeamercolor{palette sidebar secondary}{use=structure,fg=structure.fg} +\setbeamercolor{palette sidebar tertiary}{use=normal text,fg=normal text.fg} +\setbeamercolor{palette sidebar quaternary}{use=structure,fg=structure.fg} + +\setbeamercolor{math text}{} +\setbeamercolor{math text inlined}{parent=math text} +\setbeamercolor{math text displayed}{parent=math text} + +\setbeamercolor{normal text in math text}{} + +\setbeamercolor{local structure}{parent=structure} + +\setbeamercolor{titlelike}{parent=structure} + +\setbeamercolor{title}{parent=titlelike} +\setbeamercolor{title in head/foot}{parent=palette quaternary} +\setbeamercolor{title in sidebar}{parent=palette sidebar quaternary} + +\setbeamercolor{subtitle}{parent=title} + +\setbeamercolor{author}{} +\setbeamercolor{author in head/foot}{parent=palette primary} +\setbeamercolor{author in sidebar}{use=palette sidebar tertiary,fg=palette sidebar tertiary.fg} + +\setbeamercolor{institute}{} +\setbeamercolor{institute in head/foot}{parent=palette tertiary} +\setbeamercolor{institute in sidebar}{use=palette sidebar tertiary,fg=palette sidebar tertiary.fg} + +\setbeamercolor{date}{} +\setbeamercolor{date in head/foot}{parent=palette secondary} +\setbeamercolor{date in sidebar}{use=palette sidebar tertiary,fg=palette sidebar tertiary.fg} + +\setbeamercolor{titlegraphic}{} + +\setbeamercolor{part name}{} +\setbeamercolor{part title}{parent=titlelike} + +\setbeamercolor{section in toc}{parent=structure} +\setbeamercolor{section in toc shaded}{parent=section in toc} +\setbeamercolor{section in head/foot}{parent=palette tertiary} +\setbeamercolor{section in sidebar}{parent=palette sidebar secondary} +\setbeamercolor{section in sidebar shaded}{use=section in sidebar,fg=section in sidebar.fg!40!bg} +\setbeamercolor{section number projected}{parent=item projected} + +\setbeamercolor{subsection in toc}{} +\setbeamercolor{subsection in toc shaded}{parent=subsection in toc} +\setbeamercolor{subsection in head/foot}{parent=palette secondary} +\setbeamercolor{subsection in sidebar}{parent=palette sidebar primary} +\setbeamercolor{subsection in sidebar shaded}{use=subsection in sidebar,fg=subsection in sidebar.fg!40!bg} +\setbeamercolor{subsection number projected}{parent={subitem projected}} + +\setbeamercolor{subsubsection in toc}{parent=subsection in toc} +\setbeamercolor{subsubsection in toc shaded}{parent=subsubsection in toc} +\setbeamercolor{subsubsection in head/foot}{parent=subsection in head/foot} +\setbeamercolor{subsubsection in sidebar}{parent=subsection in sidebar} +\setbeamercolor{subsubsection in sidebar shaded}{parent=subsection in sidebar shaded} +\setbeamercolor{subsubsection number projected}{parent=subsubitem projected} + +\setbeamercolor{headline}{} +\setbeamercolor{footline}{} + +\setbeamercolor{sidebar}{} +\setbeamercolor{sidebar left}{parent=sidebar} +\setbeamercolor{sidebar right}{parent=sidebar} + +\setbeamercolor{logo}{parent=palette secondary} + +\setbeamercolor{frametitle}{parent=titlelike} +\setbeamercolor{framesubtitle}{parent=frametitle} + +\setbeamercolor{frametitle right}{parent=frametitle} + +\setbeamercolor{caption}{} +\setbeamercolor{caption name}{parent=structure} + +\setbeamercolor{button}{use=local structure,bg=local structure.fg!50!bg,fg=white} +\setbeamercolor{button border}{use=button,fg=button.bg} +\setbeamercolor{navigation symbols}{use=structure,fg=structure.fg!40!bg} +\setbeamercolor{navigation symbols dimmed}{use=structure,fg=structure.fg!20!bg} +\setbeamercolor{mini frame}{parent=section in head/foot} + +\setbeamercolor{block body}{fg=black} +\setbeamercolor{block body alerted}{fg=black} +\setbeamercolor{block body example}{fg=black} + +\setbeamercolor{block title}{bg=TACCblue,fg=white} +\setbeamercolor{block title alerted}{bg=TACCred,fg=white} +\setbeamercolor{block title example}{bg=TACCgreen,fg=white} + +\setbeamercolor{item}{parent=local structure} +\setbeamercolor{subitem}{parent=item} +\setbeamercolor{subsubitem}{parent=subitem} + +\setbeamercolor{item projected}{parent=item,use=item,fg=black,bg=item.fg} +\setbeamercolor{subitem projected}{parent=item projected} +\setbeamercolor{subsubitem projected}{parent=subitem projected} + +\setbeamercolor{enumerate item}{parent=item} +\setbeamercolor{enumerate subitem}{parent=subitem} +\setbeamercolor{enumerate subsubitem}{parent=subsubitem} + +\setbeamercolor{itemize item}{parent=item} +\setbeamercolor{itemize subitem}{parent=subitem} +\setbeamercolor{itemize subsubitem}{parent=subsubitem} + +\setbeamercolor{itemize/enumerate body}{} +\setbeamercolor{itemize/enumerate subbody}{} +\setbeamercolor{itemize/enumerate subsubbody}{} + +\setbeamercolor{description item}{parent=item} + +\setbeamercolor{bibliography item}{parent=item} + +\setbeamercolor{bibliography entry author}{use=structure,fg=structure.fg} +\setbeamercolor{bibliography entry title}{use=normal text,fg=normal text.fg} +\setbeamercolor{bibliography entry location}{use=structure,fg=structure.fg!65!bg} +\setbeamercolor{bibliography entry note}{use=structure,fg=structure.fg!65!bg} + +\setbeamercolor{separation line}{} + +\setbeamercolor{upper separation line head}{parent=separation line} +\setbeamercolor{middle separation line head}{parent=separation line} +\setbeamercolor{lower separation line head}{parent=separation line} + +\setbeamercolor{upper separation line foot}{parent=separation line} +\setbeamercolor{middle separation line foot}{parent=separation line} +\setbeamercolor{lower separation line foot}{parent=separation line} + +\setbeamercolor{abstract}{} +\setbeamercolor{abstract title}{parent=structure} + +\setbeamercolor{verse}{} + +\setbeamercolor{quotation}{} +\setbeamercolor{quote}{parent=quotation} + +\setbeamercolor{page number in head/foot}{fg=fg!50!bg} + +\setbeamercolor{qed symbol}{parent=structure} + +\mode + diff --git a/my_docs/22/lmod_zoom_mtg_2022_10_04/beamerfontthemeTACC.sty b/my_docs/22/lmod_zoom_mtg_2022_10_04/beamerfontthemeTACC.sty deleted file mode 120000 index 78e971fb8..000000000 --- a/my_docs/22/lmod_zoom_mtg_2022_10_04/beamerfontthemeTACC.sty +++ /dev/null @@ -1 +0,0 @@ -../../beamer/beamerfontthemeTACC.sty \ No newline at end of file diff --git a/my_docs/22/lmod_zoom_mtg_2022_10_04/beamerfontthemeTACC.sty b/my_docs/22/lmod_zoom_mtg_2022_10_04/beamerfontthemeTACC.sty new file mode 100755 index 000000000..ef9ce1e5e --- /dev/null +++ b/my_docs/22/lmod_zoom_mtg_2022_10_04/beamerfontthemeTACC.sty @@ -0,0 +1,12 @@ +% Copyright 2003 by Till Tantau +% +% This program can be redistributed and/or modified under the terms +% of the GNU Public License, version 2. + +\mode + +\setbeamerfont{frametitle}{parent=structure,size=\LARGE,series=\bfseries} +\setbeamerfont{framesubtitle}{parent=frametitle,size=\small} + +\mode + \ No newline at end of file diff --git a/my_docs/22/lmod_zoom_mtg_2022_10_04/beamerfontthemeTACC16.sty b/my_docs/22/lmod_zoom_mtg_2022_10_04/beamerfontthemeTACC16.sty deleted file mode 120000 index a1f2fa5f9..000000000 --- a/my_docs/22/lmod_zoom_mtg_2022_10_04/beamerfontthemeTACC16.sty +++ /dev/null @@ -1 +0,0 @@ -../../beamer/beamerfontthemeTACC16.sty \ No newline at end of file diff --git a/my_docs/22/lmod_zoom_mtg_2022_10_04/beamerfontthemeTACC16.sty b/my_docs/22/lmod_zoom_mtg_2022_10_04/beamerfontthemeTACC16.sty new file mode 100755 index 000000000..b65271835 --- /dev/null +++ b/my_docs/22/lmod_zoom_mtg_2022_10_04/beamerfontthemeTACC16.sty @@ -0,0 +1,21 @@ +% Copyright 2003 by Till Tantau +% +% This program can be redistributed and/or modified under the terms +% of the GNU Public License, version 2. + +\mode +\setbeamerfont{title}{parent=structure,size=\LARGE,series=\bfseries} +\setbeamerfont{author}{parent=structure,size=\large, series=\normalfont} +\setbeamerfont{frametitle}{parent=structure,size=\LARGE,series=\bfseries} +\setbeamerfont{framesubtitle}{parent=frametitle,size=\small} + +%\usefonttheme{professionalfonts} % using non standard fonts for beamer +%\usefonttheme{serif} % default family is serif +%\usepackage{fontspec} +%\setmainfont{Century Gothic} + +\usepackage{fontspec} +\usepackage{libertine} + +\mode + diff --git a/my_docs/22/lmod_zoom_mtg_2022_10_04/beamerinnerthemeTACC.sty b/my_docs/22/lmod_zoom_mtg_2022_10_04/beamerinnerthemeTACC.sty deleted file mode 120000 index 8d5ae3921..000000000 --- a/my_docs/22/lmod_zoom_mtg_2022_10_04/beamerinnerthemeTACC.sty +++ /dev/null @@ -1 +0,0 @@ -../../beamer/beamerinnerthemeTACC.sty \ No newline at end of file diff --git a/my_docs/22/lmod_zoom_mtg_2022_10_04/beamerinnerthemeTACC.sty b/my_docs/22/lmod_zoom_mtg_2022_10_04/beamerinnerthemeTACC.sty new file mode 100755 index 000000000..29e2bce81 --- /dev/null +++ b/my_docs/22/lmod_zoom_mtg_2022_10_04/beamerinnerthemeTACC.sty @@ -0,0 +1,11 @@ +\mode + +\setbeamertemplate{itemize item}[circle] +\setbeamertemplate{itemize subitem}{{}--{}} +\setbeamertemplate{itemize subsubitem}[circle] +\setbeamertemplate{section in toc}{$\bullet$\hskip.5em\inserttocsection} +%\setbeamertemplate{subsection in toc}{} +\setbeamertemplate{subsubsection in toc}{} + +\mode + diff --git a/my_docs/22/lmod_zoom_mtg_2022_10_04/beamerinnerthemeTACC16.sty b/my_docs/22/lmod_zoom_mtg_2022_10_04/beamerinnerthemeTACC16.sty deleted file mode 120000 index 5955acc99..000000000 --- a/my_docs/22/lmod_zoom_mtg_2022_10_04/beamerinnerthemeTACC16.sty +++ /dev/null @@ -1 +0,0 @@ -../../beamer/beamerinnerthemeTACC16.sty \ No newline at end of file diff --git a/my_docs/22/lmod_zoom_mtg_2022_10_04/beamerinnerthemeTACC16.sty b/my_docs/22/lmod_zoom_mtg_2022_10_04/beamerinnerthemeTACC16.sty new file mode 100755 index 000000000..f7f454e1d --- /dev/null +++ b/my_docs/22/lmod_zoom_mtg_2022_10_04/beamerinnerthemeTACC16.sty @@ -0,0 +1,11 @@ +\mode + +\setbeamertemplate{itemize item}[triangle] +\setbeamertemplate{itemize subitem}[triangle] +\setbeamertemplate{itemize subsubitem}[triangle] +\setbeamertemplate{section in toc}{$\bullet$\hskip.5em\inserttocsection} +%\setbeamertemplate{subsection in toc}{} +\setbeamertemplate{subsubsection in toc}{} + +\mode + diff --git a/my_docs/22/lmod_zoom_mtg_2022_10_04/beamerouterthemeTACC.sty b/my_docs/22/lmod_zoom_mtg_2022_10_04/beamerouterthemeTACC.sty deleted file mode 120000 index da0a45d33..000000000 --- a/my_docs/22/lmod_zoom_mtg_2022_10_04/beamerouterthemeTACC.sty +++ /dev/null @@ -1 +0,0 @@ -../../beamer/beamerouterthemeTACC.sty \ No newline at end of file diff --git a/my_docs/22/lmod_zoom_mtg_2022_10_04/beamerouterthemeTACC.sty b/my_docs/22/lmod_zoom_mtg_2022_10_04/beamerouterthemeTACC.sty new file mode 100755 index 000000000..038580303 --- /dev/null +++ b/my_docs/22/lmod_zoom_mtg_2022_10_04/beamerouterthemeTACC.sty @@ -0,0 +1,196 @@ +% Copyright 2003 by Till Tantau +% +% This program can be redistributed and/or modified under the terms +% of the GNU Public License, version 2. + +\mode + +\setbeamertemplate{frametitle}[default][center] +\addtobeamertemplate{frametitle}{\vskip 4ex minus 4ex}{} + +% Here we define what appears at the bottom of each slide: the "footline". +\setbeamertemplate{footline}{% + \leavevmode% + + % Horizontal line dividing the rest of the slide from the footer? + % hrule goes all the way across... + % \hrule height.3pt% + % With \rule, you can specify the thickness + % \rule[raise-height]{width}{thickness} + \hspace{.025\textwidth}\rule{.95\textwidth}{.5pt} + + \hbox{% + % On the left half of the footer, insert the TACC logo + \begin{minipage}{.5\textwidth}% + \hskip .033\textwidth%Give horizontal space else this will set on the left edge of the slide! + % TACC logo with custom viewport! + \includegraphics[viewport=1 -1 135 35, clip=true, width=.4\textwidth]{figures/TACC_logo} + \end{minipage} + % + \begin{minipage}{.5\textwidth}% + \vskip .023\textheight% + \raggedleft% + \setlength{\rightskip}{.033\textwidth} + % + % If we are not on the first page, insert a page number + % For some reason, insertframenumber is buggy when you have fragile + % slides with verbatim environments in them... it tends to skip numbers + % for some reason! On the other hand, the pagenumber is incremented + % for *every* slide, including transition slides... + \ifnum \thepage>1 + % \insertshorttitle + \insertframenumber + % \insertframenumber/\inserttotalframenumber + % \insertpagenumber + \else % Do a phantom of whatever you do on other pages, so spacing matches + %$\phantom{\insertshorttitle}$ + $\phantom{\insertframenumber}$ + %$\phantom{\insertframenumber/\inserttotalframenumber}$ + %$\phantom{\insertpagenumber}$ + \fi + \hfill\includegraphics[width=.5\textwidth]{figures/UT_logo}% + \end{minipage}% + }% + \vskip .023\textheight% +} + + + + +\ifTACCheadernav + +\usesectionheadtemplate +{\hfill\insertsectionhead} +{\hfill\color{fg!50!bg}\insertsectionhead} + +% Head +\ifbeamer@compress + +% Here we define how the top of the frame looks, the "headline". +\setbeamertemplate{headline} +{% + \ifnum \thepage>1 + \leavevmode% + \begin{beamercolorbox}[wd=.5\paperwidth,ht=2.5ex,dp=1.125ex]{% + section in head/foot}% + \insertsectionnavigationhorizontal{.5\paperwidth}{\hskip0pt plus1filll}{}% + \end{beamercolorbox}% + \begin{beamercolorbox}[wd=.5\paperwidth,ht=2.5ex,dp=1.125ex]{% + subsection in head/foot}% + \insertsubsectionnavigationhorizontal{% + .5\paperwidth}{}{\hskip0pt plus1filll}% + \end{beamercolorbox}% + \fi %\thepage>1 +} + +\else% Not compressed + +\setbeamertemplate{headline} +{% + \ifnum \thepage>1 + \leavevmode% + \@tempdimb=2.4375ex% + \ifnum\beamer@subsectionmax<\beamer@sectionmax% + \multiply\@tempdimb by\beamer@sectionmax% + \else% + \multiply\@tempdimb by\beamer@subsectionmax% + \fi% + \ifdim\@tempdimb>0pt% + \advance\@tempdimb by 1.125ex% + \begin{beamercolorbox}[wd=.5\paperwidth,ht=\@tempdimb]{% + section in head/foot}% + \vbox to\@tempdimb{\vfil\insertsectionnavigation{.5\paperwidth}\vfil}% + \end{beamercolorbox}% + \begin{beamercolorbox}[wd=.5\paperwidth,ht=\@tempdimb]{% + subsection in head/foot}% + \vbox to\@tempdimb{\vfil\insertsubsectionnavigation{.5\paperwidth}\vfil}% + \end{beamercolorbox}% + \fi% + \fi % \thepage>1 +} + +\fi % end if compressed +\fi % TACCheadernav + + +\ifTACCheadertree + +\setbeamertemplate{headline} +{ + \begin{beamercolorbox}[wd=\paperwidth,colsep=1.5pt + ]{upper separation line head} + \end{beamercolorbox} + % + % Place short title + % + \begin{beamercolorbox}[wd=\paperwidth,ht=2.5ex,dp=1.125ex,% + leftskip=.3cm,rightskip=.3cm plus1fil]{title in head/foot} + \usebeamerfont{title in head/foot}\insertshorttitle + \end{beamercolorbox} + + % + % Place section + % + \begin{beamercolorbox}[wd=\paperwidth,ht=2.5ex,dp=1.125ex,% + leftskip=.3cm,rightskip=.3cm plus1fil]{section in head/foot} + \usebeamerfont{section in head/foot}% + %\ifbeamer@tree@showhooks + \setbox\beamer@tempbox=\hbox{\insertsectionhead}% + \ifdim\wd\beamer@tempbox>1pt% + \hskip2pt\raise1.9pt\hbox{\vrule width0.4pt height1.875ex\vrule width 5pt height0.4pt}% + \hskip1pt% + \fi% \ifdim + %\else% + %\hskip6pt% + %\fi% \ifbeamer + \insertsectionhead + \end{beamercolorbox} + +% +% Place subsection +% +\begin{beamercolorbox}[wd=\paperwidth,ht=2.5ex,dp=1.125ex,% + leftskip=.3cm,rightskip=.3cm plus1fil]{subsection in head/foot} + \usebeamerfont{subsection in head/foot}% + %\ifbeamer@tree@showhooks + \setbox\beamer@tempbox=\hbox{\insertsubsectionhead}% + \ifdim\wd\beamer@tempbox>1pt% + \hskip9.4pt\raise1.9pt\hbox{\vrule width0.4pt height1.875ex\vrule width 5pt height0.4pt}% + \hskip1pt% + \fi% \ifdim + %\else% + %\hskip12pt% + %\fi% \ifbeamer + \insertsubsectionhead +\end{beamercolorbox} + +% +% Place final separation box +% + \begin{beamercolorbox}[wd=\paperwidth,colsep=1.5pt + ]{lower separation line head} + \end{beamercolorbox} + + % + % Another matching rule which helps to frame the content + % + \hspace{.025\textwidth}\rule{.95\textwidth}{.5pt} +} +\fi % TACCheadertree + + +% The following command suppresses all navigation symbols. This is +% necessary in the TACC theme, since it overlaps where we want the +% logo to be. +\setbeamertemplate{navigation symbols}{} + +% Align the navigation symbols vertically (still overlaps our logo!) +%\setbeamertemplate{navigation symbols}[vertical]{} + +% Only places the slide-forward and slide-back symbol, but yes, +% this still overlaps our logo! +%\setbeamertemplate{navigation symbols}[only frame symbol]{} + + +\mode + diff --git a/my_docs/22/lmod_zoom_mtg_2022_10_04/beamerouterthemeTACC16.sty b/my_docs/22/lmod_zoom_mtg_2022_10_04/beamerouterthemeTACC16.sty deleted file mode 120000 index 54bd09537..000000000 --- a/my_docs/22/lmod_zoom_mtg_2022_10_04/beamerouterthemeTACC16.sty +++ /dev/null @@ -1 +0,0 @@ -../../beamer/beamerouterthemeTACC16.sty \ No newline at end of file diff --git a/my_docs/22/lmod_zoom_mtg_2022_10_04/beamerouterthemeTACC16.sty b/my_docs/22/lmod_zoom_mtg_2022_10_04/beamerouterthemeTACC16.sty new file mode 100755 index 000000000..d5e6388c7 --- /dev/null +++ b/my_docs/22/lmod_zoom_mtg_2022_10_04/beamerouterthemeTACC16.sty @@ -0,0 +1,312 @@ +% Antonio Gomez (agomez@tacc.utexas.edu) +% 4-20-17. Added option to put the footer on the right side + + + +\mode + +\usepackage{xcolor} +\usepackage{graphicx} +\usepackage{etoolbox} + + + +% This theme accepts the "rightfooter" option +% When used, it will put the TACC logo at the bottom of the slide on the right side +% By default, it goes to the left + +\xifaspectratio{ + {169} { + \pgfdeclareimage[width=\paperwidth]{titlebackground}{./figures/master169.jpg} + \if@rightfooterOption + \pgfdeclareimage[width=\paperwidth]{background}{./figures/secondary_right169.jpg} +\else + \pgfdeclareimage[width=\paperwidth]{background}{./figures/secondary169.jpg} +\fi +} +}[ +\pgfdeclareimage[width=\paperwidth]{titlebackground}{./figures/master.jpg} + \if@rightfooterOption + \pgfdeclareimage[width=\paperwidth]{background}{./figures/secondary_right.jpg} +\else + \pgfdeclareimage[width=\paperwidth]{background}{./figures/secondary.jpg} +\fi +] + +\setbeamertemplate{background canvas}{% +\xifaspectratio{ + {169} { + \ifnum\c@framenumber=1 % + \begin{picture}(0,0) + \put(-3,-256){% + \pgfuseimage{titlebackground} + } + \end{picture} + \else% + \begin{picture}(0,0) + \put(-3,-260){% + \pgfuseimage{background} + } + \end{picture} + \fi + } + {43} { + \ifnum\c@framenumber=1 % + \begin{picture}(0,0) + \put(-4,-274){% + \pgfuseimage{titlebackground} + } + \end{picture} + \else% + \begin{picture}(0,0) + \put(-4,-274){% + \pgfuseimage{background} + } + \end{picture} + \fi + } +} +} + + + +%\setbeamertemplate{background canvas}{% +% % On title page +% \ifnum\c@framenumber=1 % +% \begin{picture}(0,0) +% \put(0,-253){% +% \pgfuseimage{titlebackground} +% } +% \end{picture} +% +% \else% +% \xifaspectratio{ +% {169} { +% % Other frames background +% \begin{picture}(0,0) +% \put(-4,-260){% +% \pgfuseimage{background} +% } +% \end{picture} +% } +% }[ +% % Other frames background +% \begin{picture}(0,0) +% \put(-4,-274){% +% \pgfuseimage{background} +% } +% \end{picture} +% ] +% \fi% +%} + + +\setbeamertemplate{title page}{ +\vspace{40pt} +\begin{center} +\usebeamerfont{title} {\huge \inserttitle}\par +\vspace{4ex} +\usebeamerfont{author} { + \insertauthor +}\par +\vspace{2ex} +\usebeamerfont{institute}{ + \insertinstitute +} \par +\vspace{2ex} +\usebeamerfont{date}{ + \insertdate +} +\end{center} +} + + +\setbeamertemplate{frametitle}[default][center] +\setbeamertemplate{frametitle}{ + \makeatletter + \regexpatchcmd{\insertframetitle} + {(\c{usebeamertemplate}.*)\c{fi}} + {\c{NoCaseChange}\cB\{\1\cE\}\c{fi}} + {}{}% + \makeatother + \vskip1ex + \insertframetitle +} + +% Here we define what appears at the bottom of each slide: the "footline". +\setbeamertemplate{footline}{% + \leavevmode% + + % Horizontal line dividing the rest of the slide from the footer? + % hrule goes all the way across... + % \hrule height.3pt% + % With \rule, you can specify the thickness + % \rule[raise-height]{width}{thickness} + % \hspace{.025\textwidth}\rule{.95\textwidth}{.5pt} + + \hbox{% + \ifnum \thepage>1 + \if@rightfooterOption + \begin{minipage}{.2\textwidth}% + \hskip .05\textwidth%Give horizontal space else this will set on the left edge of the slide! + \end{minipage} + \else + \begin{minipage}{.4\textwidth}% + \hskip .05\textwidth%Give horizontal space else this will set on the left edge of the slide! + \end{minipage} + \fi + + + \begin{minipage}{\textwidth}% + % \vskip .023\textheight% + \raggedleft% + \setlength{\rightskip}{\textwidth} + \if@rightfooterOption + \hbox{% + \begin{beamercolorbox}[wd=0.7\textwidth,ht=2.25ex,dp=1ex,left]{author in head/foot}% + \insertshorttitle{} \hskip .01\textwidth | \hskip .01\textwidth \insertdate{} \hskip .01\textwidth | \hskip .01\textwidth \insertframenumber{} + \end{beamercolorbox}% + } + \else + \hbox{% + \begin{beamercolorbox}[wd=0.5\textwidth,ht=2.25ex,dp=1ex,left]{author in head/foot}% + \insertshorttitle{} \hskip .01\textwidth | \hskip .01\textwidth \insertdate{} \hskip .01\textwidth | \hskip .01\textwidth \insertframenumber{} + \end{beamercolorbox}% + } + \fi + + \end{minipage}% + \begin{minipage}{.05\textwidth}% + \end{minipage}% + \fi %\thepage>1 + }% + \vskip .023\textheight% + +} + + + + +\ifTACCheadernav + +\usesectionheadtemplate +{\hfill\insertsectionhead} +{\hfill\color{fg!50!bg}\insertsectionhead} + +% Head +\ifbeamer@compress + +% Here we define how the top of the frame looks, the "headline". +\setbeamertemplate{headline} +{% + \ifnum \thepage>1 + \leavevmode% + \begin{beamercolorbox}[wd=.5\paperwidth,ht=2.5ex,dp=1.125ex]{% + section in head/foot}% + \insertsectionnavigationhorizontal{.5\paperwidth}{\hskip0pt plus1filll}{}% + \end{beamercolorbox}% + \begin{beamercolorbox}[wd=.5\paperwidth,ht=2.5ex,dp=1.125ex]{% + subsection in head/foot}% + \insertsubsectionnavigationhorizontal{% + .5\paperwidth}{}{\hskip0pt plus1filll}% + \end{beamercolorbox}% + \fi %\thepage>1 +} + +\else% Not compressed + +\setbeamertemplate{headline} +{% + \ifnum \thepage>1 + \leavevmode% + \@tempdimb=2.4375ex% + \ifnum\beamer@subsectionmax<\beamer@sectionmax% + \multiply\@tempdimb by\beamer@sectionmax% + \else% + \multiply\@tempdimb by\beamer@subsectionmax% + \fi% + \ifdim\@tempdimb>0pt% + \advance\@tempdimb by 1.125ex% + \begin{beamercolorbox}[wd=.5\paperwidth,ht=\@tempdimb]{% + section in head/foot}% + \vbox to\@tempdimb{\vfil\insertsectionnavigation{.5\paperwidth}\vfil}% + \end{beamercolorbox}% + \begin{beamercolorbox}[wd=.5\paperwidth,ht=\@tempdimb]{% + subsection in head/foot}% + \vbox to\@tempdimb{\vfil\insertsubsectionnavigation{.5\paperwidth}\vfil}% + \end{beamercolorbox}% + \fi% + \fi % \thepage>1 +} + +\fi % end if compressed +\fi % TACCheadernav + + +\ifTACCheadertree + +\setbeamertemplate{headline} +{ + \begin{beamercolorbox}[wd=\paperwidth,colsep=1.5pt]{upper separation line head} + \end{beamercolorbox} + % + % Place short title + % + \begin{beamercolorbox}[wd=\paperwidth,ht=2.5ex,dp=1.125ex,% + leftskip=.3cm,rightskip=.3cm plus1fil]{title in head/foot} + \usebeamerfont{title in head/foot}\insertshorttitle + \end{beamercolorbox} + + % + % Place section + % + \begin{beamercolorbox}[wd=\paperwidth,ht=2.5ex,dp=1.125ex,% + leftskip=.3cm,rightskip=.3cm plus1fil]{section in head/foot} + \usebeamerfont{section in head/foot}% + %\ifbeamer@tree@showhooks + \setbox\beamer@tempbox=\hbox{\insertsectionhead}% + \ifdim\wd\beamer@tempbox>1pt% + \hskip2pt\raise1.9pt\hbox{\vrule width0.4pt height1.875ex\vrule width 5pt height0.4pt}% + \hskip1pt% + \fi + \insertsectionhead + \end{beamercolorbox} + +% +% Place subsection +% +\begin{beamercolorbox}[wd=\paperwidth,ht=2.5ex,dp=1.125ex,% + leftskip=.3cm,rightskip=.3cm plus1fil]{subsection in head/foot} + \usebeamerfont{subsection in head/foot}% + %\ifbeamer@tree@showhooks + \setbox\beamer@tempbox=\hbox{\insertsubsectionhead}% + \ifdim\wd\beamer@tempbox>1pt% + \hskip9.4pt\raise1.9pt\hbox{\vrule width0.4pt height1.875ex\vrule width 5pt height0.4pt}% + \hskip1pt% + \fi + \insertsubsectionhead +\end{beamercolorbox} + +% +% Place final separation box +% + \begin{beamercolorbox}[wd=\paperwidth,colsep=1.5pt + ]{lower separation line head} + \end{beamercolorbox} + + % + % Another matching rule which helps to frame the content + % + \hspace{.025\textwidth}\rule{.95\textwidth}{.5pt} +} +\fi % TACCheadertree + + +% The following command suppresses all navigation symbols. This is +% necessary in the TACC theme, since it overlaps where we want the +% logo to be. +\setbeamertemplate{navigation symbols}{} + + +\mode + diff --git a/my_docs/22/lmod_zoom_mtg_2022_10_04/beamerthemeTACC.sty b/my_docs/22/lmod_zoom_mtg_2022_10_04/beamerthemeTACC.sty deleted file mode 120000 index 5c339abd4..000000000 --- a/my_docs/22/lmod_zoom_mtg_2022_10_04/beamerthemeTACC.sty +++ /dev/null @@ -1 +0,0 @@ -../../beamer/beamerthemeTACC.sty \ No newline at end of file diff --git a/my_docs/22/lmod_zoom_mtg_2022_10_04/beamerthemeTACC.sty b/my_docs/22/lmod_zoom_mtg_2022_10_04/beamerthemeTACC.sty new file mode 100755 index 000000000..c6a1b1269 --- /dev/null +++ b/my_docs/22/lmod_zoom_mtg_2022_10_04/beamerthemeTACC.sty @@ -0,0 +1,26 @@ +%% TACC theme for beamer + +\newif\ifTACCheadernav +\DeclareOption{headernav}{\global\TACCheadernavtrue} + +\newif\ifTACCheadertree +\DeclareOption{headertree}{\global\TACCheadertreetrue} +\ProcessOptions + +\mode + +\usefonttheme{TACC} +\usecolortheme{TACC} +\useinnertheme{TACC} +\useoutertheme{TACC} + +\mode + + +\newcommand{\event}[1]{% + \makeatletter% + \def\TACC@eventname{#1}% + \makeatother} + +\newcommand{\sectionframe}[1]{\section{#1}\frame{\Large\textbf{#1}}} +\newcommand{\subsectionframe}[1]{\subsection{#1}\frame{\large\textbf{#1}}} diff --git a/my_docs/22/lmod_zoom_mtg_2022_10_04/beamerthemeTACC16.sty b/my_docs/22/lmod_zoom_mtg_2022_10_04/beamerthemeTACC16.sty deleted file mode 120000 index 7a9d4d296..000000000 --- a/my_docs/22/lmod_zoom_mtg_2022_10_04/beamerthemeTACC16.sty +++ /dev/null @@ -1 +0,0 @@ -../../beamer/beamerthemeTACC16.sty \ No newline at end of file diff --git a/my_docs/22/lmod_zoom_mtg_2022_10_04/beamerthemeTACC16.sty b/my_docs/22/lmod_zoom_mtg_2022_10_04/beamerthemeTACC16.sty new file mode 100755 index 000000000..b522d0207 --- /dev/null +++ b/my_docs/22/lmod_zoom_mtg_2022_10_04/beamerthemeTACC16.sty @@ -0,0 +1,61 @@ +%% TACC theme for beamer + + +\newif\if@rightfooterOption +\@rightfooterOptionfalse +\DeclareOption{rightfooter}{\@rightfooterOptiontrue} +\ProcessOptions + + +\newif\ifTACCheadernav +\DeclareOption{headernav}{\global\TACCheadernavtrue} + +\newif\ifTACCheadertree +\DeclareOption{headertree}{\global\TACCheadertreetrue} +\ProcessOptions + +\usepackage{xparse} +\ExplSyntaxOn +\NewDocumentCommand{\ifaspectratio}{mmm} + { + % Recover the option from those passed to the class + \keys_set:nf { zunbeltz/beameroptions } { \use:c { opt@beamer.cls } } + \str_if_eq:nVTF { #1 } \l_zunbeltz_aspectratio_tl { #2 } { #3 } + } +\NewDocumentCommand{\xifaspectratio}{mO{}} + { + % Recover the option from those passed to the class + \keys_set:nf { zunbeltz/beameroptions } { \use:c { opt@beamer.cls } } + \str_case:VnF \l_zunbeltz_aspectratio_tl { #1 } { #2 } + } +% We need to define only one key, the other are treated as `unknown' +\keys_define:nn { zunbeltz/beameroptions } + { + aspectratio .tl_set:N = \l_zunbeltz_aspectratio_tl, + aspectratio .initial:n = 43, + unknown .code:n = {}, + } + +% Generate the variants we need +\cs_generate_variant:Nn \keys_set:nn { nf } +\cs_generate_variant:Nn \str_if_eq:nnTF { nV } +\cs_generate_variant:Nn \str_case:nnF { V } +\ExplSyntaxOff + +\mode + +\usefonttheme{TACC16} +\useinnertheme{TACC16} +\useoutertheme{TACC16} +\usecolortheme{TACC16} + +\mode + + +\newcommand{\event}[1]{% + \makeatletter% + \def\TACC@eventname{#1}% + \makeatother} + +\newcommand{\sectionframe}[1]{\section{#1}\frame{\Large\textbf{#1}}} +\newcommand{\subsectionframe}[1]{\subsection{#1}\frame{\large\textbf{#1}}} diff --git a/my_docs/22/lmod_zoom_mtg_2022_10_04/figures b/my_docs/22/lmod_zoom_mtg_2022_10_04/figures deleted file mode 120000 index ddafd8974..000000000 --- a/my_docs/22/lmod_zoom_mtg_2022_10_04/figures +++ /dev/null @@ -1 +0,0 @@ -../../beamer/figures \ No newline at end of file diff --git a/my_docs/22/lmod_zoom_mtg_2022_10_04/figures/TACC_logo.pdf b/my_docs/22/lmod_zoom_mtg_2022_10_04/figures/TACC_logo.pdf new file mode 100755 index 000000000..c018a20cb Binary files /dev/null and b/my_docs/22/lmod_zoom_mtg_2022_10_04/figures/TACC_logo.pdf differ diff --git a/my_docs/22/lmod_zoom_mtg_2022_10_04/figures/UT_logo.pdf b/my_docs/22/lmod_zoom_mtg_2022_10_04/figures/UT_logo.pdf new file mode 100755 index 000000000..d5b42e752 Binary files /dev/null and b/my_docs/22/lmod_zoom_mtg_2022_10_04/figures/UT_logo.pdf differ diff --git a/my_docs/22/lmod_zoom_mtg_2022_10_04/figures/cc.png b/my_docs/22/lmod_zoom_mtg_2022_10_04/figures/cc.png new file mode 100644 index 000000000..8a532ff8f Binary files /dev/null and b/my_docs/22/lmod_zoom_mtg_2022_10_04/figures/cc.png differ diff --git a/my_docs/22/lmod_zoom_mtg_2022_10_04/figures/isa.png b/my_docs/22/lmod_zoom_mtg_2022_10_04/figures/isa.png new file mode 100644 index 000000000..f95d985e7 Binary files /dev/null and b/my_docs/22/lmod_zoom_mtg_2022_10_04/figures/isa.png differ diff --git a/my_docs/22/lmod_zoom_mtg_2022_10_04/figures/master.jpg b/my_docs/22/lmod_zoom_mtg_2022_10_04/figures/master.jpg new file mode 100644 index 000000000..f5c56c04a Binary files /dev/null and b/my_docs/22/lmod_zoom_mtg_2022_10_04/figures/master.jpg differ diff --git a/my_docs/22/lmod_zoom_mtg_2022_10_04/figures/master169.jpg b/my_docs/22/lmod_zoom_mtg_2022_10_04/figures/master169.jpg new file mode 100644 index 000000000..b215776eb Binary files /dev/null and b/my_docs/22/lmod_zoom_mtg_2022_10_04/figures/master169.jpg differ diff --git a/my_docs/22/lmod_zoom_mtg_2022_10_04/figures/master169.png b/my_docs/22/lmod_zoom_mtg_2022_10_04/figures/master169.png new file mode 100644 index 000000000..bc5c0ed12 Binary files /dev/null and b/my_docs/22/lmod_zoom_mtg_2022_10_04/figures/master169.png differ diff --git a/my_docs/22/lmod_zoom_mtg_2022_10_04/figures/secondary.jpg b/my_docs/22/lmod_zoom_mtg_2022_10_04/figures/secondary.jpg new file mode 100644 index 000000000..d905a95c9 Binary files /dev/null and b/my_docs/22/lmod_zoom_mtg_2022_10_04/figures/secondary.jpg differ diff --git a/my_docs/22/lmod_zoom_mtg_2022_10_04/figures/secondary169.jpg b/my_docs/22/lmod_zoom_mtg_2022_10_04/figures/secondary169.jpg new file mode 100644 index 000000000..4eb017957 Binary files /dev/null and b/my_docs/22/lmod_zoom_mtg_2022_10_04/figures/secondary169.jpg differ diff --git a/my_docs/22/lmod_zoom_mtg_2022_10_04/figures/secondary169.png b/my_docs/22/lmod_zoom_mtg_2022_10_04/figures/secondary169.png new file mode 100644 index 000000000..cb9060a56 Binary files /dev/null and b/my_docs/22/lmod_zoom_mtg_2022_10_04/figures/secondary169.png differ diff --git a/my_docs/22/lmod_zoom_mtg_2022_10_04/figures/secondary_right.jpg b/my_docs/22/lmod_zoom_mtg_2022_10_04/figures/secondary_right.jpg new file mode 100644 index 000000000..f25f93a58 Binary files /dev/null and b/my_docs/22/lmod_zoom_mtg_2022_10_04/figures/secondary_right.jpg differ diff --git a/my_docs/22/lmod_zoom_mtg_2022_10_04/figures/secondary_right169.jpg b/my_docs/22/lmod_zoom_mtg_2022_10_04/figures/secondary_right169.jpg new file mode 100644 index 000000000..567a1078f Binary files /dev/null and b/my_docs/22/lmod_zoom_mtg_2022_10_04/figures/secondary_right169.jpg differ diff --git a/my_docs/22/lmod_zoom_mtg_2022_10_04/themes b/my_docs/22/lmod_zoom_mtg_2022_10_04/themes deleted file mode 120000 index a98530730..000000000 --- a/my_docs/22/lmod_zoom_mtg_2022_10_04/themes +++ /dev/null @@ -1 +0,0 @@ -../../beamer/themes \ No newline at end of file diff --git a/my_docs/22/lmod_zoom_mtg_2022_10_04/themes/beamercolorthemeTACC16.sty b/my_docs/22/lmod_zoom_mtg_2022_10_04/themes/beamercolorthemeTACC16.sty new file mode 100644 index 000000000..248ae8cb6 --- /dev/null +++ b/my_docs/22/lmod_zoom_mtg_2022_10_04/themes/beamercolorthemeTACC16.sty @@ -0,0 +1,193 @@ +% Copyright 2003 by Till Tantau . +% +% This program can be redistributed and/or modified under the terms +% of the GNU Public License, version 2. + +\mode + +\usepackage{textcase,regexpatch} + +\setbeamertemplate{blocks}[rounded][shadow=true] + + +\definecolor{TACCred}{RGB}{180,13,29} +\definecolor{TACCorange}{RGB}{210,104,43} +\definecolor{TACCblue}{RGB}{21,77,122} +%\definecolor{TACCgreen}{RGB}{30,134,104} +\definecolor{TACCgreen}{RGB}{49,168,51} + +% I downloaded a gimp color palette from +% http://maururu.net/2007/latex-beamer-color-palette/ +% Which provides rgb values (I think) for several of the +% default beamer themes. You can open this in gimp by +% opening the Palettes dialog, right-clicking anywhere and choosing +% 'Import Palette'. A color in there called 'default added blue' +% appeared to be approximately what I wanted. It had the triple +% of values 141 145 208. If you double-click on this in the +% palette editor it gives you a bunch of information. You can't +% use these values directly to set a color...it just comes out white. +% I think definecolor is expecting something normalized by 255. Yes! + + +%%% +% Set the normal text color +%%% +\setbeamercolor{normal text}{fg=black} %,bg=white} +\setbeamercolor{example text}{fg=TACCgreen} +\setbeamercolor{alerted text}{fg=TACCorange} + + +\setbeamercolor{structure}{fg=black} +%\setbeamercolor{structure}{fg=black} + +\setbeamercolor{background canvas}{parent=normal text} +\setbeamercolor{background}{parent=background canvas} + +\setbeamercolor{palette primary}{use=structure,fg=structure.fg} +\setbeamercolor{palette secondary}{use=structure,fg=structure.fg!75!black} +\setbeamercolor{palette tertiary}{use=structure,fg=structure.fg!50!black} +\setbeamercolor{palette quaternary}{fg=black} + +\setbeamercolor{palette sidebar primary}{use=normal text,fg=normal text.fg} +\setbeamercolor{palette sidebar secondary}{use=structure,fg=structure.fg} +\setbeamercolor{palette sidebar tertiary}{use=normal text,fg=normal text.fg} +\setbeamercolor{palette sidebar quaternary}{use=structure,fg=structure.fg} + +\setbeamercolor{math text}{} +\setbeamercolor{math text inlined}{parent=math text} +\setbeamercolor{math text displayed}{parent=math text} + +\setbeamercolor{normal text in math text}{} + +\setbeamercolor{local structure}{parent=structure} + +\setbeamercolor{titlelike}{parent=structure} + +\setbeamercolor{title}{parent=titlelike} +\setbeamercolor{title in head/foot}{parent=palette quaternary} +\setbeamercolor{title in sidebar}{parent=palette sidebar quaternary} + +\setbeamercolor{subtitle}{parent=title} + +\setbeamercolor{author}{} +\setbeamercolor{author in head/foot}{parent=palette primary} +\setbeamercolor{author in sidebar}{use=palette sidebar tertiary,fg=palette sidebar tertiary.fg} + +\setbeamercolor{institute}{} +\setbeamercolor{institute in head/foot}{parent=palette tertiary} +\setbeamercolor{institute in sidebar}{use=palette sidebar tertiary,fg=palette sidebar tertiary.fg} + +\setbeamercolor{date}{} +\setbeamercolor{date in head/foot}{parent=palette secondary} +\setbeamercolor{date in sidebar}{use=palette sidebar tertiary,fg=palette sidebar tertiary.fg} + +\setbeamercolor{titlegraphic}{} + +\setbeamercolor{part name}{} +\setbeamercolor{part title}{parent=titlelike} + +\setbeamercolor{section in toc}{parent=structure} +\setbeamercolor{section in toc shaded}{parent=section in toc} +\setbeamercolor{section in head/foot}{parent=palette tertiary} +\setbeamercolor{section in sidebar}{parent=palette sidebar secondary} +\setbeamercolor{section in sidebar shaded}{use=section in sidebar,fg=section in sidebar.fg!40!bg} +\setbeamercolor{section number projected}{parent=item projected} + +\setbeamercolor{subsection in toc}{} +\setbeamercolor{subsection in toc shaded}{parent=subsection in toc} +\setbeamercolor{subsection in head/foot}{parent=palette secondary} +\setbeamercolor{subsection in sidebar}{parent=palette sidebar primary} +\setbeamercolor{subsection in sidebar shaded}{use=subsection in sidebar,fg=subsection in sidebar.fg!40!bg} +\setbeamercolor{subsection number projected}{parent={subitem projected}} + +\setbeamercolor{subsubsection in toc}{parent=subsection in toc} +\setbeamercolor{subsubsection in toc shaded}{parent=subsubsection in toc} +\setbeamercolor{subsubsection in head/foot}{parent=subsection in head/foot} +\setbeamercolor{subsubsection in sidebar}{parent=subsection in sidebar} +\setbeamercolor{subsubsection in sidebar shaded}{parent=subsection in sidebar shaded} +\setbeamercolor{subsubsection number projected}{parent=subsubitem projected} + +\setbeamercolor{headline}{} +\setbeamercolor{footline}{} + +\setbeamercolor{sidebar}{} +\setbeamercolor{sidebar left}{parent=sidebar} +\setbeamercolor{sidebar right}{parent=sidebar} + +\setbeamercolor{logo}{parent=palette secondary} + +\setbeamercolor{frametitle}{parent=titlelike} +\setbeamercolor{framesubtitle}{parent=frametitle} + +\setbeamercolor{frametitle right}{parent=frametitle} + +\setbeamercolor{caption}{} +\setbeamercolor{caption name}{parent=structure} + +\setbeamercolor{button}{use=local structure,bg=local structure.fg!50!bg,fg=white} +\setbeamercolor{button border}{use=button,fg=button.bg} +\setbeamercolor{navigation symbols}{use=structure,fg=structure.fg!40!bg} +\setbeamercolor{navigation symbols dimmed}{use=structure,fg=structure.fg!20!bg} +\setbeamercolor{mini frame}{parent=section in head/foot} + +\setbeamercolor{block body}{fg=black} +\setbeamercolor{block body alerted}{fg=black} +\setbeamercolor{block body example}{fg=black} + +\setbeamercolor{block title}{bg=TACCblue,fg=white} +\setbeamercolor{block title alerted}{bg=TACCred,fg=white} +\setbeamercolor{block title example}{bg=TACCgreen,fg=white} + +\setbeamercolor{item}{parent=local structure} +\setbeamercolor{subitem}{parent=item} +\setbeamercolor{subsubitem}{parent=subitem} + +\setbeamercolor{item projected}{parent=item,use=item,fg=black,bg=item.fg} +\setbeamercolor{subitem projected}{parent=item projected} +\setbeamercolor{subsubitem projected}{parent=subitem projected} + +\setbeamercolor{enumerate item}{parent=item} +\setbeamercolor{enumerate subitem}{parent=subitem} +\setbeamercolor{enumerate subsubitem}{parent=subsubitem} + +\setbeamercolor{itemize item}{parent=item} +\setbeamercolor{itemize subitem}{parent=subitem} +\setbeamercolor{itemize subsubitem}{parent=subsubitem} + +\setbeamercolor{itemize/enumerate body}{} +\setbeamercolor{itemize/enumerate subbody}{} +\setbeamercolor{itemize/enumerate subsubbody}{} + +\setbeamercolor{description item}{parent=item} + +\setbeamercolor{bibliography item}{parent=item} + +\setbeamercolor{bibliography entry author}{use=structure,fg=structure.fg} +\setbeamercolor{bibliography entry title}{use=normal text,fg=normal text.fg} +\setbeamercolor{bibliography entry location}{use=structure,fg=structure.fg!65!bg} +\setbeamercolor{bibliography entry note}{use=structure,fg=structure.fg!65!bg} + +\setbeamercolor{separation line}{} + +\setbeamercolor{upper separation line head}{parent=separation line} +\setbeamercolor{middle separation line head}{parent=separation line} +\setbeamercolor{lower separation line head}{parent=separation line} + +\setbeamercolor{upper separation line foot}{parent=separation line} +\setbeamercolor{middle separation line foot}{parent=separation line} +\setbeamercolor{lower separation line foot}{parent=separation line} + +\setbeamercolor{abstract}{} +\setbeamercolor{abstract title}{parent=structure} + +\setbeamercolor{verse}{} + +\setbeamercolor{quotation}{} +\setbeamercolor{quote}{parent=quotation} + +\setbeamercolor{page number in head/foot}{fg=fg!50!bg} + +\setbeamercolor{qed symbol}{parent=structure} + +\mode + diff --git a/my_docs/22/lmod_zoom_mtg_2022_10_04/themes/beamerfontthemeTACC16.sty b/my_docs/22/lmod_zoom_mtg_2022_10_04/themes/beamerfontthemeTACC16.sty new file mode 100644 index 000000000..d0fc325cc --- /dev/null +++ b/my_docs/22/lmod_zoom_mtg_2022_10_04/themes/beamerfontthemeTACC16.sty @@ -0,0 +1,21 @@ +% Copyright 2003 by Till Tantau +% +% This program can be redistributed and/or modified under the terms +% of the GNU Public License, version 2. + +\mode +\setbeamerfont{title}{parent=structure,size=\LARGE,series=\bfseries} +\setbeamerfont{author}{parent=structure,size=\large, series=\normalfont} +\setbeamerfont{frametitle}{parent=structure,size=\LARGE,series=\bfseries} +\setbeamerfont{framesubtitle}{parent=frametitle,size=\small} + +%\usefonttheme{professionalfonts} % using non standard fonts for beamer +%\usefonttheme{serif} % default family is serif +%\usepackage{fontspec} +%\setmainfont{Century Gothic} + +%\usepackage{fontspec} +\usepackage{libertine} + +\mode + diff --git a/my_docs/22/lmod_zoom_mtg_2022_10_04/themes/beamerinnerthemeTACC16.sty b/my_docs/22/lmod_zoom_mtg_2022_10_04/themes/beamerinnerthemeTACC16.sty new file mode 100644 index 000000000..f7f454e1d --- /dev/null +++ b/my_docs/22/lmod_zoom_mtg_2022_10_04/themes/beamerinnerthemeTACC16.sty @@ -0,0 +1,11 @@ +\mode + +\setbeamertemplate{itemize item}[triangle] +\setbeamertemplate{itemize subitem}[triangle] +\setbeamertemplate{itemize subsubitem}[triangle] +\setbeamertemplate{section in toc}{$\bullet$\hskip.5em\inserttocsection} +%\setbeamertemplate{subsection in toc}{} +\setbeamertemplate{subsubsection in toc}{} + +\mode + diff --git a/my_docs/22/lmod_zoom_mtg_2022_10_04/themes/beamerouterthemeTACC16-169.sty b/my_docs/22/lmod_zoom_mtg_2022_10_04/themes/beamerouterthemeTACC16-169.sty new file mode 100644 index 000000000..c62f9ed04 --- /dev/null +++ b/my_docs/22/lmod_zoom_mtg_2022_10_04/themes/beamerouterthemeTACC16-169.sty @@ -0,0 +1,247 @@ +% Copyright 2003 by Till Tantau +% +% This program can be redistributed and/or modified under the terms +% of the GNU Public License, version 2. + +\mode + +\usepackage{xcolor} +\usepackage{graphicx} +\usepackage{etoolbox} + +\pgfdeclareimage[width=\paperwidth]{titlebackground}{./figures/master169.png} +\pgfdeclareimage[width=\paperwidth]{background}{./figures/secondary169.png} + +\setbeamertemplate{background canvas}{% + \ifnum\c@framenumber=1% + \begin{picture}(0,0) + \put(-0.15,-250){% + \pgfuseimage{titlebackground} + } + %\put(0,-130.7){% + + %\begin{minipage}[b][45mm][t]{\textwidth}%{226mm} + %\begin{center} + % \usebeamerfont{title}{\MakeTextUppercase{\inserttitle}\par} + %\vspace{2ex} + %\usebeamerfont{author}{\insertauthor} + % \end{center} + %\end{minipage} + %} + \end{picture} + % On title page + \else% + % Other frames background + \begin{picture}(0,0) + \put(-0.15,-255.55){% + \pgfuseimage{background} + } + \end{picture} + \fi% +} + + +\setbeamertemplate{title page}{ +\vspace{40pt} +\begin{center} +\usebeamerfont{title} {\huge \inserttitle}\par +\vspace{4ex} +\usebeamerfont{author} { + \insertauthor +}\par +\vspace{2ex} +\usebeamerfont{institute}{ + \insertinstitute +} \par +\vspace{2ex} +\usebeamerfont{date}{ + \insertdate +} +\end{center} +} + + +\setbeamertemplate{frametitle}[default][center] +\setbeamertemplate{frametitle}{ + \makeatletter + \regexpatchcmd{\insertframetitle} + {(\c{usebeamertemplate}.*)\c{fi}} + {\c{NoCaseChange}\cB\{\1\cE\}\c{fi}} + {}{}% + \makeatother + \vskip1ex + \insertframetitle +} + +% Here we define what appears at the bottom of each slide: the "footline". +\setbeamertemplate{footline}{% + \leavevmode% + + % Horizontal line dividing the rest of the slide from the footer? + % hrule goes all the way across... + % \hrule height.3pt% + % With \rule, you can specify the thickness + % \rule[raise-height]{width}{thickness} + % \hspace{.025\textwidth}\rule{.95\textwidth}{.5pt} + + \hbox{% + \ifnum \thepage>1 + % On the left half of the footer, insert the TACC of + \begin{minipage}{.2\textwidth}% + \hskip .05\textwidth%Give horizontal space else this will set on the left edge of the slide! + % \includegraphics[width=.8\textwidth]{TACC_logo.png} + \end{minipage} + + + \begin{minipage}{\textwidth}% + % \vskip .023\textheight% + \raggedleft% + \setlength{\rightskip}{\textwidth} + \hbox{% + \begin{beamercolorbox}[wd=0.7\textwidth,ht=2.25ex,dp=1ex,left]{author in head/foot}% + \insertshorttitle{} \hskip .01\textwidth | \hskip .01\textwidth \insertdate{} \hskip .01\textwidth | \hskip .01\textwidth \insertframenumber{} + \end{beamercolorbox}% + } + + % + % If we are not on the first page, insert a page number + % For some reason, insertframenumber is buggy when you have fragile + % slides with verbatim environments in them... it tends to skip numbers + % for some reason! On the other hand, the pagenumber is incremented + % for *every* slide, including transition slides... + % \hfill\includegraphics[width=\textwidth]{tacc_ut.png} + \end{minipage}% + \begin{minipage}{.05\textwidth}% + \end{minipage}% + \fi %\thepage>1 + }% + \vskip .023\textheight% + +} + + + + +\ifTACCheadernav + +\usesectionheadtemplate +{\hfill\insertsectionhead} +{\hfill\color{fg!50!bg}\insertsectionhead} + +% Head +\ifbeamer@compress + +% Here we define how the top of the frame looks, the "headline". +\setbeamertemplate{headline} +{% + \ifnum \thepage>1 + \leavevmode% + \begin{beamercolorbox}[wd=.5\paperwidth,ht=2.5ex,dp=1.125ex]{% + section in head/foot}% + \insertsectionnavigationhorizontal{.5\paperwidth}{\hskip0pt plus1filll}{}% + \end{beamercolorbox}% + \begin{beamercolorbox}[wd=.5\paperwidth,ht=2.5ex,dp=1.125ex]{% + subsection in head/foot}% + \insertsubsectionnavigationhorizontal{% + .5\paperwidth}{}{\hskip0pt plus1filll}% + \end{beamercolorbox}% + \fi %\thepage>1 +} + +\else% Not compressed + +\setbeamertemplate{headline} +{% + \ifnum \thepage>1 + \leavevmode% + \@tempdimb=2.4375ex% + \ifnum\beamer@subsectionmax<\beamer@sectionmax% + \multiply\@tempdimb by\beamer@sectionmax% + \else% + \multiply\@tempdimb by\beamer@subsectionmax% + \fi% + \ifdim\@tempdimb>0pt% + \advance\@tempdimb by 1.125ex% + \begin{beamercolorbox}[wd=.5\paperwidth,ht=\@tempdimb]{% + section in head/foot}% + \vbox to\@tempdimb{\vfil\insertsectionnavigation{.5\paperwidth}\vfil}% + \end{beamercolorbox}% + \begin{beamercolorbox}[wd=.5\paperwidth,ht=\@tempdimb]{% + subsection in head/foot}% + \vbox to\@tempdimb{\vfil\insertsubsectionnavigation{.5\paperwidth}\vfil}% + \end{beamercolorbox}% + \fi% + \fi % \thepage>1 +} + +\fi % end if compressed +\fi % TACCheadernav + + +\ifTACCheadertree + +\setbeamertemplate{headline} +{ + \begin{beamercolorbox}[wd=\paperwidth,colsep=1.5pt]{upper separation line head} + \end{beamercolorbox} + % + % Place short title + % + \begin{beamercolorbox}[wd=\paperwidth,ht=2.5ex,dp=1.125ex,% + leftskip=.3cm,rightskip=.3cm plus1fil]{title in head/foot} + \usebeamerfont{title in head/foot}\insertshorttitle + \end{beamercolorbox} + + % + % Place section + % + \begin{beamercolorbox}[wd=\paperwidth,ht=2.5ex,dp=1.125ex,% + leftskip=.3cm,rightskip=.3cm plus1fil]{section in head/foot} + \usebeamerfont{section in head/foot}% + %\ifbeamer@tree@showhooks + \setbox\beamer@tempbox=\hbox{\insertsectionhead}% + \ifdim\wd\beamer@tempbox>1pt% + \hskip2pt\raise1.9pt\hbox{\vrule width0.4pt height1.875ex\vrule width 5pt height0.4pt}% + \hskip1pt% + \fi + \insertsectionhead + \end{beamercolorbox} + +% +% Place subsection +% +\begin{beamercolorbox}[wd=\paperwidth,ht=2.5ex,dp=1.125ex,% + leftskip=.3cm,rightskip=.3cm plus1fil]{subsection in head/foot} + \usebeamerfont{subsection in head/foot}% + %\ifbeamer@tree@showhooks + \setbox\beamer@tempbox=\hbox{\insertsubsectionhead}% + \ifdim\wd\beamer@tempbox>1pt% + \hskip9.4pt\raise1.9pt\hbox{\vrule width0.4pt height1.875ex\vrule width 5pt height0.4pt}% + \hskip1pt% + \fi + \insertsubsectionhead +\end{beamercolorbox} + +% +% Place final separation box +% + \begin{beamercolorbox}[wd=\paperwidth,colsep=1.5pt + ]{lower separation line head} + \end{beamercolorbox} + + % + % Another matching rule which helps to frame the content + % + \hspace{.025\textwidth}\rule{.95\textwidth}{.5pt} +} +\fi % TACCheadertree + + +% The following command suppresses all navigation symbols. This is +% necessary in the TACC theme, since it overlaps where we want the +% logo to be. +\setbeamertemplate{navigation symbols}{} + + +\mode + diff --git a/my_docs/22/lmod_zoom_mtg_2022_10_04/themes/beamerouterthemeTACC16.sty b/my_docs/22/lmod_zoom_mtg_2022_10_04/themes/beamerouterthemeTACC16.sty new file mode 100644 index 000000000..c5b178018 --- /dev/null +++ b/my_docs/22/lmod_zoom_mtg_2022_10_04/themes/beamerouterthemeTACC16.sty @@ -0,0 +1,247 @@ +% Copyright 2003 by Till Tantau +% +% This program can be redistributed and/or modified under the terms +% of the GNU Public License, version 2. + +\mode + +\usepackage{xcolor} +\usepackage{graphicx} +\usepackage{etoolbox} + +\pgfdeclareimage[width=\paperwidth]{titlebackground}{master.jpg} +\pgfdeclareimage[width=\paperwidth]{background}{secondary.jpg} + +\setbeamertemplate{background canvas}{% + \ifnum\c@framenumber=1% + \begin{picture}(0,0) + \put(0,-273){% + \pgfuseimage{titlebackground} + } + %\put(0,-130.7){% + + %\begin{minipage}[b][45mm][t]{\textwidth}%{226mm} + %\begin{center} + % \usebeamerfont{title}{\MakeTextUppercase{\inserttitle}\par} + %\vspace{2ex} + %\usebeamerfont{author}{\insertauthor} + % \end{center} + %\end{minipage} + %} + \end{picture} + % On title page + \else% + % Other frames background + \begin{picture}(0,0) + \put(0,-273){% + \pgfuseimage{background} + } + \end{picture} + \fi% +} + + +\setbeamertemplate{title page}{ +\vspace{40pt} +\begin{center} +\usebeamerfont{title} {\huge \inserttitle}\par +\vspace{4ex} +\usebeamerfont{author} { + \insertauthor +}\par +\vspace{2ex} +\usebeamerfont{institute}{ + \insertinstitute +} \par +\vspace{2ex} +\usebeamerfont{date}{ + \insertdate +} +\end{center} +} + + +\setbeamertemplate{frametitle}[default][center] +\setbeamertemplate{frametitle}{ + \makeatletter + \regexpatchcmd{\insertframetitle} + {(\c{usebeamertemplate}.*)\c{fi}} + {\c{NoCaseChange}\cB\{\1\cE\}\c{fi}} + {}{}% + \makeatother + \vskip1ex + \insertframetitle +} + +% Here we define what appears at the bottom of each slide: the "footline". +\setbeamertemplate{footline}{% + \leavevmode% + + % Horizontal line dividing the rest of the slide from the footer? + % hrule goes all the way across... + % \hrule height.3pt% + % With \rule, you can specify the thickness + % \rule[raise-height]{width}{thickness} + % \hspace{.025\textwidth}\rule{.95\textwidth}{.5pt} + + \hbox{% + \ifnum \thepage>1 + % On the left half of the footer, insert the TACC of + \begin{minipage}{.2\textwidth}% + \hskip .05\textwidth%Give horizontal space else this will set on the left edge of the slide! + % \includegraphics[width=.8\textwidth]{figures/TACC_logo.png} + \end{minipage} + + + \begin{minipage}{\textwidth}% + % \vskip .023\textheight% + \raggedleft% + \setlength{\rightskip}{\textwidth} + \hbox{% + \begin{beamercolorbox}[wd=0.7\textwidth,ht=2.25ex,dp=1ex,left]{author in head/foot}% + \insertshorttitle{} \hskip .01\textwidth | \hskip .01\textwidth \insertdate{} \hskip .01\textwidth | \hskip .01\textwidth \insertframenumber{} + \end{beamercolorbox}% + } + + % + % If we are not on the first page, insert a page number + % For some reason, insertframenumber is buggy when you have fragile + % slides with verbatim environments in them... it tends to skip numbers + % for some reason! On the other hand, the pagenumber is incremented + % for *every* slide, including transition slides... + % \hfill\includegraphics[width=\textwidth]{figures/tacc_ut.png} + \end{minipage}% + \begin{minipage}{.05\textwidth}% + \end{minipage}% + \fi %\thepage>1 + }% + \vskip .023\textheight% + +} + + + + +\ifTACCheadernav + +\usesectionheadtemplate +{\hfill\insertsectionhead} +{\hfill\color{fg!50!bg}\insertsectionhead} + +% Head +\ifbeamer@compress + +% Here we define how the top of the frame looks, the "headline". +\setbeamertemplate{headline} +{% + \ifnum \thepage>1 + \leavevmode% + \begin{beamercolorbox}[wd=.5\paperwidth,ht=2.5ex,dp=1.125ex]{% + section in head/foot}% + \insertsectionnavigationhorizontal{.5\paperwidth}{\hskip0pt plus1filll}{}% + \end{beamercolorbox}% + \begin{beamercolorbox}[wd=.5\paperwidth,ht=2.5ex,dp=1.125ex]{% + subsection in head/foot}% + \insertsubsectionnavigationhorizontal{% + .5\paperwidth}{}{\hskip0pt plus1filll}% + \end{beamercolorbox}% + \fi %\thepage>1 +} + +\else% Not compressed + +\setbeamertemplate{headline} +{% + \ifnum \thepage>1 + \leavevmode% + \@tempdimb=2.4375ex% + \ifnum\beamer@subsectionmax<\beamer@sectionmax% + \multiply\@tempdimb by\beamer@sectionmax% + \else% + \multiply\@tempdimb by\beamer@subsectionmax% + \fi% + \ifdim\@tempdimb>0pt% + \advance\@tempdimb by 1.125ex% + \begin{beamercolorbox}[wd=.5\paperwidth,ht=\@tempdimb]{% + section in head/foot}% + \vbox to\@tempdimb{\vfil\insertsectionnavigation{.5\paperwidth}\vfil}% + \end{beamercolorbox}% + \begin{beamercolorbox}[wd=.5\paperwidth,ht=\@tempdimb]{% + subsection in head/foot}% + \vbox to\@tempdimb{\vfil\insertsubsectionnavigation{.5\paperwidth}\vfil}% + \end{beamercolorbox}% + \fi% + \fi % \thepage>1 +} + +\fi % end if compressed +\fi % TACCheadernav + + +\ifTACCheadertree + +\setbeamertemplate{headline} +{ + \begin{beamercolorbox}[wd=\paperwidth,colsep=1.5pt]{upper separation line head} + \end{beamercolorbox} + % + % Place short title + % + \begin{beamercolorbox}[wd=\paperwidth,ht=2.5ex,dp=1.125ex,% + leftskip=.3cm,rightskip=.3cm plus1fil]{title in head/foot} + \usebeamerfont{title in head/foot}\insertshorttitle + \end{beamercolorbox} + + % + % Place section + % + \begin{beamercolorbox}[wd=\paperwidth,ht=2.5ex,dp=1.125ex,% + leftskip=.3cm,rightskip=.3cm plus1fil]{section in head/foot} + \usebeamerfont{section in head/foot}% + %\ifbeamer@tree@showhooks + \setbox\beamer@tempbox=\hbox{\insertsectionhead}% + \ifdim\wd\beamer@tempbox>1pt% + \hskip2pt\raise1.9pt\hbox{\vrule width0.4pt height1.875ex\vrule width 5pt height0.4pt}% + \hskip1pt% + \fi + \insertsectionhead + \end{beamercolorbox} + +% +% Place subsection +% +\begin{beamercolorbox}[wd=\paperwidth,ht=2.5ex,dp=1.125ex,% + leftskip=.3cm,rightskip=.3cm plus1fil]{subsection in head/foot} + \usebeamerfont{subsection in head/foot}% + %\ifbeamer@tree@showhooks + \setbox\beamer@tempbox=\hbox{\insertsubsectionhead}% + \ifdim\wd\beamer@tempbox>1pt% + \hskip9.4pt\raise1.9pt\hbox{\vrule width0.4pt height1.875ex\vrule width 5pt height0.4pt}% + \hskip1pt% + \fi + \insertsubsectionhead +\end{beamercolorbox} + +% +% Place final separation box +% + \begin{beamercolorbox}[wd=\paperwidth,colsep=1.5pt + ]{lower separation line head} + \end{beamercolorbox} + + % + % Another matching rule which helps to frame the content + % + \hspace{.025\textwidth}\rule{.95\textwidth}{.5pt} +} +\fi % TACCheadertree + + +% The following command suppresses all navigation symbols. This is +% necessary in the TACC theme, since it overlaps where we want the +% logo to be. +\setbeamertemplate{navigation symbols}{} + + +\mode + diff --git a/my_docs/22/lmod_zoom_mtg_2022_10_04/themes/beamerthemeTACC16-169.sty b/my_docs/22/lmod_zoom_mtg_2022_10_04/themes/beamerthemeTACC16-169.sty new file mode 100644 index 000000000..22caf9a05 --- /dev/null +++ b/my_docs/22/lmod_zoom_mtg_2022_10_04/themes/beamerthemeTACC16-169.sty @@ -0,0 +1,38 @@ +%% TACC theme for beamer + +\newif\ifTACCheadernav +\DeclareOption{headernav}{\global\TACCheadernavtrue} + +\newif\ifTACCheadertree +\DeclareOption{headertree}{\global\TACCheadertreetrue} +\ProcessOptions + +\mode + +\makeatletter + \def\beamer@calltheme#1#2#3{% + \def\beamer@themelist{#2} + \@for\beamer@themename:=\beamer@themelist\do + {\usepackage[{#1}]{\beamer@themelocation/#3\beamer@themename}}} + + \def\usefolder#1{ + \def\beamer@themelocation{#1} + } + \def\beamer@themelocation{} + +\usefolder{themes} +\usefonttheme{TACC16} +\useinnertheme{TACC16} +\useoutertheme{TACC16-169} +\usecolortheme{TACC16} + +\mode + + +\newcommand{\event}[1]{% + \makeatletter% + \def\TACC@eventname{#1}% + \makeatother} + +\newcommand{\sectionframe}[1]{\section{#1}\frame{\Large\textbf{#1}}} +\newcommand{\subsectionframe}[1]{\subsection{#1}\frame{\large\textbf{#1}}} diff --git a/my_docs/22/lmod_zoom_mtg_2022_10_04/themes/beamerthemeTACC16.sty b/my_docs/22/lmod_zoom_mtg_2022_10_04/themes/beamerthemeTACC16.sty new file mode 100644 index 000000000..750bdd388 --- /dev/null +++ b/my_docs/22/lmod_zoom_mtg_2022_10_04/themes/beamerthemeTACC16.sty @@ -0,0 +1,26 @@ +%% TACC theme for beamer + +\newif\ifTACCheadernav +\DeclareOption{headernav}{\global\TACCheadernavtrue} + +\newif\ifTACCheadertree +\DeclareOption{headertree}{\global\TACCheadertreetrue} +\ProcessOptions + +\mode + +\usefonttheme{TACC16} +\useinnertheme{TACC16} +\useoutertheme{TACC16} +\usecolortheme{TACC16} + +\mode + + +\newcommand{\event}[1]{% + \makeatletter% + \def\TACC@eventname{#1}% + \makeatother} + +\newcommand{\sectionframe}[1]{\section{#1}\frame{\Large\textbf{#1}}} +\newcommand{\subsectionframe}[1]{\subsection{#1}\frame{\large\textbf{#1}}} diff --git a/my_docs/22/lmod_zoom_mtg_2022_10_04/themes/example.pdf b/my_docs/22/lmod_zoom_mtg_2022_10_04/themes/example.pdf new file mode 100644 index 000000000..add373eee Binary files /dev/null and b/my_docs/22/lmod_zoom_mtg_2022_10_04/themes/example.pdf differ diff --git a/my_docs/22/lmod_zoom_mtg_2022_10_04/themes/license.tex b/my_docs/22/lmod_zoom_mtg_2022_10_04/themes/license.tex new file mode 100644 index 000000000..74ff86759 --- /dev/null +++ b/my_docs/22/lmod_zoom_mtg_2022_10_04/themes/license.tex @@ -0,0 +1,14 @@ + +\begin{frame}{License} +\footnotesize +\textcopyright The University of Texas at Austin, \the\year\\ +\vspace{0.5 cm} +This work is licensed under the Creative Commons Attribution Non-Commercial 3.0 Unported License. To view a copy of this license, +visit http://creativecommons.org/licenses/by-nc/3.0/\\ +\vspace{0.5 cm} +When attributing this work, please use the following text: +"Designing and Administering Large-scale Systems", Texas Advanced Computing Center, \the\year. Available under a Creative Commons Attribution Non-Commercial 3.0 Unported License. +\newline +\newline +\includegraphics[width=1cm]{./figures/cc.png} +\end{frame} \ No newline at end of file diff --git a/my_docs/22/lmod_zoom_mtg_2022_11_08/Lmod-4color@2x.png b/my_docs/22/lmod_zoom_mtg_2022_11_08/Lmod-4color@2x.png deleted file mode 120000 index 47d505dbf..000000000 --- a/my_docs/22/lmod_zoom_mtg_2022_11_08/Lmod-4color@2x.png +++ /dev/null @@ -1 +0,0 @@ -../../beamer/Lmod-4color@2x.png \ No newline at end of file diff --git a/my_docs/22/lmod_zoom_mtg_2022_11_08/Lmod-4color@2x.png b/my_docs/22/lmod_zoom_mtg_2022_11_08/Lmod-4color@2x.png new file mode 100644 index 000000000..4810d74c3 Binary files /dev/null and b/my_docs/22/lmod_zoom_mtg_2022_11_08/Lmod-4color@2x.png differ diff --git a/my_docs/22/lmod_zoom_mtg_2022_11_08/beamercolorthemeTACC.sty b/my_docs/22/lmod_zoom_mtg_2022_11_08/beamercolorthemeTACC.sty deleted file mode 120000 index 8d27e673a..000000000 --- a/my_docs/22/lmod_zoom_mtg_2022_11_08/beamercolorthemeTACC.sty +++ /dev/null @@ -1 +0,0 @@ -../../beamer/beamercolorthemeTACC.sty \ No newline at end of file diff --git a/my_docs/22/lmod_zoom_mtg_2022_11_08/beamercolorthemeTACC.sty b/my_docs/22/lmod_zoom_mtg_2022_11_08/beamercolorthemeTACC.sty new file mode 100755 index 000000000..78beb6a4a --- /dev/null +++ b/my_docs/22/lmod_zoom_mtg_2022_11_08/beamercolorthemeTACC.sty @@ -0,0 +1,323 @@ +% Copyright 2003 by Till Tantau . +% +% This program can be redistributed and/or modified under the terms +% of the GNU Public License, version 2. + +\mode + +% I downloaded a gimp color palette from +% http://maururu.net/2007/latex-beamer-color-palette/ +% Which provides rgb values (I think) for several of the +% default beamer themes. You can open this in gimp by +% opening the Palettes dialog, right-clicking anywhere and choosing +% 'Import Palette'. A color in there called 'default added blue' +% appeared to be approximately what I wanted. It had the triple +% of values 141 145 208. If you double-click on this in the +% palette editor it gives you a bunch of information. You can't +% use these values directly to set a color...it just comes out white. +% I think definecolor is expecting something normalized by 255. Yes! + + +% bluish colors +\definecolor{defaddedblue}{rgb}{0.5529,.5686,.8157} % 141,145,208 +\definecolor{defblockheader}{rgb}{.1921,.2235,.6824} % 49,57,174 +\definecolor{flyaddedblue}{rgb}{.5961,.6118,.8431} % 152,156,215 + +% bluish-greys +\definecolor{beetleaddedblue1}{rgb}{.3333,.4039,.6196} % 85 103 158, dark +\definecolor{beetleaddedblue2}{rgb}{.4510,.5098,.7020} % 115 130 179, medium +\definecolor{beetleaddedblue3}{rgb}{.7059,.7255,.7961} % 180 185 203, light (greyest) + +% very light blue-greys +\definecolor{deflightouter1}{rgb}{.7608,.7647,.9020} % 194 195 230, dark +\definecolor{deflightouter2}{rgb}{.8 ,.8039,.9176} % 204 205 234, medium +\definecolor{deflightouter3}{rgb}{.8392,.8431,.9373} % 214 215 239, light + +% reddish colors +\definecolor{flyalertblockheader}{rgb}{.7373,.1294,.1333} % 188 33 34 +\definecolor{flyaddedred}{rgb}{.8667,.5647,.5647}% 221 144 144 +\definecolor{beaverouterframe}{rgb}{.5529,.0980,.0980}% 141 25 25 + +% greens (green is used for 'examples' in beamer) +\definecolor{defexblock}{rgb}{.9098,.9333,.9020} % 232 238 230, light +\definecolor{defaddedgreen}{rgb}{.5412,.6510,.4706} % 138 166 120, medium +\definecolor{defexblockheader}{rgb}{.1686,.3647,.0392} % 43 93 10, dark + +\definecolor{lightexblock}{rgb}{.9137,.9451,.9020} % 233 241 230, light +\definecolor{lightexblockheader}{rgb}{.8235,.8980,.8} % 210 229 204, medium +\definecolor{lightexblockheadertext}{rgb}{.2431,.5098,.0745} % 62 130 19, dark + + +%%% +% Set the normal text color +%%% +\setbeamercolor{normal text}{fg=black,bg=white} + +%%% +% Set the alerted text color +%%% +% \setbeamercolor{alerted text}{fg=red} +\setbeamercolor{alerted text}{fg=red!50!black} % half black/half red for green bg +% \setbeamercolor{alerted text}{fg=beaverouterframe} +% \setbeamercolor{alerted text}{fg=defblockheader} % doesn't stand out enough + + +% Set the 'example' text +\setbeamercolor{example text}{fg=green!50!black} + +\setbeamercolor{structure}{fg=black} + +\setbeamercolor{background canvas}{parent=normal text} +\setbeamercolor{background}{parent=background canvas} + +\setbeamercolor{palette primary}{use=structure,fg=structure.fg} +\setbeamercolor{palette secondary}{use=structure,fg=structure.fg!75!black} +\setbeamercolor{palette tertiary}{use=structure,fg=structure.fg!50!black} +\setbeamercolor{palette quaternary}{fg=black} + +\setbeamercolor{palette sidebar primary}{use=normal text,fg=normal text.fg} +\setbeamercolor{palette sidebar secondary}{use=structure,fg=structure.fg} +\setbeamercolor{palette sidebar tertiary}{use=normal text,fg=normal text.fg} +\setbeamercolor{palette sidebar quaternary}{use=structure,fg=structure.fg} + +\setbeamercolor{math text}{} +\setbeamercolor{math text inlined}{parent=math text} +\setbeamercolor{math text displayed}{parent=math text} + +\setbeamercolor{normal text in math text}{} + +\setbeamercolor{local structure}{parent=structure} + +\setbeamercolor{titlelike}{parent=structure} + +\setbeamercolor{title}{parent=titlelike} +\setbeamercolor{title in head/foot}{parent=palette quaternary} +\setbeamercolor{title in sidebar}{parent=palette sidebar quaternary} + +\setbeamercolor{subtitle}{parent=title} + +\setbeamercolor{author}{} +\setbeamercolor{author in head/foot}{parent=palette primary} +\setbeamercolor{author in sidebar}{use=palette sidebar tertiary,fg=palette sidebar tertiary.fg} + +\setbeamercolor{institute}{} +\setbeamercolor{institute in head/foot}{parent=palette tertiary} +\setbeamercolor{institute in sidebar}{use=palette sidebar tertiary,fg=palette sidebar tertiary.fg} + +\setbeamercolor{date}{} +\setbeamercolor{date in head/foot}{parent=palette secondary} +\setbeamercolor{date in sidebar}{use=palette sidebar tertiary,fg=palette sidebar tertiary.fg} + +\setbeamercolor{titlegraphic}{} + +\setbeamercolor{part name}{} +\setbeamercolor{part title}{parent=titlelike} + +\setbeamercolor{section in toc}{parent=structure} +\setbeamercolor{section in toc shaded}{parent=section in toc} +\setbeamercolor{section in head/foot}{parent=palette tertiary} +\setbeamercolor{section in sidebar}{parent=palette sidebar secondary} +\setbeamercolor{section in sidebar shaded}{use=section in sidebar,fg=section in sidebar.fg!40!bg} +\setbeamercolor{section number projected}{parent=item projected} + +\setbeamercolor{subsection in toc}{} +\setbeamercolor{subsection in toc shaded}{parent=subsection in toc} +\setbeamercolor{subsection in head/foot}{parent=palette secondary} +\setbeamercolor{subsection in sidebar}{parent=palette sidebar primary} +\setbeamercolor{subsection in sidebar shaded}{use=subsection in sidebar,fg=subsection in sidebar.fg!40!bg} +\setbeamercolor{subsection number projected}{parent={subitem projected}} + +\setbeamercolor{subsubsection in toc}{parent=subsection in toc} +\setbeamercolor{subsubsection in toc shaded}{parent=subsubsection in toc} +\setbeamercolor{subsubsection in head/foot}{parent=subsection in head/foot} +\setbeamercolor{subsubsection in sidebar}{parent=subsection in sidebar} +\setbeamercolor{subsubsection in sidebar shaded}{parent=subsection in sidebar shaded} +\setbeamercolor{subsubsection number projected}{parent=subsubitem projected} + +\setbeamercolor{headline}{} +\setbeamercolor{footline}{} + +\setbeamercolor{sidebar}{} +\setbeamercolor{sidebar left}{parent=sidebar} +\setbeamercolor{sidebar right}{parent=sidebar} + +\setbeamercolor{logo}{parent=palette secondary} + +\setbeamercolor{frametitle}{parent=titlelike} +\setbeamercolor{framesubtitle}{parent=frametitle} + +\setbeamercolor{frametitle right}{parent=frametitle} + +\setbeamercolor{caption}{} +\setbeamercolor{caption name}{parent=structure} + +\setbeamercolor{button}{use=local structure,bg=local structure.fg!50!bg,fg=white} +\setbeamercolor{button border}{use=button,fg=button.bg} +\setbeamercolor{navigation symbols}{use=structure,fg=structure.fg!40!bg} +\setbeamercolor{navigation symbols dimmed}{use=structure,fg=structure.fg!20!bg} +\setbeamercolor{mini frame}{parent=section in head/foot} + +% Color expressions are defined in the xcolor package +% +% Ex: Mixture of 40% green, 60% yellow: green!40!yellow +% +% The complement of any color can be obtained by prepending +% a minus sign: -green!40!yellow +% +% One can also combine up to three colors (in differing proportions) +% using the rgb command. For example, the following command combines +% 3 parts of the first color, with 2 parts of the second, and one part +% "red" +% +%\color{rgb:-green!40!yellow,3;green!40!yellow,2;red,1} +% Unfortunately, I don't think this works as an argument to setbeamercolor... +% "Orange" bg=green!30!yellow!30!red +% close to burnt orange: red!75!green +% lightgray is a color, but gray!25!white looks better +% +% A nice pair of greens +% (dark, a little too dark to be under black text...) -red!75!green!50!blue!25 +% (light) -red!75!green!50!blue!25!gray +% +% Some colors are only available via options to the xcolor package, eg. +% x11names,DarkOliveGreen4 +% svgnames, Chartreuse +% dvipsnames, ForestGreen +% +% but beamer does not seem to have any of these. +% +% The base color names which are always available are: +% black +% blue +% brown +% cyan +% darkgray +% gray +% green +% lightgray +% lime +% magenta +% olive +% orange +% pink +% purple +% red +% teal +% violet +% white +% yellow + +% From the beamer user guide, pg. 167 +% Inner color themes only specify the colors of elements used in inner +% themes. Most noticably, they specify the colors used for blocks. +% ... + +% Example color definition +% beamercolorthemedefault.sty:\definecolor{beamer@blendedblue}{rgb}{0.2,0.2,0.7} +% beamercolorthemedefault.sty:\setbeamercolor{structure}{fg=beamer@blendedblue} + +% The greens +% \setbeamercolor{block body}{bg=-red!75!green!50!blue!25!gray} +% \setbeamercolor{block title}{parent=structure,bg=-red!75!green!50!blue!25,fg=-red!75!green!50!blue!25!gray} + +%%% +% Set the block body and title background/foreground colors +%%% +% \setbeamercolor{block body}{bg=flyaddedblue} +% \setbeamercolor{block title}{bg=defblockheader,fg=flyaddedblue} + +% Purplish blues, too dark overall +% \setbeamercolor{block body}{bg=beetleaddedblue3} +% \setbeamercolor{block title}{bg=beetleaddedblue2,fg=beetleaddedblue3} + +% Very light blue greys +% 1. Not enough contrast +% \setbeamercolor{block body}{bg=deflightouter3} +% \setbeamercolor{block title}{bg=deflightouter2,fg=deflightouter3} + +% 2. Not enough contrast +% \setbeamercolor{block body}{bg=deflightouter3} +% \setbeamercolor{block title}{bg=deflightouter1,fg=deflightouter3} + +% 3. Combination of deflightouter and fly. The block bg is +% lighter than the all-beetle color scheme I previously thought was best. +% Currently I like this one the best +\setbeamercolor{block body}{bg=deflightouter3} +\setbeamercolor{block title}{bg=beetleaddedblue2,fg=deflightouter3} + +% 4. Greens. Looks like a highlighter. I don't really trust greens +% on projectors... It's almost too bright/hurts your eyes. +% \setbeamercolor{block body}{bg=defexblock} +% \setbeamercolor{block title}{bg=defaddedgreen,fg=defexblock} + +% This looks pretty good ... it's similar to the greens we had before +% but should be lighter. The blocks are just a little too "mint" colored +% though... +% \setbeamercolor{block body}{bg=defexblock} +% \setbeamercolor{block title}{bg=defexblockheader,fg=defexblock} + +% Pea Soup! +%\setbeamercolor{block body}{bg=defaddedgreen} +%\setbeamercolor{block title}{bg=defexblockheader,fg=defaddedgreen} + + +% Changing these didn't seem to do anything...I had to change the +% 'alerted text' color instead +\setbeamercolor{block body alerted}{} +\setbeamercolor{block body example}{} +\setbeamercolor{block title alerted}{parent=alerted text} +\setbeamercolor{block title example}{parent=example text} + +\setbeamercolor{item}{parent=local structure} +\setbeamercolor{subitem}{parent=item} +\setbeamercolor{subsubitem}{parent=subitem} + +\setbeamercolor{item projected}{parent=item,use=item,fg=white,bg=item.fg} +\setbeamercolor{subitem projected}{parent=item projected} +\setbeamercolor{subsubitem projected}{parent=subitem projected} + +\setbeamercolor{enumerate item}{parent=item} +\setbeamercolor{enumerate subitem}{parent=subitem} +\setbeamercolor{enumerate subsubitem}{parent=subsubitem} + +\setbeamercolor{itemize item}{parent=item} +\setbeamercolor{itemize subitem}{parent=subitem} +\setbeamercolor{itemize subsubitem}{parent=subsubitem} + +\setbeamercolor{itemize/enumerate body}{} +\setbeamercolor{itemize/enumerate subbody}{} +\setbeamercolor{itemize/enumerate subsubbody}{} + +\setbeamercolor{description item}{parent=item} + +\setbeamercolor{bibliography item}{parent=item} + +\setbeamercolor{bibliography entry author}{use=structure,fg=structure.fg} +\setbeamercolor{bibliography entry title}{use=normal text,fg=normal text.fg} +\setbeamercolor{bibliography entry location}{use=structure,fg=structure.fg!65!bg} +\setbeamercolor{bibliography entry note}{use=structure,fg=structure.fg!65!bg} + +\setbeamercolor{separation line}{} + +\setbeamercolor{upper separation line head}{parent=separation line} +\setbeamercolor{middle separation line head}{parent=separation line} +\setbeamercolor{lower separation line head}{parent=separation line} + +\setbeamercolor{upper separation line foot}{parent=separation line} +\setbeamercolor{middle separation line foot}{parent=separation line} +\setbeamercolor{lower separation line foot}{parent=separation line} + +\setbeamercolor{abstract}{} +\setbeamercolor{abstract title}{parent=structure} + +\setbeamercolor{verse}{} + +\setbeamercolor{quotation}{} +\setbeamercolor{quote}{parent=quotation} + +\setbeamercolor{page number in head/foot}{fg=fg!50!bg} + +\setbeamercolor{qed symbol}{parent=structure} + +\mode + diff --git a/my_docs/22/lmod_zoom_mtg_2022_11_08/beamercolorthemeTACC16.sty b/my_docs/22/lmod_zoom_mtg_2022_11_08/beamercolorthemeTACC16.sty deleted file mode 120000 index 58415801b..000000000 --- a/my_docs/22/lmod_zoom_mtg_2022_11_08/beamercolorthemeTACC16.sty +++ /dev/null @@ -1 +0,0 @@ -../../beamer/beamercolorthemeTACC16.sty \ No newline at end of file diff --git a/my_docs/22/lmod_zoom_mtg_2022_11_08/beamercolorthemeTACC16.sty b/my_docs/22/lmod_zoom_mtg_2022_11_08/beamercolorthemeTACC16.sty new file mode 100755 index 000000000..779dde91f --- /dev/null +++ b/my_docs/22/lmod_zoom_mtg_2022_11_08/beamercolorthemeTACC16.sty @@ -0,0 +1,192 @@ +% Copyright 2003 by Till Tantau . +% +% This program can be redistributed and/or modified under the terms +% of the GNU Public License, version 2. + +\mode + +\usepackage{textcase,regexpatch} + +\setbeamertemplate{blocks}[rounded][shadow=true] + + +\definecolor{TACCred}{RGB}{180,13,29} +\definecolor{TACCorange}{RGB}{210,104,43} +\definecolor{TACCblue}{RGB}{108, 134, 191} +\definecolor{TACCgreen}{RGB}{23,106,70} + +% I downloaded a gimp color palette from +% http://maururu.net/2007/latex-beamer-color-palette/ +% Which provides rgb values (I think) for several of the +% default beamer themes. You can open this in gimp by +% opening the Palettes dialog, right-clicking anywhere and choosing +% 'Import Palette'. A color in there called 'default added blue' +% appeared to be approximately what I wanted. It had the triple +% of values 141 145 208. If you double-click on this in the +% palette editor it gives you a bunch of information. You can't +% use these values directly to set a color...it just comes out white. +% I think definecolor is expecting something normalized by 255. Yes! + + +%%% +% Set the normal text color +%%% +\setbeamercolor{normal text}{fg=black} %,bg=white} +\setbeamercolor{example text}{fg=TACCgreen} +\setbeamercolor{alerted text}{fg=TACCorange} + + +\setbeamercolor{structure}{fg=black} +%\setbeamercolor{structure}{fg=black} + +\setbeamercolor{background canvas}{parent=normal text} +\setbeamercolor{background}{parent=background canvas} + +\setbeamercolor{palette primary}{use=structure,fg=structure.fg} +\setbeamercolor{palette secondary}{use=structure,fg=structure.fg!75!black} +\setbeamercolor{palette tertiary}{use=structure,fg=structure.fg!50!black} +\setbeamercolor{palette quaternary}{fg=black} + +\setbeamercolor{palette sidebar primary}{use=normal text,fg=normal text.fg} +\setbeamercolor{palette sidebar secondary}{use=structure,fg=structure.fg} +\setbeamercolor{palette sidebar tertiary}{use=normal text,fg=normal text.fg} +\setbeamercolor{palette sidebar quaternary}{use=structure,fg=structure.fg} + +\setbeamercolor{math text}{} +\setbeamercolor{math text inlined}{parent=math text} +\setbeamercolor{math text displayed}{parent=math text} + +\setbeamercolor{normal text in math text}{} + +\setbeamercolor{local structure}{parent=structure} + +\setbeamercolor{titlelike}{parent=structure} + +\setbeamercolor{title}{parent=titlelike} +\setbeamercolor{title in head/foot}{parent=palette quaternary} +\setbeamercolor{title in sidebar}{parent=palette sidebar quaternary} + +\setbeamercolor{subtitle}{parent=title} + +\setbeamercolor{author}{} +\setbeamercolor{author in head/foot}{parent=palette primary} +\setbeamercolor{author in sidebar}{use=palette sidebar tertiary,fg=palette sidebar tertiary.fg} + +\setbeamercolor{institute}{} +\setbeamercolor{institute in head/foot}{parent=palette tertiary} +\setbeamercolor{institute in sidebar}{use=palette sidebar tertiary,fg=palette sidebar tertiary.fg} + +\setbeamercolor{date}{} +\setbeamercolor{date in head/foot}{parent=palette secondary} +\setbeamercolor{date in sidebar}{use=palette sidebar tertiary,fg=palette sidebar tertiary.fg} + +\setbeamercolor{titlegraphic}{} + +\setbeamercolor{part name}{} +\setbeamercolor{part title}{parent=titlelike} + +\setbeamercolor{section in toc}{parent=structure} +\setbeamercolor{section in toc shaded}{parent=section in toc} +\setbeamercolor{section in head/foot}{parent=palette tertiary} +\setbeamercolor{section in sidebar}{parent=palette sidebar secondary} +\setbeamercolor{section in sidebar shaded}{use=section in sidebar,fg=section in sidebar.fg!40!bg} +\setbeamercolor{section number projected}{parent=item projected} + +\setbeamercolor{subsection in toc}{} +\setbeamercolor{subsection in toc shaded}{parent=subsection in toc} +\setbeamercolor{subsection in head/foot}{parent=palette secondary} +\setbeamercolor{subsection in sidebar}{parent=palette sidebar primary} +\setbeamercolor{subsection in sidebar shaded}{use=subsection in sidebar,fg=subsection in sidebar.fg!40!bg} +\setbeamercolor{subsection number projected}{parent={subitem projected}} + +\setbeamercolor{subsubsection in toc}{parent=subsection in toc} +\setbeamercolor{subsubsection in toc shaded}{parent=subsubsection in toc} +\setbeamercolor{subsubsection in head/foot}{parent=subsection in head/foot} +\setbeamercolor{subsubsection in sidebar}{parent=subsection in sidebar} +\setbeamercolor{subsubsection in sidebar shaded}{parent=subsection in sidebar shaded} +\setbeamercolor{subsubsection number projected}{parent=subsubitem projected} + +\setbeamercolor{headline}{} +\setbeamercolor{footline}{} + +\setbeamercolor{sidebar}{} +\setbeamercolor{sidebar left}{parent=sidebar} +\setbeamercolor{sidebar right}{parent=sidebar} + +\setbeamercolor{logo}{parent=palette secondary} + +\setbeamercolor{frametitle}{parent=titlelike} +\setbeamercolor{framesubtitle}{parent=frametitle} + +\setbeamercolor{frametitle right}{parent=frametitle} + +\setbeamercolor{caption}{} +\setbeamercolor{caption name}{parent=structure} + +\setbeamercolor{button}{use=local structure,bg=local structure.fg!50!bg,fg=white} +\setbeamercolor{button border}{use=button,fg=button.bg} +\setbeamercolor{navigation symbols}{use=structure,fg=structure.fg!40!bg} +\setbeamercolor{navigation symbols dimmed}{use=structure,fg=structure.fg!20!bg} +\setbeamercolor{mini frame}{parent=section in head/foot} + +\setbeamercolor{block body}{fg=black} +\setbeamercolor{block body alerted}{fg=black} +\setbeamercolor{block body example}{fg=black} + +\setbeamercolor{block title}{bg=TACCblue,fg=white} +\setbeamercolor{block title alerted}{bg=TACCred,fg=white} +\setbeamercolor{block title example}{bg=TACCgreen,fg=white} + +\setbeamercolor{item}{parent=local structure} +\setbeamercolor{subitem}{parent=item} +\setbeamercolor{subsubitem}{parent=subitem} + +\setbeamercolor{item projected}{parent=item,use=item,fg=black,bg=item.fg} +\setbeamercolor{subitem projected}{parent=item projected} +\setbeamercolor{subsubitem projected}{parent=subitem projected} + +\setbeamercolor{enumerate item}{parent=item} +\setbeamercolor{enumerate subitem}{parent=subitem} +\setbeamercolor{enumerate subsubitem}{parent=subsubitem} + +\setbeamercolor{itemize item}{parent=item} +\setbeamercolor{itemize subitem}{parent=subitem} +\setbeamercolor{itemize subsubitem}{parent=subsubitem} + +\setbeamercolor{itemize/enumerate body}{} +\setbeamercolor{itemize/enumerate subbody}{} +\setbeamercolor{itemize/enumerate subsubbody}{} + +\setbeamercolor{description item}{parent=item} + +\setbeamercolor{bibliography item}{parent=item} + +\setbeamercolor{bibliography entry author}{use=structure,fg=structure.fg} +\setbeamercolor{bibliography entry title}{use=normal text,fg=normal text.fg} +\setbeamercolor{bibliography entry location}{use=structure,fg=structure.fg!65!bg} +\setbeamercolor{bibliography entry note}{use=structure,fg=structure.fg!65!bg} + +\setbeamercolor{separation line}{} + +\setbeamercolor{upper separation line head}{parent=separation line} +\setbeamercolor{middle separation line head}{parent=separation line} +\setbeamercolor{lower separation line head}{parent=separation line} + +\setbeamercolor{upper separation line foot}{parent=separation line} +\setbeamercolor{middle separation line foot}{parent=separation line} +\setbeamercolor{lower separation line foot}{parent=separation line} + +\setbeamercolor{abstract}{} +\setbeamercolor{abstract title}{parent=structure} + +\setbeamercolor{verse}{} + +\setbeamercolor{quotation}{} +\setbeamercolor{quote}{parent=quotation} + +\setbeamercolor{page number in head/foot}{fg=fg!50!bg} + +\setbeamercolor{qed symbol}{parent=structure} + +\mode + diff --git a/my_docs/22/lmod_zoom_mtg_2022_11_08/beamerfontthemeTACC.sty b/my_docs/22/lmod_zoom_mtg_2022_11_08/beamerfontthemeTACC.sty deleted file mode 120000 index 78e971fb8..000000000 --- a/my_docs/22/lmod_zoom_mtg_2022_11_08/beamerfontthemeTACC.sty +++ /dev/null @@ -1 +0,0 @@ -../../beamer/beamerfontthemeTACC.sty \ No newline at end of file diff --git a/my_docs/22/lmod_zoom_mtg_2022_11_08/beamerfontthemeTACC.sty b/my_docs/22/lmod_zoom_mtg_2022_11_08/beamerfontthemeTACC.sty new file mode 100755 index 000000000..ef9ce1e5e --- /dev/null +++ b/my_docs/22/lmod_zoom_mtg_2022_11_08/beamerfontthemeTACC.sty @@ -0,0 +1,12 @@ +% Copyright 2003 by Till Tantau +% +% This program can be redistributed and/or modified under the terms +% of the GNU Public License, version 2. + +\mode + +\setbeamerfont{frametitle}{parent=structure,size=\LARGE,series=\bfseries} +\setbeamerfont{framesubtitle}{parent=frametitle,size=\small} + +\mode + \ No newline at end of file diff --git a/my_docs/22/lmod_zoom_mtg_2022_11_08/beamerfontthemeTACC16.sty b/my_docs/22/lmod_zoom_mtg_2022_11_08/beamerfontthemeTACC16.sty deleted file mode 120000 index a1f2fa5f9..000000000 --- a/my_docs/22/lmod_zoom_mtg_2022_11_08/beamerfontthemeTACC16.sty +++ /dev/null @@ -1 +0,0 @@ -../../beamer/beamerfontthemeTACC16.sty \ No newline at end of file diff --git a/my_docs/22/lmod_zoom_mtg_2022_11_08/beamerfontthemeTACC16.sty b/my_docs/22/lmod_zoom_mtg_2022_11_08/beamerfontthemeTACC16.sty new file mode 100755 index 000000000..b65271835 --- /dev/null +++ b/my_docs/22/lmod_zoom_mtg_2022_11_08/beamerfontthemeTACC16.sty @@ -0,0 +1,21 @@ +% Copyright 2003 by Till Tantau +% +% This program can be redistributed and/or modified under the terms +% of the GNU Public License, version 2. + +\mode +\setbeamerfont{title}{parent=structure,size=\LARGE,series=\bfseries} +\setbeamerfont{author}{parent=structure,size=\large, series=\normalfont} +\setbeamerfont{frametitle}{parent=structure,size=\LARGE,series=\bfseries} +\setbeamerfont{framesubtitle}{parent=frametitle,size=\small} + +%\usefonttheme{professionalfonts} % using non standard fonts for beamer +%\usefonttheme{serif} % default family is serif +%\usepackage{fontspec} +%\setmainfont{Century Gothic} + +\usepackage{fontspec} +\usepackage{libertine} + +\mode + diff --git a/my_docs/22/lmod_zoom_mtg_2022_11_08/beamerinnerthemeTACC.sty b/my_docs/22/lmod_zoom_mtg_2022_11_08/beamerinnerthemeTACC.sty deleted file mode 120000 index 8d5ae3921..000000000 --- a/my_docs/22/lmod_zoom_mtg_2022_11_08/beamerinnerthemeTACC.sty +++ /dev/null @@ -1 +0,0 @@ -../../beamer/beamerinnerthemeTACC.sty \ No newline at end of file diff --git a/my_docs/22/lmod_zoom_mtg_2022_11_08/beamerinnerthemeTACC.sty b/my_docs/22/lmod_zoom_mtg_2022_11_08/beamerinnerthemeTACC.sty new file mode 100755 index 000000000..29e2bce81 --- /dev/null +++ b/my_docs/22/lmod_zoom_mtg_2022_11_08/beamerinnerthemeTACC.sty @@ -0,0 +1,11 @@ +\mode + +\setbeamertemplate{itemize item}[circle] +\setbeamertemplate{itemize subitem}{{}--{}} +\setbeamertemplate{itemize subsubitem}[circle] +\setbeamertemplate{section in toc}{$\bullet$\hskip.5em\inserttocsection} +%\setbeamertemplate{subsection in toc}{} +\setbeamertemplate{subsubsection in toc}{} + +\mode + diff --git a/my_docs/22/lmod_zoom_mtg_2022_11_08/beamerinnerthemeTACC16.sty b/my_docs/22/lmod_zoom_mtg_2022_11_08/beamerinnerthemeTACC16.sty deleted file mode 120000 index 5955acc99..000000000 --- a/my_docs/22/lmod_zoom_mtg_2022_11_08/beamerinnerthemeTACC16.sty +++ /dev/null @@ -1 +0,0 @@ -../../beamer/beamerinnerthemeTACC16.sty \ No newline at end of file diff --git a/my_docs/22/lmod_zoom_mtg_2022_11_08/beamerinnerthemeTACC16.sty b/my_docs/22/lmod_zoom_mtg_2022_11_08/beamerinnerthemeTACC16.sty new file mode 100755 index 000000000..f7f454e1d --- /dev/null +++ b/my_docs/22/lmod_zoom_mtg_2022_11_08/beamerinnerthemeTACC16.sty @@ -0,0 +1,11 @@ +\mode + +\setbeamertemplate{itemize item}[triangle] +\setbeamertemplate{itemize subitem}[triangle] +\setbeamertemplate{itemize subsubitem}[triangle] +\setbeamertemplate{section in toc}{$\bullet$\hskip.5em\inserttocsection} +%\setbeamertemplate{subsection in toc}{} +\setbeamertemplate{subsubsection in toc}{} + +\mode + diff --git a/my_docs/22/lmod_zoom_mtg_2022_11_08/beamerouterthemeTACC.sty b/my_docs/22/lmod_zoom_mtg_2022_11_08/beamerouterthemeTACC.sty deleted file mode 120000 index da0a45d33..000000000 --- a/my_docs/22/lmod_zoom_mtg_2022_11_08/beamerouterthemeTACC.sty +++ /dev/null @@ -1 +0,0 @@ -../../beamer/beamerouterthemeTACC.sty \ No newline at end of file diff --git a/my_docs/22/lmod_zoom_mtg_2022_11_08/beamerouterthemeTACC.sty b/my_docs/22/lmod_zoom_mtg_2022_11_08/beamerouterthemeTACC.sty new file mode 100755 index 000000000..038580303 --- /dev/null +++ b/my_docs/22/lmod_zoom_mtg_2022_11_08/beamerouterthemeTACC.sty @@ -0,0 +1,196 @@ +% Copyright 2003 by Till Tantau +% +% This program can be redistributed and/or modified under the terms +% of the GNU Public License, version 2. + +\mode + +\setbeamertemplate{frametitle}[default][center] +\addtobeamertemplate{frametitle}{\vskip 4ex minus 4ex}{} + +% Here we define what appears at the bottom of each slide: the "footline". +\setbeamertemplate{footline}{% + \leavevmode% + + % Horizontal line dividing the rest of the slide from the footer? + % hrule goes all the way across... + % \hrule height.3pt% + % With \rule, you can specify the thickness + % \rule[raise-height]{width}{thickness} + \hspace{.025\textwidth}\rule{.95\textwidth}{.5pt} + + \hbox{% + % On the left half of the footer, insert the TACC logo + \begin{minipage}{.5\textwidth}% + \hskip .033\textwidth%Give horizontal space else this will set on the left edge of the slide! + % TACC logo with custom viewport! + \includegraphics[viewport=1 -1 135 35, clip=true, width=.4\textwidth]{figures/TACC_logo} + \end{minipage} + % + \begin{minipage}{.5\textwidth}% + \vskip .023\textheight% + \raggedleft% + \setlength{\rightskip}{.033\textwidth} + % + % If we are not on the first page, insert a page number + % For some reason, insertframenumber is buggy when you have fragile + % slides with verbatim environments in them... it tends to skip numbers + % for some reason! On the other hand, the pagenumber is incremented + % for *every* slide, including transition slides... + \ifnum \thepage>1 + % \insertshorttitle + \insertframenumber + % \insertframenumber/\inserttotalframenumber + % \insertpagenumber + \else % Do a phantom of whatever you do on other pages, so spacing matches + %$\phantom{\insertshorttitle}$ + $\phantom{\insertframenumber}$ + %$\phantom{\insertframenumber/\inserttotalframenumber}$ + %$\phantom{\insertpagenumber}$ + \fi + \hfill\includegraphics[width=.5\textwidth]{figures/UT_logo}% + \end{minipage}% + }% + \vskip .023\textheight% +} + + + + +\ifTACCheadernav + +\usesectionheadtemplate +{\hfill\insertsectionhead} +{\hfill\color{fg!50!bg}\insertsectionhead} + +% Head +\ifbeamer@compress + +% Here we define how the top of the frame looks, the "headline". +\setbeamertemplate{headline} +{% + \ifnum \thepage>1 + \leavevmode% + \begin{beamercolorbox}[wd=.5\paperwidth,ht=2.5ex,dp=1.125ex]{% + section in head/foot}% + \insertsectionnavigationhorizontal{.5\paperwidth}{\hskip0pt plus1filll}{}% + \end{beamercolorbox}% + \begin{beamercolorbox}[wd=.5\paperwidth,ht=2.5ex,dp=1.125ex]{% + subsection in head/foot}% + \insertsubsectionnavigationhorizontal{% + .5\paperwidth}{}{\hskip0pt plus1filll}% + \end{beamercolorbox}% + \fi %\thepage>1 +} + +\else% Not compressed + +\setbeamertemplate{headline} +{% + \ifnum \thepage>1 + \leavevmode% + \@tempdimb=2.4375ex% + \ifnum\beamer@subsectionmax<\beamer@sectionmax% + \multiply\@tempdimb by\beamer@sectionmax% + \else% + \multiply\@tempdimb by\beamer@subsectionmax% + \fi% + \ifdim\@tempdimb>0pt% + \advance\@tempdimb by 1.125ex% + \begin{beamercolorbox}[wd=.5\paperwidth,ht=\@tempdimb]{% + section in head/foot}% + \vbox to\@tempdimb{\vfil\insertsectionnavigation{.5\paperwidth}\vfil}% + \end{beamercolorbox}% + \begin{beamercolorbox}[wd=.5\paperwidth,ht=\@tempdimb]{% + subsection in head/foot}% + \vbox to\@tempdimb{\vfil\insertsubsectionnavigation{.5\paperwidth}\vfil}% + \end{beamercolorbox}% + \fi% + \fi % \thepage>1 +} + +\fi % end if compressed +\fi % TACCheadernav + + +\ifTACCheadertree + +\setbeamertemplate{headline} +{ + \begin{beamercolorbox}[wd=\paperwidth,colsep=1.5pt + ]{upper separation line head} + \end{beamercolorbox} + % + % Place short title + % + \begin{beamercolorbox}[wd=\paperwidth,ht=2.5ex,dp=1.125ex,% + leftskip=.3cm,rightskip=.3cm plus1fil]{title in head/foot} + \usebeamerfont{title in head/foot}\insertshorttitle + \end{beamercolorbox} + + % + % Place section + % + \begin{beamercolorbox}[wd=\paperwidth,ht=2.5ex,dp=1.125ex,% + leftskip=.3cm,rightskip=.3cm plus1fil]{section in head/foot} + \usebeamerfont{section in head/foot}% + %\ifbeamer@tree@showhooks + \setbox\beamer@tempbox=\hbox{\insertsectionhead}% + \ifdim\wd\beamer@tempbox>1pt% + \hskip2pt\raise1.9pt\hbox{\vrule width0.4pt height1.875ex\vrule width 5pt height0.4pt}% + \hskip1pt% + \fi% \ifdim + %\else% + %\hskip6pt% + %\fi% \ifbeamer + \insertsectionhead + \end{beamercolorbox} + +% +% Place subsection +% +\begin{beamercolorbox}[wd=\paperwidth,ht=2.5ex,dp=1.125ex,% + leftskip=.3cm,rightskip=.3cm plus1fil]{subsection in head/foot} + \usebeamerfont{subsection in head/foot}% + %\ifbeamer@tree@showhooks + \setbox\beamer@tempbox=\hbox{\insertsubsectionhead}% + \ifdim\wd\beamer@tempbox>1pt% + \hskip9.4pt\raise1.9pt\hbox{\vrule width0.4pt height1.875ex\vrule width 5pt height0.4pt}% + \hskip1pt% + \fi% \ifdim + %\else% + %\hskip12pt% + %\fi% \ifbeamer + \insertsubsectionhead +\end{beamercolorbox} + +% +% Place final separation box +% + \begin{beamercolorbox}[wd=\paperwidth,colsep=1.5pt + ]{lower separation line head} + \end{beamercolorbox} + + % + % Another matching rule which helps to frame the content + % + \hspace{.025\textwidth}\rule{.95\textwidth}{.5pt} +} +\fi % TACCheadertree + + +% The following command suppresses all navigation symbols. This is +% necessary in the TACC theme, since it overlaps where we want the +% logo to be. +\setbeamertemplate{navigation symbols}{} + +% Align the navigation symbols vertically (still overlaps our logo!) +%\setbeamertemplate{navigation symbols}[vertical]{} + +% Only places the slide-forward and slide-back symbol, but yes, +% this still overlaps our logo! +%\setbeamertemplate{navigation symbols}[only frame symbol]{} + + +\mode + diff --git a/my_docs/22/lmod_zoom_mtg_2022_11_08/beamerouterthemeTACC16.sty b/my_docs/22/lmod_zoom_mtg_2022_11_08/beamerouterthemeTACC16.sty deleted file mode 120000 index 54bd09537..000000000 --- a/my_docs/22/lmod_zoom_mtg_2022_11_08/beamerouterthemeTACC16.sty +++ /dev/null @@ -1 +0,0 @@ -../../beamer/beamerouterthemeTACC16.sty \ No newline at end of file diff --git a/my_docs/22/lmod_zoom_mtg_2022_11_08/beamerouterthemeTACC16.sty b/my_docs/22/lmod_zoom_mtg_2022_11_08/beamerouterthemeTACC16.sty new file mode 100755 index 000000000..d5e6388c7 --- /dev/null +++ b/my_docs/22/lmod_zoom_mtg_2022_11_08/beamerouterthemeTACC16.sty @@ -0,0 +1,312 @@ +% Antonio Gomez (agomez@tacc.utexas.edu) +% 4-20-17. Added option to put the footer on the right side + + + +\mode + +\usepackage{xcolor} +\usepackage{graphicx} +\usepackage{etoolbox} + + + +% This theme accepts the "rightfooter" option +% When used, it will put the TACC logo at the bottom of the slide on the right side +% By default, it goes to the left + +\xifaspectratio{ + {169} { + \pgfdeclareimage[width=\paperwidth]{titlebackground}{./figures/master169.jpg} + \if@rightfooterOption + \pgfdeclareimage[width=\paperwidth]{background}{./figures/secondary_right169.jpg} +\else + \pgfdeclareimage[width=\paperwidth]{background}{./figures/secondary169.jpg} +\fi +} +}[ +\pgfdeclareimage[width=\paperwidth]{titlebackground}{./figures/master.jpg} + \if@rightfooterOption + \pgfdeclareimage[width=\paperwidth]{background}{./figures/secondary_right.jpg} +\else + \pgfdeclareimage[width=\paperwidth]{background}{./figures/secondary.jpg} +\fi +] + +\setbeamertemplate{background canvas}{% +\xifaspectratio{ + {169} { + \ifnum\c@framenumber=1 % + \begin{picture}(0,0) + \put(-3,-256){% + \pgfuseimage{titlebackground} + } + \end{picture} + \else% + \begin{picture}(0,0) + \put(-3,-260){% + \pgfuseimage{background} + } + \end{picture} + \fi + } + {43} { + \ifnum\c@framenumber=1 % + \begin{picture}(0,0) + \put(-4,-274){% + \pgfuseimage{titlebackground} + } + \end{picture} + \else% + \begin{picture}(0,0) + \put(-4,-274){% + \pgfuseimage{background} + } + \end{picture} + \fi + } +} +} + + + +%\setbeamertemplate{background canvas}{% +% % On title page +% \ifnum\c@framenumber=1 % +% \begin{picture}(0,0) +% \put(0,-253){% +% \pgfuseimage{titlebackground} +% } +% \end{picture} +% +% \else% +% \xifaspectratio{ +% {169} { +% % Other frames background +% \begin{picture}(0,0) +% \put(-4,-260){% +% \pgfuseimage{background} +% } +% \end{picture} +% } +% }[ +% % Other frames background +% \begin{picture}(0,0) +% \put(-4,-274){% +% \pgfuseimage{background} +% } +% \end{picture} +% ] +% \fi% +%} + + +\setbeamertemplate{title page}{ +\vspace{40pt} +\begin{center} +\usebeamerfont{title} {\huge \inserttitle}\par +\vspace{4ex} +\usebeamerfont{author} { + \insertauthor +}\par +\vspace{2ex} +\usebeamerfont{institute}{ + \insertinstitute +} \par +\vspace{2ex} +\usebeamerfont{date}{ + \insertdate +} +\end{center} +} + + +\setbeamertemplate{frametitle}[default][center] +\setbeamertemplate{frametitle}{ + \makeatletter + \regexpatchcmd{\insertframetitle} + {(\c{usebeamertemplate}.*)\c{fi}} + {\c{NoCaseChange}\cB\{\1\cE\}\c{fi}} + {}{}% + \makeatother + \vskip1ex + \insertframetitle +} + +% Here we define what appears at the bottom of each slide: the "footline". +\setbeamertemplate{footline}{% + \leavevmode% + + % Horizontal line dividing the rest of the slide from the footer? + % hrule goes all the way across... + % \hrule height.3pt% + % With \rule, you can specify the thickness + % \rule[raise-height]{width}{thickness} + % \hspace{.025\textwidth}\rule{.95\textwidth}{.5pt} + + \hbox{% + \ifnum \thepage>1 + \if@rightfooterOption + \begin{minipage}{.2\textwidth}% + \hskip .05\textwidth%Give horizontal space else this will set on the left edge of the slide! + \end{minipage} + \else + \begin{minipage}{.4\textwidth}% + \hskip .05\textwidth%Give horizontal space else this will set on the left edge of the slide! + \end{minipage} + \fi + + + \begin{minipage}{\textwidth}% + % \vskip .023\textheight% + \raggedleft% + \setlength{\rightskip}{\textwidth} + \if@rightfooterOption + \hbox{% + \begin{beamercolorbox}[wd=0.7\textwidth,ht=2.25ex,dp=1ex,left]{author in head/foot}% + \insertshorttitle{} \hskip .01\textwidth | \hskip .01\textwidth \insertdate{} \hskip .01\textwidth | \hskip .01\textwidth \insertframenumber{} + \end{beamercolorbox}% + } + \else + \hbox{% + \begin{beamercolorbox}[wd=0.5\textwidth,ht=2.25ex,dp=1ex,left]{author in head/foot}% + \insertshorttitle{} \hskip .01\textwidth | \hskip .01\textwidth \insertdate{} \hskip .01\textwidth | \hskip .01\textwidth \insertframenumber{} + \end{beamercolorbox}% + } + \fi + + \end{minipage}% + \begin{minipage}{.05\textwidth}% + \end{minipage}% + \fi %\thepage>1 + }% + \vskip .023\textheight% + +} + + + + +\ifTACCheadernav + +\usesectionheadtemplate +{\hfill\insertsectionhead} +{\hfill\color{fg!50!bg}\insertsectionhead} + +% Head +\ifbeamer@compress + +% Here we define how the top of the frame looks, the "headline". +\setbeamertemplate{headline} +{% + \ifnum \thepage>1 + \leavevmode% + \begin{beamercolorbox}[wd=.5\paperwidth,ht=2.5ex,dp=1.125ex]{% + section in head/foot}% + \insertsectionnavigationhorizontal{.5\paperwidth}{\hskip0pt plus1filll}{}% + \end{beamercolorbox}% + \begin{beamercolorbox}[wd=.5\paperwidth,ht=2.5ex,dp=1.125ex]{% + subsection in head/foot}% + \insertsubsectionnavigationhorizontal{% + .5\paperwidth}{}{\hskip0pt plus1filll}% + \end{beamercolorbox}% + \fi %\thepage>1 +} + +\else% Not compressed + +\setbeamertemplate{headline} +{% + \ifnum \thepage>1 + \leavevmode% + \@tempdimb=2.4375ex% + \ifnum\beamer@subsectionmax<\beamer@sectionmax% + \multiply\@tempdimb by\beamer@sectionmax% + \else% + \multiply\@tempdimb by\beamer@subsectionmax% + \fi% + \ifdim\@tempdimb>0pt% + \advance\@tempdimb by 1.125ex% + \begin{beamercolorbox}[wd=.5\paperwidth,ht=\@tempdimb]{% + section in head/foot}% + \vbox to\@tempdimb{\vfil\insertsectionnavigation{.5\paperwidth}\vfil}% + \end{beamercolorbox}% + \begin{beamercolorbox}[wd=.5\paperwidth,ht=\@tempdimb]{% + subsection in head/foot}% + \vbox to\@tempdimb{\vfil\insertsubsectionnavigation{.5\paperwidth}\vfil}% + \end{beamercolorbox}% + \fi% + \fi % \thepage>1 +} + +\fi % end if compressed +\fi % TACCheadernav + + +\ifTACCheadertree + +\setbeamertemplate{headline} +{ + \begin{beamercolorbox}[wd=\paperwidth,colsep=1.5pt]{upper separation line head} + \end{beamercolorbox} + % + % Place short title + % + \begin{beamercolorbox}[wd=\paperwidth,ht=2.5ex,dp=1.125ex,% + leftskip=.3cm,rightskip=.3cm plus1fil]{title in head/foot} + \usebeamerfont{title in head/foot}\insertshorttitle + \end{beamercolorbox} + + % + % Place section + % + \begin{beamercolorbox}[wd=\paperwidth,ht=2.5ex,dp=1.125ex,% + leftskip=.3cm,rightskip=.3cm plus1fil]{section in head/foot} + \usebeamerfont{section in head/foot}% + %\ifbeamer@tree@showhooks + \setbox\beamer@tempbox=\hbox{\insertsectionhead}% + \ifdim\wd\beamer@tempbox>1pt% + \hskip2pt\raise1.9pt\hbox{\vrule width0.4pt height1.875ex\vrule width 5pt height0.4pt}% + \hskip1pt% + \fi + \insertsectionhead + \end{beamercolorbox} + +% +% Place subsection +% +\begin{beamercolorbox}[wd=\paperwidth,ht=2.5ex,dp=1.125ex,% + leftskip=.3cm,rightskip=.3cm plus1fil]{subsection in head/foot} + \usebeamerfont{subsection in head/foot}% + %\ifbeamer@tree@showhooks + \setbox\beamer@tempbox=\hbox{\insertsubsectionhead}% + \ifdim\wd\beamer@tempbox>1pt% + \hskip9.4pt\raise1.9pt\hbox{\vrule width0.4pt height1.875ex\vrule width 5pt height0.4pt}% + \hskip1pt% + \fi + \insertsubsectionhead +\end{beamercolorbox} + +% +% Place final separation box +% + \begin{beamercolorbox}[wd=\paperwidth,colsep=1.5pt + ]{lower separation line head} + \end{beamercolorbox} + + % + % Another matching rule which helps to frame the content + % + \hspace{.025\textwidth}\rule{.95\textwidth}{.5pt} +} +\fi % TACCheadertree + + +% The following command suppresses all navigation symbols. This is +% necessary in the TACC theme, since it overlaps where we want the +% logo to be. +\setbeamertemplate{navigation symbols}{} + + +\mode + diff --git a/my_docs/22/lmod_zoom_mtg_2022_11_08/beamerthemeTACC.sty b/my_docs/22/lmod_zoom_mtg_2022_11_08/beamerthemeTACC.sty deleted file mode 120000 index 5c339abd4..000000000 --- a/my_docs/22/lmod_zoom_mtg_2022_11_08/beamerthemeTACC.sty +++ /dev/null @@ -1 +0,0 @@ -../../beamer/beamerthemeTACC.sty \ No newline at end of file diff --git a/my_docs/22/lmod_zoom_mtg_2022_11_08/beamerthemeTACC.sty b/my_docs/22/lmod_zoom_mtg_2022_11_08/beamerthemeTACC.sty new file mode 100755 index 000000000..c6a1b1269 --- /dev/null +++ b/my_docs/22/lmod_zoom_mtg_2022_11_08/beamerthemeTACC.sty @@ -0,0 +1,26 @@ +%% TACC theme for beamer + +\newif\ifTACCheadernav +\DeclareOption{headernav}{\global\TACCheadernavtrue} + +\newif\ifTACCheadertree +\DeclareOption{headertree}{\global\TACCheadertreetrue} +\ProcessOptions + +\mode + +\usefonttheme{TACC} +\usecolortheme{TACC} +\useinnertheme{TACC} +\useoutertheme{TACC} + +\mode + + +\newcommand{\event}[1]{% + \makeatletter% + \def\TACC@eventname{#1}% + \makeatother} + +\newcommand{\sectionframe}[1]{\section{#1}\frame{\Large\textbf{#1}}} +\newcommand{\subsectionframe}[1]{\subsection{#1}\frame{\large\textbf{#1}}} diff --git a/my_docs/22/lmod_zoom_mtg_2022_11_08/beamerthemeTACC16.sty b/my_docs/22/lmod_zoom_mtg_2022_11_08/beamerthemeTACC16.sty deleted file mode 120000 index 7a9d4d296..000000000 --- a/my_docs/22/lmod_zoom_mtg_2022_11_08/beamerthemeTACC16.sty +++ /dev/null @@ -1 +0,0 @@ -../../beamer/beamerthemeTACC16.sty \ No newline at end of file diff --git a/my_docs/22/lmod_zoom_mtg_2022_11_08/beamerthemeTACC16.sty b/my_docs/22/lmod_zoom_mtg_2022_11_08/beamerthemeTACC16.sty new file mode 100755 index 000000000..b522d0207 --- /dev/null +++ b/my_docs/22/lmod_zoom_mtg_2022_11_08/beamerthemeTACC16.sty @@ -0,0 +1,61 @@ +%% TACC theme for beamer + + +\newif\if@rightfooterOption +\@rightfooterOptionfalse +\DeclareOption{rightfooter}{\@rightfooterOptiontrue} +\ProcessOptions + + +\newif\ifTACCheadernav +\DeclareOption{headernav}{\global\TACCheadernavtrue} + +\newif\ifTACCheadertree +\DeclareOption{headertree}{\global\TACCheadertreetrue} +\ProcessOptions + +\usepackage{xparse} +\ExplSyntaxOn +\NewDocumentCommand{\ifaspectratio}{mmm} + { + % Recover the option from those passed to the class + \keys_set:nf { zunbeltz/beameroptions } { \use:c { opt@beamer.cls } } + \str_if_eq:nVTF { #1 } \l_zunbeltz_aspectratio_tl { #2 } { #3 } + } +\NewDocumentCommand{\xifaspectratio}{mO{}} + { + % Recover the option from those passed to the class + \keys_set:nf { zunbeltz/beameroptions } { \use:c { opt@beamer.cls } } + \str_case:VnF \l_zunbeltz_aspectratio_tl { #1 } { #2 } + } +% We need to define only one key, the other are treated as `unknown' +\keys_define:nn { zunbeltz/beameroptions } + { + aspectratio .tl_set:N = \l_zunbeltz_aspectratio_tl, + aspectratio .initial:n = 43, + unknown .code:n = {}, + } + +% Generate the variants we need +\cs_generate_variant:Nn \keys_set:nn { nf } +\cs_generate_variant:Nn \str_if_eq:nnTF { nV } +\cs_generate_variant:Nn \str_case:nnF { V } +\ExplSyntaxOff + +\mode + +\usefonttheme{TACC16} +\useinnertheme{TACC16} +\useoutertheme{TACC16} +\usecolortheme{TACC16} + +\mode + + +\newcommand{\event}[1]{% + \makeatletter% + \def\TACC@eventname{#1}% + \makeatother} + +\newcommand{\sectionframe}[1]{\section{#1}\frame{\Large\textbf{#1}}} +\newcommand{\subsectionframe}[1]{\subsection{#1}\frame{\large\textbf{#1}}} diff --git a/my_docs/22/lmod_zoom_mtg_2022_11_08/figures b/my_docs/22/lmod_zoom_mtg_2022_11_08/figures deleted file mode 120000 index ddafd8974..000000000 --- a/my_docs/22/lmod_zoom_mtg_2022_11_08/figures +++ /dev/null @@ -1 +0,0 @@ -../../beamer/figures \ No newline at end of file diff --git a/my_docs/22/lmod_zoom_mtg_2022_11_08/figures/TACC_logo.pdf b/my_docs/22/lmod_zoom_mtg_2022_11_08/figures/TACC_logo.pdf new file mode 100755 index 000000000..c018a20cb Binary files /dev/null and b/my_docs/22/lmod_zoom_mtg_2022_11_08/figures/TACC_logo.pdf differ diff --git a/my_docs/22/lmod_zoom_mtg_2022_11_08/figures/UT_logo.pdf b/my_docs/22/lmod_zoom_mtg_2022_11_08/figures/UT_logo.pdf new file mode 100755 index 000000000..d5b42e752 Binary files /dev/null and b/my_docs/22/lmod_zoom_mtg_2022_11_08/figures/UT_logo.pdf differ diff --git a/my_docs/22/lmod_zoom_mtg_2022_11_08/figures/cc.png b/my_docs/22/lmod_zoom_mtg_2022_11_08/figures/cc.png new file mode 100644 index 000000000..8a532ff8f Binary files /dev/null and b/my_docs/22/lmod_zoom_mtg_2022_11_08/figures/cc.png differ diff --git a/my_docs/22/lmod_zoom_mtg_2022_11_08/figures/isa.png b/my_docs/22/lmod_zoom_mtg_2022_11_08/figures/isa.png new file mode 100644 index 000000000..f95d985e7 Binary files /dev/null and b/my_docs/22/lmod_zoom_mtg_2022_11_08/figures/isa.png differ diff --git a/my_docs/22/lmod_zoom_mtg_2022_11_08/figures/master.jpg b/my_docs/22/lmod_zoom_mtg_2022_11_08/figures/master.jpg new file mode 100644 index 000000000..f5c56c04a Binary files /dev/null and b/my_docs/22/lmod_zoom_mtg_2022_11_08/figures/master.jpg differ diff --git a/my_docs/22/lmod_zoom_mtg_2022_11_08/figures/master169.jpg b/my_docs/22/lmod_zoom_mtg_2022_11_08/figures/master169.jpg new file mode 100644 index 000000000..b215776eb Binary files /dev/null and b/my_docs/22/lmod_zoom_mtg_2022_11_08/figures/master169.jpg differ diff --git a/my_docs/22/lmod_zoom_mtg_2022_11_08/figures/master169.png b/my_docs/22/lmod_zoom_mtg_2022_11_08/figures/master169.png new file mode 100644 index 000000000..bc5c0ed12 Binary files /dev/null and b/my_docs/22/lmod_zoom_mtg_2022_11_08/figures/master169.png differ diff --git a/my_docs/22/lmod_zoom_mtg_2022_11_08/figures/secondary.jpg b/my_docs/22/lmod_zoom_mtg_2022_11_08/figures/secondary.jpg new file mode 100644 index 000000000..d905a95c9 Binary files /dev/null and b/my_docs/22/lmod_zoom_mtg_2022_11_08/figures/secondary.jpg differ diff --git a/my_docs/22/lmod_zoom_mtg_2022_11_08/figures/secondary169.jpg b/my_docs/22/lmod_zoom_mtg_2022_11_08/figures/secondary169.jpg new file mode 100644 index 000000000..4eb017957 Binary files /dev/null and b/my_docs/22/lmod_zoom_mtg_2022_11_08/figures/secondary169.jpg differ diff --git a/my_docs/22/lmod_zoom_mtg_2022_11_08/figures/secondary169.png b/my_docs/22/lmod_zoom_mtg_2022_11_08/figures/secondary169.png new file mode 100644 index 000000000..cb9060a56 Binary files /dev/null and b/my_docs/22/lmod_zoom_mtg_2022_11_08/figures/secondary169.png differ diff --git a/my_docs/22/lmod_zoom_mtg_2022_11_08/figures/secondary_right.jpg b/my_docs/22/lmod_zoom_mtg_2022_11_08/figures/secondary_right.jpg new file mode 100644 index 000000000..f25f93a58 Binary files /dev/null and b/my_docs/22/lmod_zoom_mtg_2022_11_08/figures/secondary_right.jpg differ diff --git a/my_docs/22/lmod_zoom_mtg_2022_11_08/figures/secondary_right169.jpg b/my_docs/22/lmod_zoom_mtg_2022_11_08/figures/secondary_right169.jpg new file mode 100644 index 000000000..567a1078f Binary files /dev/null and b/my_docs/22/lmod_zoom_mtg_2022_11_08/figures/secondary_right169.jpg differ diff --git a/my_docs/22/lmod_zoom_mtg_2022_11_08/themes b/my_docs/22/lmod_zoom_mtg_2022_11_08/themes deleted file mode 120000 index a98530730..000000000 --- a/my_docs/22/lmod_zoom_mtg_2022_11_08/themes +++ /dev/null @@ -1 +0,0 @@ -../../beamer/themes \ No newline at end of file diff --git a/my_docs/22/lmod_zoom_mtg_2022_11_08/themes/beamercolorthemeTACC16.sty b/my_docs/22/lmod_zoom_mtg_2022_11_08/themes/beamercolorthemeTACC16.sty new file mode 100644 index 000000000..248ae8cb6 --- /dev/null +++ b/my_docs/22/lmod_zoom_mtg_2022_11_08/themes/beamercolorthemeTACC16.sty @@ -0,0 +1,193 @@ +% Copyright 2003 by Till Tantau . +% +% This program can be redistributed and/or modified under the terms +% of the GNU Public License, version 2. + +\mode + +\usepackage{textcase,regexpatch} + +\setbeamertemplate{blocks}[rounded][shadow=true] + + +\definecolor{TACCred}{RGB}{180,13,29} +\definecolor{TACCorange}{RGB}{210,104,43} +\definecolor{TACCblue}{RGB}{21,77,122} +%\definecolor{TACCgreen}{RGB}{30,134,104} +\definecolor{TACCgreen}{RGB}{49,168,51} + +% I downloaded a gimp color palette from +% http://maururu.net/2007/latex-beamer-color-palette/ +% Which provides rgb values (I think) for several of the +% default beamer themes. You can open this in gimp by +% opening the Palettes dialog, right-clicking anywhere and choosing +% 'Import Palette'. A color in there called 'default added blue' +% appeared to be approximately what I wanted. It had the triple +% of values 141 145 208. If you double-click on this in the +% palette editor it gives you a bunch of information. You can't +% use these values directly to set a color...it just comes out white. +% I think definecolor is expecting something normalized by 255. Yes! + + +%%% +% Set the normal text color +%%% +\setbeamercolor{normal text}{fg=black} %,bg=white} +\setbeamercolor{example text}{fg=TACCgreen} +\setbeamercolor{alerted text}{fg=TACCorange} + + +\setbeamercolor{structure}{fg=black} +%\setbeamercolor{structure}{fg=black} + +\setbeamercolor{background canvas}{parent=normal text} +\setbeamercolor{background}{parent=background canvas} + +\setbeamercolor{palette primary}{use=structure,fg=structure.fg} +\setbeamercolor{palette secondary}{use=structure,fg=structure.fg!75!black} +\setbeamercolor{palette tertiary}{use=structure,fg=structure.fg!50!black} +\setbeamercolor{palette quaternary}{fg=black} + +\setbeamercolor{palette sidebar primary}{use=normal text,fg=normal text.fg} +\setbeamercolor{palette sidebar secondary}{use=structure,fg=structure.fg} +\setbeamercolor{palette sidebar tertiary}{use=normal text,fg=normal text.fg} +\setbeamercolor{palette sidebar quaternary}{use=structure,fg=structure.fg} + +\setbeamercolor{math text}{} +\setbeamercolor{math text inlined}{parent=math text} +\setbeamercolor{math text displayed}{parent=math text} + +\setbeamercolor{normal text in math text}{} + +\setbeamercolor{local structure}{parent=structure} + +\setbeamercolor{titlelike}{parent=structure} + +\setbeamercolor{title}{parent=titlelike} +\setbeamercolor{title in head/foot}{parent=palette quaternary} +\setbeamercolor{title in sidebar}{parent=palette sidebar quaternary} + +\setbeamercolor{subtitle}{parent=title} + +\setbeamercolor{author}{} +\setbeamercolor{author in head/foot}{parent=palette primary} +\setbeamercolor{author in sidebar}{use=palette sidebar tertiary,fg=palette sidebar tertiary.fg} + +\setbeamercolor{institute}{} +\setbeamercolor{institute in head/foot}{parent=palette tertiary} +\setbeamercolor{institute in sidebar}{use=palette sidebar tertiary,fg=palette sidebar tertiary.fg} + +\setbeamercolor{date}{} +\setbeamercolor{date in head/foot}{parent=palette secondary} +\setbeamercolor{date in sidebar}{use=palette sidebar tertiary,fg=palette sidebar tertiary.fg} + +\setbeamercolor{titlegraphic}{} + +\setbeamercolor{part name}{} +\setbeamercolor{part title}{parent=titlelike} + +\setbeamercolor{section in toc}{parent=structure} +\setbeamercolor{section in toc shaded}{parent=section in toc} +\setbeamercolor{section in head/foot}{parent=palette tertiary} +\setbeamercolor{section in sidebar}{parent=palette sidebar secondary} +\setbeamercolor{section in sidebar shaded}{use=section in sidebar,fg=section in sidebar.fg!40!bg} +\setbeamercolor{section number projected}{parent=item projected} + +\setbeamercolor{subsection in toc}{} +\setbeamercolor{subsection in toc shaded}{parent=subsection in toc} +\setbeamercolor{subsection in head/foot}{parent=palette secondary} +\setbeamercolor{subsection in sidebar}{parent=palette sidebar primary} +\setbeamercolor{subsection in sidebar shaded}{use=subsection in sidebar,fg=subsection in sidebar.fg!40!bg} +\setbeamercolor{subsection number projected}{parent={subitem projected}} + +\setbeamercolor{subsubsection in toc}{parent=subsection in toc} +\setbeamercolor{subsubsection in toc shaded}{parent=subsubsection in toc} +\setbeamercolor{subsubsection in head/foot}{parent=subsection in head/foot} +\setbeamercolor{subsubsection in sidebar}{parent=subsection in sidebar} +\setbeamercolor{subsubsection in sidebar shaded}{parent=subsection in sidebar shaded} +\setbeamercolor{subsubsection number projected}{parent=subsubitem projected} + +\setbeamercolor{headline}{} +\setbeamercolor{footline}{} + +\setbeamercolor{sidebar}{} +\setbeamercolor{sidebar left}{parent=sidebar} +\setbeamercolor{sidebar right}{parent=sidebar} + +\setbeamercolor{logo}{parent=palette secondary} + +\setbeamercolor{frametitle}{parent=titlelike} +\setbeamercolor{framesubtitle}{parent=frametitle} + +\setbeamercolor{frametitle right}{parent=frametitle} + +\setbeamercolor{caption}{} +\setbeamercolor{caption name}{parent=structure} + +\setbeamercolor{button}{use=local structure,bg=local structure.fg!50!bg,fg=white} +\setbeamercolor{button border}{use=button,fg=button.bg} +\setbeamercolor{navigation symbols}{use=structure,fg=structure.fg!40!bg} +\setbeamercolor{navigation symbols dimmed}{use=structure,fg=structure.fg!20!bg} +\setbeamercolor{mini frame}{parent=section in head/foot} + +\setbeamercolor{block body}{fg=black} +\setbeamercolor{block body alerted}{fg=black} +\setbeamercolor{block body example}{fg=black} + +\setbeamercolor{block title}{bg=TACCblue,fg=white} +\setbeamercolor{block title alerted}{bg=TACCred,fg=white} +\setbeamercolor{block title example}{bg=TACCgreen,fg=white} + +\setbeamercolor{item}{parent=local structure} +\setbeamercolor{subitem}{parent=item} +\setbeamercolor{subsubitem}{parent=subitem} + +\setbeamercolor{item projected}{parent=item,use=item,fg=black,bg=item.fg} +\setbeamercolor{subitem projected}{parent=item projected} +\setbeamercolor{subsubitem projected}{parent=subitem projected} + +\setbeamercolor{enumerate item}{parent=item} +\setbeamercolor{enumerate subitem}{parent=subitem} +\setbeamercolor{enumerate subsubitem}{parent=subsubitem} + +\setbeamercolor{itemize item}{parent=item} +\setbeamercolor{itemize subitem}{parent=subitem} +\setbeamercolor{itemize subsubitem}{parent=subsubitem} + +\setbeamercolor{itemize/enumerate body}{} +\setbeamercolor{itemize/enumerate subbody}{} +\setbeamercolor{itemize/enumerate subsubbody}{} + +\setbeamercolor{description item}{parent=item} + +\setbeamercolor{bibliography item}{parent=item} + +\setbeamercolor{bibliography entry author}{use=structure,fg=structure.fg} +\setbeamercolor{bibliography entry title}{use=normal text,fg=normal text.fg} +\setbeamercolor{bibliography entry location}{use=structure,fg=structure.fg!65!bg} +\setbeamercolor{bibliography entry note}{use=structure,fg=structure.fg!65!bg} + +\setbeamercolor{separation line}{} + +\setbeamercolor{upper separation line head}{parent=separation line} +\setbeamercolor{middle separation line head}{parent=separation line} +\setbeamercolor{lower separation line head}{parent=separation line} + +\setbeamercolor{upper separation line foot}{parent=separation line} +\setbeamercolor{middle separation line foot}{parent=separation line} +\setbeamercolor{lower separation line foot}{parent=separation line} + +\setbeamercolor{abstract}{} +\setbeamercolor{abstract title}{parent=structure} + +\setbeamercolor{verse}{} + +\setbeamercolor{quotation}{} +\setbeamercolor{quote}{parent=quotation} + +\setbeamercolor{page number in head/foot}{fg=fg!50!bg} + +\setbeamercolor{qed symbol}{parent=structure} + +\mode + diff --git a/my_docs/22/lmod_zoom_mtg_2022_11_08/themes/beamerfontthemeTACC16.sty b/my_docs/22/lmod_zoom_mtg_2022_11_08/themes/beamerfontthemeTACC16.sty new file mode 100644 index 000000000..d0fc325cc --- /dev/null +++ b/my_docs/22/lmod_zoom_mtg_2022_11_08/themes/beamerfontthemeTACC16.sty @@ -0,0 +1,21 @@ +% Copyright 2003 by Till Tantau +% +% This program can be redistributed and/or modified under the terms +% of the GNU Public License, version 2. + +\mode +\setbeamerfont{title}{parent=structure,size=\LARGE,series=\bfseries} +\setbeamerfont{author}{parent=structure,size=\large, series=\normalfont} +\setbeamerfont{frametitle}{parent=structure,size=\LARGE,series=\bfseries} +\setbeamerfont{framesubtitle}{parent=frametitle,size=\small} + +%\usefonttheme{professionalfonts} % using non standard fonts for beamer +%\usefonttheme{serif} % default family is serif +%\usepackage{fontspec} +%\setmainfont{Century Gothic} + +%\usepackage{fontspec} +\usepackage{libertine} + +\mode + diff --git a/my_docs/22/lmod_zoom_mtg_2022_11_08/themes/beamerinnerthemeTACC16.sty b/my_docs/22/lmod_zoom_mtg_2022_11_08/themes/beamerinnerthemeTACC16.sty new file mode 100644 index 000000000..f7f454e1d --- /dev/null +++ b/my_docs/22/lmod_zoom_mtg_2022_11_08/themes/beamerinnerthemeTACC16.sty @@ -0,0 +1,11 @@ +\mode + +\setbeamertemplate{itemize item}[triangle] +\setbeamertemplate{itemize subitem}[triangle] +\setbeamertemplate{itemize subsubitem}[triangle] +\setbeamertemplate{section in toc}{$\bullet$\hskip.5em\inserttocsection} +%\setbeamertemplate{subsection in toc}{} +\setbeamertemplate{subsubsection in toc}{} + +\mode + diff --git a/my_docs/22/lmod_zoom_mtg_2022_11_08/themes/beamerouterthemeTACC16-169.sty b/my_docs/22/lmod_zoom_mtg_2022_11_08/themes/beamerouterthemeTACC16-169.sty new file mode 100644 index 000000000..c62f9ed04 --- /dev/null +++ b/my_docs/22/lmod_zoom_mtg_2022_11_08/themes/beamerouterthemeTACC16-169.sty @@ -0,0 +1,247 @@ +% Copyright 2003 by Till Tantau +% +% This program can be redistributed and/or modified under the terms +% of the GNU Public License, version 2. + +\mode + +\usepackage{xcolor} +\usepackage{graphicx} +\usepackage{etoolbox} + +\pgfdeclareimage[width=\paperwidth]{titlebackground}{./figures/master169.png} +\pgfdeclareimage[width=\paperwidth]{background}{./figures/secondary169.png} + +\setbeamertemplate{background canvas}{% + \ifnum\c@framenumber=1% + \begin{picture}(0,0) + \put(-0.15,-250){% + \pgfuseimage{titlebackground} + } + %\put(0,-130.7){% + + %\begin{minipage}[b][45mm][t]{\textwidth}%{226mm} + %\begin{center} + % \usebeamerfont{title}{\MakeTextUppercase{\inserttitle}\par} + %\vspace{2ex} + %\usebeamerfont{author}{\insertauthor} + % \end{center} + %\end{minipage} + %} + \end{picture} + % On title page + \else% + % Other frames background + \begin{picture}(0,0) + \put(-0.15,-255.55){% + \pgfuseimage{background} + } + \end{picture} + \fi% +} + + +\setbeamertemplate{title page}{ +\vspace{40pt} +\begin{center} +\usebeamerfont{title} {\huge \inserttitle}\par +\vspace{4ex} +\usebeamerfont{author} { + \insertauthor +}\par +\vspace{2ex} +\usebeamerfont{institute}{ + \insertinstitute +} \par +\vspace{2ex} +\usebeamerfont{date}{ + \insertdate +} +\end{center} +} + + +\setbeamertemplate{frametitle}[default][center] +\setbeamertemplate{frametitle}{ + \makeatletter + \regexpatchcmd{\insertframetitle} + {(\c{usebeamertemplate}.*)\c{fi}} + {\c{NoCaseChange}\cB\{\1\cE\}\c{fi}} + {}{}% + \makeatother + \vskip1ex + \insertframetitle +} + +% Here we define what appears at the bottom of each slide: the "footline". +\setbeamertemplate{footline}{% + \leavevmode% + + % Horizontal line dividing the rest of the slide from the footer? + % hrule goes all the way across... + % \hrule height.3pt% + % With \rule, you can specify the thickness + % \rule[raise-height]{width}{thickness} + % \hspace{.025\textwidth}\rule{.95\textwidth}{.5pt} + + \hbox{% + \ifnum \thepage>1 + % On the left half of the footer, insert the TACC of + \begin{minipage}{.2\textwidth}% + \hskip .05\textwidth%Give horizontal space else this will set on the left edge of the slide! + % \includegraphics[width=.8\textwidth]{TACC_logo.png} + \end{minipage} + + + \begin{minipage}{\textwidth}% + % \vskip .023\textheight% + \raggedleft% + \setlength{\rightskip}{\textwidth} + \hbox{% + \begin{beamercolorbox}[wd=0.7\textwidth,ht=2.25ex,dp=1ex,left]{author in head/foot}% + \insertshorttitle{} \hskip .01\textwidth | \hskip .01\textwidth \insertdate{} \hskip .01\textwidth | \hskip .01\textwidth \insertframenumber{} + \end{beamercolorbox}% + } + + % + % If we are not on the first page, insert a page number + % For some reason, insertframenumber is buggy when you have fragile + % slides with verbatim environments in them... it tends to skip numbers + % for some reason! On the other hand, the pagenumber is incremented + % for *every* slide, including transition slides... + % \hfill\includegraphics[width=\textwidth]{tacc_ut.png} + \end{minipage}% + \begin{minipage}{.05\textwidth}% + \end{minipage}% + \fi %\thepage>1 + }% + \vskip .023\textheight% + +} + + + + +\ifTACCheadernav + +\usesectionheadtemplate +{\hfill\insertsectionhead} +{\hfill\color{fg!50!bg}\insertsectionhead} + +% Head +\ifbeamer@compress + +% Here we define how the top of the frame looks, the "headline". +\setbeamertemplate{headline} +{% + \ifnum \thepage>1 + \leavevmode% + \begin{beamercolorbox}[wd=.5\paperwidth,ht=2.5ex,dp=1.125ex]{% + section in head/foot}% + \insertsectionnavigationhorizontal{.5\paperwidth}{\hskip0pt plus1filll}{}% + \end{beamercolorbox}% + \begin{beamercolorbox}[wd=.5\paperwidth,ht=2.5ex,dp=1.125ex]{% + subsection in head/foot}% + \insertsubsectionnavigationhorizontal{% + .5\paperwidth}{}{\hskip0pt plus1filll}% + \end{beamercolorbox}% + \fi %\thepage>1 +} + +\else% Not compressed + +\setbeamertemplate{headline} +{% + \ifnum \thepage>1 + \leavevmode% + \@tempdimb=2.4375ex% + \ifnum\beamer@subsectionmax<\beamer@sectionmax% + \multiply\@tempdimb by\beamer@sectionmax% + \else% + \multiply\@tempdimb by\beamer@subsectionmax% + \fi% + \ifdim\@tempdimb>0pt% + \advance\@tempdimb by 1.125ex% + \begin{beamercolorbox}[wd=.5\paperwidth,ht=\@tempdimb]{% + section in head/foot}% + \vbox to\@tempdimb{\vfil\insertsectionnavigation{.5\paperwidth}\vfil}% + \end{beamercolorbox}% + \begin{beamercolorbox}[wd=.5\paperwidth,ht=\@tempdimb]{% + subsection in head/foot}% + \vbox to\@tempdimb{\vfil\insertsubsectionnavigation{.5\paperwidth}\vfil}% + \end{beamercolorbox}% + \fi% + \fi % \thepage>1 +} + +\fi % end if compressed +\fi % TACCheadernav + + +\ifTACCheadertree + +\setbeamertemplate{headline} +{ + \begin{beamercolorbox}[wd=\paperwidth,colsep=1.5pt]{upper separation line head} + \end{beamercolorbox} + % + % Place short title + % + \begin{beamercolorbox}[wd=\paperwidth,ht=2.5ex,dp=1.125ex,% + leftskip=.3cm,rightskip=.3cm plus1fil]{title in head/foot} + \usebeamerfont{title in head/foot}\insertshorttitle + \end{beamercolorbox} + + % + % Place section + % + \begin{beamercolorbox}[wd=\paperwidth,ht=2.5ex,dp=1.125ex,% + leftskip=.3cm,rightskip=.3cm plus1fil]{section in head/foot} + \usebeamerfont{section in head/foot}% + %\ifbeamer@tree@showhooks + \setbox\beamer@tempbox=\hbox{\insertsectionhead}% + \ifdim\wd\beamer@tempbox>1pt% + \hskip2pt\raise1.9pt\hbox{\vrule width0.4pt height1.875ex\vrule width 5pt height0.4pt}% + \hskip1pt% + \fi + \insertsectionhead + \end{beamercolorbox} + +% +% Place subsection +% +\begin{beamercolorbox}[wd=\paperwidth,ht=2.5ex,dp=1.125ex,% + leftskip=.3cm,rightskip=.3cm plus1fil]{subsection in head/foot} + \usebeamerfont{subsection in head/foot}% + %\ifbeamer@tree@showhooks + \setbox\beamer@tempbox=\hbox{\insertsubsectionhead}% + \ifdim\wd\beamer@tempbox>1pt% + \hskip9.4pt\raise1.9pt\hbox{\vrule width0.4pt height1.875ex\vrule width 5pt height0.4pt}% + \hskip1pt% + \fi + \insertsubsectionhead +\end{beamercolorbox} + +% +% Place final separation box +% + \begin{beamercolorbox}[wd=\paperwidth,colsep=1.5pt + ]{lower separation line head} + \end{beamercolorbox} + + % + % Another matching rule which helps to frame the content + % + \hspace{.025\textwidth}\rule{.95\textwidth}{.5pt} +} +\fi % TACCheadertree + + +% The following command suppresses all navigation symbols. This is +% necessary in the TACC theme, since it overlaps where we want the +% logo to be. +\setbeamertemplate{navigation symbols}{} + + +\mode + diff --git a/my_docs/22/lmod_zoom_mtg_2022_11_08/themes/beamerouterthemeTACC16.sty b/my_docs/22/lmod_zoom_mtg_2022_11_08/themes/beamerouterthemeTACC16.sty new file mode 100644 index 000000000..c5b178018 --- /dev/null +++ b/my_docs/22/lmod_zoom_mtg_2022_11_08/themes/beamerouterthemeTACC16.sty @@ -0,0 +1,247 @@ +% Copyright 2003 by Till Tantau +% +% This program can be redistributed and/or modified under the terms +% of the GNU Public License, version 2. + +\mode + +\usepackage{xcolor} +\usepackage{graphicx} +\usepackage{etoolbox} + +\pgfdeclareimage[width=\paperwidth]{titlebackground}{master.jpg} +\pgfdeclareimage[width=\paperwidth]{background}{secondary.jpg} + +\setbeamertemplate{background canvas}{% + \ifnum\c@framenumber=1% + \begin{picture}(0,0) + \put(0,-273){% + \pgfuseimage{titlebackground} + } + %\put(0,-130.7){% + + %\begin{minipage}[b][45mm][t]{\textwidth}%{226mm} + %\begin{center} + % \usebeamerfont{title}{\MakeTextUppercase{\inserttitle}\par} + %\vspace{2ex} + %\usebeamerfont{author}{\insertauthor} + % \end{center} + %\end{minipage} + %} + \end{picture} + % On title page + \else% + % Other frames background + \begin{picture}(0,0) + \put(0,-273){% + \pgfuseimage{background} + } + \end{picture} + \fi% +} + + +\setbeamertemplate{title page}{ +\vspace{40pt} +\begin{center} +\usebeamerfont{title} {\huge \inserttitle}\par +\vspace{4ex} +\usebeamerfont{author} { + \insertauthor +}\par +\vspace{2ex} +\usebeamerfont{institute}{ + \insertinstitute +} \par +\vspace{2ex} +\usebeamerfont{date}{ + \insertdate +} +\end{center} +} + + +\setbeamertemplate{frametitle}[default][center] +\setbeamertemplate{frametitle}{ + \makeatletter + \regexpatchcmd{\insertframetitle} + {(\c{usebeamertemplate}.*)\c{fi}} + {\c{NoCaseChange}\cB\{\1\cE\}\c{fi}} + {}{}% + \makeatother + \vskip1ex + \insertframetitle +} + +% Here we define what appears at the bottom of each slide: the "footline". +\setbeamertemplate{footline}{% + \leavevmode% + + % Horizontal line dividing the rest of the slide from the footer? + % hrule goes all the way across... + % \hrule height.3pt% + % With \rule, you can specify the thickness + % \rule[raise-height]{width}{thickness} + % \hspace{.025\textwidth}\rule{.95\textwidth}{.5pt} + + \hbox{% + \ifnum \thepage>1 + % On the left half of the footer, insert the TACC of + \begin{minipage}{.2\textwidth}% + \hskip .05\textwidth%Give horizontal space else this will set on the left edge of the slide! + % \includegraphics[width=.8\textwidth]{figures/TACC_logo.png} + \end{minipage} + + + \begin{minipage}{\textwidth}% + % \vskip .023\textheight% + \raggedleft% + \setlength{\rightskip}{\textwidth} + \hbox{% + \begin{beamercolorbox}[wd=0.7\textwidth,ht=2.25ex,dp=1ex,left]{author in head/foot}% + \insertshorttitle{} \hskip .01\textwidth | \hskip .01\textwidth \insertdate{} \hskip .01\textwidth | \hskip .01\textwidth \insertframenumber{} + \end{beamercolorbox}% + } + + % + % If we are not on the first page, insert a page number + % For some reason, insertframenumber is buggy when you have fragile + % slides with verbatim environments in them... it tends to skip numbers + % for some reason! On the other hand, the pagenumber is incremented + % for *every* slide, including transition slides... + % \hfill\includegraphics[width=\textwidth]{figures/tacc_ut.png} + \end{minipage}% + \begin{minipage}{.05\textwidth}% + \end{minipage}% + \fi %\thepage>1 + }% + \vskip .023\textheight% + +} + + + + +\ifTACCheadernav + +\usesectionheadtemplate +{\hfill\insertsectionhead} +{\hfill\color{fg!50!bg}\insertsectionhead} + +% Head +\ifbeamer@compress + +% Here we define how the top of the frame looks, the "headline". +\setbeamertemplate{headline} +{% + \ifnum \thepage>1 + \leavevmode% + \begin{beamercolorbox}[wd=.5\paperwidth,ht=2.5ex,dp=1.125ex]{% + section in head/foot}% + \insertsectionnavigationhorizontal{.5\paperwidth}{\hskip0pt plus1filll}{}% + \end{beamercolorbox}% + \begin{beamercolorbox}[wd=.5\paperwidth,ht=2.5ex,dp=1.125ex]{% + subsection in head/foot}% + \insertsubsectionnavigationhorizontal{% + .5\paperwidth}{}{\hskip0pt plus1filll}% + \end{beamercolorbox}% + \fi %\thepage>1 +} + +\else% Not compressed + +\setbeamertemplate{headline} +{% + \ifnum \thepage>1 + \leavevmode% + \@tempdimb=2.4375ex% + \ifnum\beamer@subsectionmax<\beamer@sectionmax% + \multiply\@tempdimb by\beamer@sectionmax% + \else% + \multiply\@tempdimb by\beamer@subsectionmax% + \fi% + \ifdim\@tempdimb>0pt% + \advance\@tempdimb by 1.125ex% + \begin{beamercolorbox}[wd=.5\paperwidth,ht=\@tempdimb]{% + section in head/foot}% + \vbox to\@tempdimb{\vfil\insertsectionnavigation{.5\paperwidth}\vfil}% + \end{beamercolorbox}% + \begin{beamercolorbox}[wd=.5\paperwidth,ht=\@tempdimb]{% + subsection in head/foot}% + \vbox to\@tempdimb{\vfil\insertsubsectionnavigation{.5\paperwidth}\vfil}% + \end{beamercolorbox}% + \fi% + \fi % \thepage>1 +} + +\fi % end if compressed +\fi % TACCheadernav + + +\ifTACCheadertree + +\setbeamertemplate{headline} +{ + \begin{beamercolorbox}[wd=\paperwidth,colsep=1.5pt]{upper separation line head} + \end{beamercolorbox} + % + % Place short title + % + \begin{beamercolorbox}[wd=\paperwidth,ht=2.5ex,dp=1.125ex,% + leftskip=.3cm,rightskip=.3cm plus1fil]{title in head/foot} + \usebeamerfont{title in head/foot}\insertshorttitle + \end{beamercolorbox} + + % + % Place section + % + \begin{beamercolorbox}[wd=\paperwidth,ht=2.5ex,dp=1.125ex,% + leftskip=.3cm,rightskip=.3cm plus1fil]{section in head/foot} + \usebeamerfont{section in head/foot}% + %\ifbeamer@tree@showhooks + \setbox\beamer@tempbox=\hbox{\insertsectionhead}% + \ifdim\wd\beamer@tempbox>1pt% + \hskip2pt\raise1.9pt\hbox{\vrule width0.4pt height1.875ex\vrule width 5pt height0.4pt}% + \hskip1pt% + \fi + \insertsectionhead + \end{beamercolorbox} + +% +% Place subsection +% +\begin{beamercolorbox}[wd=\paperwidth,ht=2.5ex,dp=1.125ex,% + leftskip=.3cm,rightskip=.3cm plus1fil]{subsection in head/foot} + \usebeamerfont{subsection in head/foot}% + %\ifbeamer@tree@showhooks + \setbox\beamer@tempbox=\hbox{\insertsubsectionhead}% + \ifdim\wd\beamer@tempbox>1pt% + \hskip9.4pt\raise1.9pt\hbox{\vrule width0.4pt height1.875ex\vrule width 5pt height0.4pt}% + \hskip1pt% + \fi + \insertsubsectionhead +\end{beamercolorbox} + +% +% Place final separation box +% + \begin{beamercolorbox}[wd=\paperwidth,colsep=1.5pt + ]{lower separation line head} + \end{beamercolorbox} + + % + % Another matching rule which helps to frame the content + % + \hspace{.025\textwidth}\rule{.95\textwidth}{.5pt} +} +\fi % TACCheadertree + + +% The following command suppresses all navigation symbols. This is +% necessary in the TACC theme, since it overlaps where we want the +% logo to be. +\setbeamertemplate{navigation symbols}{} + + +\mode + diff --git a/my_docs/22/lmod_zoom_mtg_2022_11_08/themes/beamerthemeTACC16-169.sty b/my_docs/22/lmod_zoom_mtg_2022_11_08/themes/beamerthemeTACC16-169.sty new file mode 100644 index 000000000..22caf9a05 --- /dev/null +++ b/my_docs/22/lmod_zoom_mtg_2022_11_08/themes/beamerthemeTACC16-169.sty @@ -0,0 +1,38 @@ +%% TACC theme for beamer + +\newif\ifTACCheadernav +\DeclareOption{headernav}{\global\TACCheadernavtrue} + +\newif\ifTACCheadertree +\DeclareOption{headertree}{\global\TACCheadertreetrue} +\ProcessOptions + +\mode + +\makeatletter + \def\beamer@calltheme#1#2#3{% + \def\beamer@themelist{#2} + \@for\beamer@themename:=\beamer@themelist\do + {\usepackage[{#1}]{\beamer@themelocation/#3\beamer@themename}}} + + \def\usefolder#1{ + \def\beamer@themelocation{#1} + } + \def\beamer@themelocation{} + +\usefolder{themes} +\usefonttheme{TACC16} +\useinnertheme{TACC16} +\useoutertheme{TACC16-169} +\usecolortheme{TACC16} + +\mode + + +\newcommand{\event}[1]{% + \makeatletter% + \def\TACC@eventname{#1}% + \makeatother} + +\newcommand{\sectionframe}[1]{\section{#1}\frame{\Large\textbf{#1}}} +\newcommand{\subsectionframe}[1]{\subsection{#1}\frame{\large\textbf{#1}}} diff --git a/my_docs/22/lmod_zoom_mtg_2022_11_08/themes/beamerthemeTACC16.sty b/my_docs/22/lmod_zoom_mtg_2022_11_08/themes/beamerthemeTACC16.sty new file mode 100644 index 000000000..750bdd388 --- /dev/null +++ b/my_docs/22/lmod_zoom_mtg_2022_11_08/themes/beamerthemeTACC16.sty @@ -0,0 +1,26 @@ +%% TACC theme for beamer + +\newif\ifTACCheadernav +\DeclareOption{headernav}{\global\TACCheadernavtrue} + +\newif\ifTACCheadertree +\DeclareOption{headertree}{\global\TACCheadertreetrue} +\ProcessOptions + +\mode + +\usefonttheme{TACC16} +\useinnertheme{TACC16} +\useoutertheme{TACC16} +\usecolortheme{TACC16} + +\mode + + +\newcommand{\event}[1]{% + \makeatletter% + \def\TACC@eventname{#1}% + \makeatother} + +\newcommand{\sectionframe}[1]{\section{#1}\frame{\Large\textbf{#1}}} +\newcommand{\subsectionframe}[1]{\subsection{#1}\frame{\large\textbf{#1}}} diff --git a/my_docs/22/lmod_zoom_mtg_2022_11_08/themes/example.pdf b/my_docs/22/lmod_zoom_mtg_2022_11_08/themes/example.pdf new file mode 100644 index 000000000..add373eee Binary files /dev/null and b/my_docs/22/lmod_zoom_mtg_2022_11_08/themes/example.pdf differ diff --git a/my_docs/22/lmod_zoom_mtg_2022_11_08/themes/license.tex b/my_docs/22/lmod_zoom_mtg_2022_11_08/themes/license.tex new file mode 100644 index 000000000..74ff86759 --- /dev/null +++ b/my_docs/22/lmod_zoom_mtg_2022_11_08/themes/license.tex @@ -0,0 +1,14 @@ + +\begin{frame}{License} +\footnotesize +\textcopyright The University of Texas at Austin, \the\year\\ +\vspace{0.5 cm} +This work is licensed under the Creative Commons Attribution Non-Commercial 3.0 Unported License. To view a copy of this license, +visit http://creativecommons.org/licenses/by-nc/3.0/\\ +\vspace{0.5 cm} +When attributing this work, please use the following text: +"Designing and Administering Large-scale Systems", Texas Advanced Computing Center, \the\year. Available under a Creative Commons Attribution Non-Commercial 3.0 Unported License. +\newline +\newline +\includegraphics[width=1cm]{./figures/cc.png} +\end{frame} \ No newline at end of file diff --git a/my_docs/22/lmod_zoom_mtg_2022_12_06/Lmod-4color@2x.png b/my_docs/22/lmod_zoom_mtg_2022_12_06/Lmod-4color@2x.png deleted file mode 120000 index 47d505dbf..000000000 --- a/my_docs/22/lmod_zoom_mtg_2022_12_06/Lmod-4color@2x.png +++ /dev/null @@ -1 +0,0 @@ -../../beamer/Lmod-4color@2x.png \ No newline at end of file diff --git a/my_docs/22/lmod_zoom_mtg_2022_12_06/Lmod-4color@2x.png b/my_docs/22/lmod_zoom_mtg_2022_12_06/Lmod-4color@2x.png new file mode 100644 index 000000000..4810d74c3 Binary files /dev/null and b/my_docs/22/lmod_zoom_mtg_2022_12_06/Lmod-4color@2x.png differ diff --git a/my_docs/22/lmod_zoom_mtg_2022_12_06/beamercolorthemeTACC.sty b/my_docs/22/lmod_zoom_mtg_2022_12_06/beamercolorthemeTACC.sty deleted file mode 120000 index 8d27e673a..000000000 --- a/my_docs/22/lmod_zoom_mtg_2022_12_06/beamercolorthemeTACC.sty +++ /dev/null @@ -1 +0,0 @@ -../../beamer/beamercolorthemeTACC.sty \ No newline at end of file diff --git a/my_docs/22/lmod_zoom_mtg_2022_12_06/beamercolorthemeTACC.sty b/my_docs/22/lmod_zoom_mtg_2022_12_06/beamercolorthemeTACC.sty new file mode 100755 index 000000000..78beb6a4a --- /dev/null +++ b/my_docs/22/lmod_zoom_mtg_2022_12_06/beamercolorthemeTACC.sty @@ -0,0 +1,323 @@ +% Copyright 2003 by Till Tantau . +% +% This program can be redistributed and/or modified under the terms +% of the GNU Public License, version 2. + +\mode + +% I downloaded a gimp color palette from +% http://maururu.net/2007/latex-beamer-color-palette/ +% Which provides rgb values (I think) for several of the +% default beamer themes. You can open this in gimp by +% opening the Palettes dialog, right-clicking anywhere and choosing +% 'Import Palette'. A color in there called 'default added blue' +% appeared to be approximately what I wanted. It had the triple +% of values 141 145 208. If you double-click on this in the +% palette editor it gives you a bunch of information. You can't +% use these values directly to set a color...it just comes out white. +% I think definecolor is expecting something normalized by 255. Yes! + + +% bluish colors +\definecolor{defaddedblue}{rgb}{0.5529,.5686,.8157} % 141,145,208 +\definecolor{defblockheader}{rgb}{.1921,.2235,.6824} % 49,57,174 +\definecolor{flyaddedblue}{rgb}{.5961,.6118,.8431} % 152,156,215 + +% bluish-greys +\definecolor{beetleaddedblue1}{rgb}{.3333,.4039,.6196} % 85 103 158, dark +\definecolor{beetleaddedblue2}{rgb}{.4510,.5098,.7020} % 115 130 179, medium +\definecolor{beetleaddedblue3}{rgb}{.7059,.7255,.7961} % 180 185 203, light (greyest) + +% very light blue-greys +\definecolor{deflightouter1}{rgb}{.7608,.7647,.9020} % 194 195 230, dark +\definecolor{deflightouter2}{rgb}{.8 ,.8039,.9176} % 204 205 234, medium +\definecolor{deflightouter3}{rgb}{.8392,.8431,.9373} % 214 215 239, light + +% reddish colors +\definecolor{flyalertblockheader}{rgb}{.7373,.1294,.1333} % 188 33 34 +\definecolor{flyaddedred}{rgb}{.8667,.5647,.5647}% 221 144 144 +\definecolor{beaverouterframe}{rgb}{.5529,.0980,.0980}% 141 25 25 + +% greens (green is used for 'examples' in beamer) +\definecolor{defexblock}{rgb}{.9098,.9333,.9020} % 232 238 230, light +\definecolor{defaddedgreen}{rgb}{.5412,.6510,.4706} % 138 166 120, medium +\definecolor{defexblockheader}{rgb}{.1686,.3647,.0392} % 43 93 10, dark + +\definecolor{lightexblock}{rgb}{.9137,.9451,.9020} % 233 241 230, light +\definecolor{lightexblockheader}{rgb}{.8235,.8980,.8} % 210 229 204, medium +\definecolor{lightexblockheadertext}{rgb}{.2431,.5098,.0745} % 62 130 19, dark + + +%%% +% Set the normal text color +%%% +\setbeamercolor{normal text}{fg=black,bg=white} + +%%% +% Set the alerted text color +%%% +% \setbeamercolor{alerted text}{fg=red} +\setbeamercolor{alerted text}{fg=red!50!black} % half black/half red for green bg +% \setbeamercolor{alerted text}{fg=beaverouterframe} +% \setbeamercolor{alerted text}{fg=defblockheader} % doesn't stand out enough + + +% Set the 'example' text +\setbeamercolor{example text}{fg=green!50!black} + +\setbeamercolor{structure}{fg=black} + +\setbeamercolor{background canvas}{parent=normal text} +\setbeamercolor{background}{parent=background canvas} + +\setbeamercolor{palette primary}{use=structure,fg=structure.fg} +\setbeamercolor{palette secondary}{use=structure,fg=structure.fg!75!black} +\setbeamercolor{palette tertiary}{use=structure,fg=structure.fg!50!black} +\setbeamercolor{palette quaternary}{fg=black} + +\setbeamercolor{palette sidebar primary}{use=normal text,fg=normal text.fg} +\setbeamercolor{palette sidebar secondary}{use=structure,fg=structure.fg} +\setbeamercolor{palette sidebar tertiary}{use=normal text,fg=normal text.fg} +\setbeamercolor{palette sidebar quaternary}{use=structure,fg=structure.fg} + +\setbeamercolor{math text}{} +\setbeamercolor{math text inlined}{parent=math text} +\setbeamercolor{math text displayed}{parent=math text} + +\setbeamercolor{normal text in math text}{} + +\setbeamercolor{local structure}{parent=structure} + +\setbeamercolor{titlelike}{parent=structure} + +\setbeamercolor{title}{parent=titlelike} +\setbeamercolor{title in head/foot}{parent=palette quaternary} +\setbeamercolor{title in sidebar}{parent=palette sidebar quaternary} + +\setbeamercolor{subtitle}{parent=title} + +\setbeamercolor{author}{} +\setbeamercolor{author in head/foot}{parent=palette primary} +\setbeamercolor{author in sidebar}{use=palette sidebar tertiary,fg=palette sidebar tertiary.fg} + +\setbeamercolor{institute}{} +\setbeamercolor{institute in head/foot}{parent=palette tertiary} +\setbeamercolor{institute in sidebar}{use=palette sidebar tertiary,fg=palette sidebar tertiary.fg} + +\setbeamercolor{date}{} +\setbeamercolor{date in head/foot}{parent=palette secondary} +\setbeamercolor{date in sidebar}{use=palette sidebar tertiary,fg=palette sidebar tertiary.fg} + +\setbeamercolor{titlegraphic}{} + +\setbeamercolor{part name}{} +\setbeamercolor{part title}{parent=titlelike} + +\setbeamercolor{section in toc}{parent=structure} +\setbeamercolor{section in toc shaded}{parent=section in toc} +\setbeamercolor{section in head/foot}{parent=palette tertiary} +\setbeamercolor{section in sidebar}{parent=palette sidebar secondary} +\setbeamercolor{section in sidebar shaded}{use=section in sidebar,fg=section in sidebar.fg!40!bg} +\setbeamercolor{section number projected}{parent=item projected} + +\setbeamercolor{subsection in toc}{} +\setbeamercolor{subsection in toc shaded}{parent=subsection in toc} +\setbeamercolor{subsection in head/foot}{parent=palette secondary} +\setbeamercolor{subsection in sidebar}{parent=palette sidebar primary} +\setbeamercolor{subsection in sidebar shaded}{use=subsection in sidebar,fg=subsection in sidebar.fg!40!bg} +\setbeamercolor{subsection number projected}{parent={subitem projected}} + +\setbeamercolor{subsubsection in toc}{parent=subsection in toc} +\setbeamercolor{subsubsection in toc shaded}{parent=subsubsection in toc} +\setbeamercolor{subsubsection in head/foot}{parent=subsection in head/foot} +\setbeamercolor{subsubsection in sidebar}{parent=subsection in sidebar} +\setbeamercolor{subsubsection in sidebar shaded}{parent=subsection in sidebar shaded} +\setbeamercolor{subsubsection number projected}{parent=subsubitem projected} + +\setbeamercolor{headline}{} +\setbeamercolor{footline}{} + +\setbeamercolor{sidebar}{} +\setbeamercolor{sidebar left}{parent=sidebar} +\setbeamercolor{sidebar right}{parent=sidebar} + +\setbeamercolor{logo}{parent=palette secondary} + +\setbeamercolor{frametitle}{parent=titlelike} +\setbeamercolor{framesubtitle}{parent=frametitle} + +\setbeamercolor{frametitle right}{parent=frametitle} + +\setbeamercolor{caption}{} +\setbeamercolor{caption name}{parent=structure} + +\setbeamercolor{button}{use=local structure,bg=local structure.fg!50!bg,fg=white} +\setbeamercolor{button border}{use=button,fg=button.bg} +\setbeamercolor{navigation symbols}{use=structure,fg=structure.fg!40!bg} +\setbeamercolor{navigation symbols dimmed}{use=structure,fg=structure.fg!20!bg} +\setbeamercolor{mini frame}{parent=section in head/foot} + +% Color expressions are defined in the xcolor package +% +% Ex: Mixture of 40% green, 60% yellow: green!40!yellow +% +% The complement of any color can be obtained by prepending +% a minus sign: -green!40!yellow +% +% One can also combine up to three colors (in differing proportions) +% using the rgb command. For example, the following command combines +% 3 parts of the first color, with 2 parts of the second, and one part +% "red" +% +%\color{rgb:-green!40!yellow,3;green!40!yellow,2;red,1} +% Unfortunately, I don't think this works as an argument to setbeamercolor... +% "Orange" bg=green!30!yellow!30!red +% close to burnt orange: red!75!green +% lightgray is a color, but gray!25!white looks better +% +% A nice pair of greens +% (dark, a little too dark to be under black text...) -red!75!green!50!blue!25 +% (light) -red!75!green!50!blue!25!gray +% +% Some colors are only available via options to the xcolor package, eg. +% x11names,DarkOliveGreen4 +% svgnames, Chartreuse +% dvipsnames, ForestGreen +% +% but beamer does not seem to have any of these. +% +% The base color names which are always available are: +% black +% blue +% brown +% cyan +% darkgray +% gray +% green +% lightgray +% lime +% magenta +% olive +% orange +% pink +% purple +% red +% teal +% violet +% white +% yellow + +% From the beamer user guide, pg. 167 +% Inner color themes only specify the colors of elements used in inner +% themes. Most noticably, they specify the colors used for blocks. +% ... + +% Example color definition +% beamercolorthemedefault.sty:\definecolor{beamer@blendedblue}{rgb}{0.2,0.2,0.7} +% beamercolorthemedefault.sty:\setbeamercolor{structure}{fg=beamer@blendedblue} + +% The greens +% \setbeamercolor{block body}{bg=-red!75!green!50!blue!25!gray} +% \setbeamercolor{block title}{parent=structure,bg=-red!75!green!50!blue!25,fg=-red!75!green!50!blue!25!gray} + +%%% +% Set the block body and title background/foreground colors +%%% +% \setbeamercolor{block body}{bg=flyaddedblue} +% \setbeamercolor{block title}{bg=defblockheader,fg=flyaddedblue} + +% Purplish blues, too dark overall +% \setbeamercolor{block body}{bg=beetleaddedblue3} +% \setbeamercolor{block title}{bg=beetleaddedblue2,fg=beetleaddedblue3} + +% Very light blue greys +% 1. Not enough contrast +% \setbeamercolor{block body}{bg=deflightouter3} +% \setbeamercolor{block title}{bg=deflightouter2,fg=deflightouter3} + +% 2. Not enough contrast +% \setbeamercolor{block body}{bg=deflightouter3} +% \setbeamercolor{block title}{bg=deflightouter1,fg=deflightouter3} + +% 3. Combination of deflightouter and fly. The block bg is +% lighter than the all-beetle color scheme I previously thought was best. +% Currently I like this one the best +\setbeamercolor{block body}{bg=deflightouter3} +\setbeamercolor{block title}{bg=beetleaddedblue2,fg=deflightouter3} + +% 4. Greens. Looks like a highlighter. I don't really trust greens +% on projectors... It's almost too bright/hurts your eyes. +% \setbeamercolor{block body}{bg=defexblock} +% \setbeamercolor{block title}{bg=defaddedgreen,fg=defexblock} + +% This looks pretty good ... it's similar to the greens we had before +% but should be lighter. The blocks are just a little too "mint" colored +% though... +% \setbeamercolor{block body}{bg=defexblock} +% \setbeamercolor{block title}{bg=defexblockheader,fg=defexblock} + +% Pea Soup! +%\setbeamercolor{block body}{bg=defaddedgreen} +%\setbeamercolor{block title}{bg=defexblockheader,fg=defaddedgreen} + + +% Changing these didn't seem to do anything...I had to change the +% 'alerted text' color instead +\setbeamercolor{block body alerted}{} +\setbeamercolor{block body example}{} +\setbeamercolor{block title alerted}{parent=alerted text} +\setbeamercolor{block title example}{parent=example text} + +\setbeamercolor{item}{parent=local structure} +\setbeamercolor{subitem}{parent=item} +\setbeamercolor{subsubitem}{parent=subitem} + +\setbeamercolor{item projected}{parent=item,use=item,fg=white,bg=item.fg} +\setbeamercolor{subitem projected}{parent=item projected} +\setbeamercolor{subsubitem projected}{parent=subitem projected} + +\setbeamercolor{enumerate item}{parent=item} +\setbeamercolor{enumerate subitem}{parent=subitem} +\setbeamercolor{enumerate subsubitem}{parent=subsubitem} + +\setbeamercolor{itemize item}{parent=item} +\setbeamercolor{itemize subitem}{parent=subitem} +\setbeamercolor{itemize subsubitem}{parent=subsubitem} + +\setbeamercolor{itemize/enumerate body}{} +\setbeamercolor{itemize/enumerate subbody}{} +\setbeamercolor{itemize/enumerate subsubbody}{} + +\setbeamercolor{description item}{parent=item} + +\setbeamercolor{bibliography item}{parent=item} + +\setbeamercolor{bibliography entry author}{use=structure,fg=structure.fg} +\setbeamercolor{bibliography entry title}{use=normal text,fg=normal text.fg} +\setbeamercolor{bibliography entry location}{use=structure,fg=structure.fg!65!bg} +\setbeamercolor{bibliography entry note}{use=structure,fg=structure.fg!65!bg} + +\setbeamercolor{separation line}{} + +\setbeamercolor{upper separation line head}{parent=separation line} +\setbeamercolor{middle separation line head}{parent=separation line} +\setbeamercolor{lower separation line head}{parent=separation line} + +\setbeamercolor{upper separation line foot}{parent=separation line} +\setbeamercolor{middle separation line foot}{parent=separation line} +\setbeamercolor{lower separation line foot}{parent=separation line} + +\setbeamercolor{abstract}{} +\setbeamercolor{abstract title}{parent=structure} + +\setbeamercolor{verse}{} + +\setbeamercolor{quotation}{} +\setbeamercolor{quote}{parent=quotation} + +\setbeamercolor{page number in head/foot}{fg=fg!50!bg} + +\setbeamercolor{qed symbol}{parent=structure} + +\mode + diff --git a/my_docs/22/lmod_zoom_mtg_2022_12_06/beamercolorthemeTACC16.sty b/my_docs/22/lmod_zoom_mtg_2022_12_06/beamercolorthemeTACC16.sty deleted file mode 120000 index 58415801b..000000000 --- a/my_docs/22/lmod_zoom_mtg_2022_12_06/beamercolorthemeTACC16.sty +++ /dev/null @@ -1 +0,0 @@ -../../beamer/beamercolorthemeTACC16.sty \ No newline at end of file diff --git a/my_docs/22/lmod_zoom_mtg_2022_12_06/beamercolorthemeTACC16.sty b/my_docs/22/lmod_zoom_mtg_2022_12_06/beamercolorthemeTACC16.sty new file mode 100755 index 000000000..779dde91f --- /dev/null +++ b/my_docs/22/lmod_zoom_mtg_2022_12_06/beamercolorthemeTACC16.sty @@ -0,0 +1,192 @@ +% Copyright 2003 by Till Tantau . +% +% This program can be redistributed and/or modified under the terms +% of the GNU Public License, version 2. + +\mode + +\usepackage{textcase,regexpatch} + +\setbeamertemplate{blocks}[rounded][shadow=true] + + +\definecolor{TACCred}{RGB}{180,13,29} +\definecolor{TACCorange}{RGB}{210,104,43} +\definecolor{TACCblue}{RGB}{108, 134, 191} +\definecolor{TACCgreen}{RGB}{23,106,70} + +% I downloaded a gimp color palette from +% http://maururu.net/2007/latex-beamer-color-palette/ +% Which provides rgb values (I think) for several of the +% default beamer themes. You can open this in gimp by +% opening the Palettes dialog, right-clicking anywhere and choosing +% 'Import Palette'. A color in there called 'default added blue' +% appeared to be approximately what I wanted. It had the triple +% of values 141 145 208. If you double-click on this in the +% palette editor it gives you a bunch of information. You can't +% use these values directly to set a color...it just comes out white. +% I think definecolor is expecting something normalized by 255. Yes! + + +%%% +% Set the normal text color +%%% +\setbeamercolor{normal text}{fg=black} %,bg=white} +\setbeamercolor{example text}{fg=TACCgreen} +\setbeamercolor{alerted text}{fg=TACCorange} + + +\setbeamercolor{structure}{fg=black} +%\setbeamercolor{structure}{fg=black} + +\setbeamercolor{background canvas}{parent=normal text} +\setbeamercolor{background}{parent=background canvas} + +\setbeamercolor{palette primary}{use=structure,fg=structure.fg} +\setbeamercolor{palette secondary}{use=structure,fg=structure.fg!75!black} +\setbeamercolor{palette tertiary}{use=structure,fg=structure.fg!50!black} +\setbeamercolor{palette quaternary}{fg=black} + +\setbeamercolor{palette sidebar primary}{use=normal text,fg=normal text.fg} +\setbeamercolor{palette sidebar secondary}{use=structure,fg=structure.fg} +\setbeamercolor{palette sidebar tertiary}{use=normal text,fg=normal text.fg} +\setbeamercolor{palette sidebar quaternary}{use=structure,fg=structure.fg} + +\setbeamercolor{math text}{} +\setbeamercolor{math text inlined}{parent=math text} +\setbeamercolor{math text displayed}{parent=math text} + +\setbeamercolor{normal text in math text}{} + +\setbeamercolor{local structure}{parent=structure} + +\setbeamercolor{titlelike}{parent=structure} + +\setbeamercolor{title}{parent=titlelike} +\setbeamercolor{title in head/foot}{parent=palette quaternary} +\setbeamercolor{title in sidebar}{parent=palette sidebar quaternary} + +\setbeamercolor{subtitle}{parent=title} + +\setbeamercolor{author}{} +\setbeamercolor{author in head/foot}{parent=palette primary} +\setbeamercolor{author in sidebar}{use=palette sidebar tertiary,fg=palette sidebar tertiary.fg} + +\setbeamercolor{institute}{} +\setbeamercolor{institute in head/foot}{parent=palette tertiary} +\setbeamercolor{institute in sidebar}{use=palette sidebar tertiary,fg=palette sidebar tertiary.fg} + +\setbeamercolor{date}{} +\setbeamercolor{date in head/foot}{parent=palette secondary} +\setbeamercolor{date in sidebar}{use=palette sidebar tertiary,fg=palette sidebar tertiary.fg} + +\setbeamercolor{titlegraphic}{} + +\setbeamercolor{part name}{} +\setbeamercolor{part title}{parent=titlelike} + +\setbeamercolor{section in toc}{parent=structure} +\setbeamercolor{section in toc shaded}{parent=section in toc} +\setbeamercolor{section in head/foot}{parent=palette tertiary} +\setbeamercolor{section in sidebar}{parent=palette sidebar secondary} +\setbeamercolor{section in sidebar shaded}{use=section in sidebar,fg=section in sidebar.fg!40!bg} +\setbeamercolor{section number projected}{parent=item projected} + +\setbeamercolor{subsection in toc}{} +\setbeamercolor{subsection in toc shaded}{parent=subsection in toc} +\setbeamercolor{subsection in head/foot}{parent=palette secondary} +\setbeamercolor{subsection in sidebar}{parent=palette sidebar primary} +\setbeamercolor{subsection in sidebar shaded}{use=subsection in sidebar,fg=subsection in sidebar.fg!40!bg} +\setbeamercolor{subsection number projected}{parent={subitem projected}} + +\setbeamercolor{subsubsection in toc}{parent=subsection in toc} +\setbeamercolor{subsubsection in toc shaded}{parent=subsubsection in toc} +\setbeamercolor{subsubsection in head/foot}{parent=subsection in head/foot} +\setbeamercolor{subsubsection in sidebar}{parent=subsection in sidebar} +\setbeamercolor{subsubsection in sidebar shaded}{parent=subsection in sidebar shaded} +\setbeamercolor{subsubsection number projected}{parent=subsubitem projected} + +\setbeamercolor{headline}{} +\setbeamercolor{footline}{} + +\setbeamercolor{sidebar}{} +\setbeamercolor{sidebar left}{parent=sidebar} +\setbeamercolor{sidebar right}{parent=sidebar} + +\setbeamercolor{logo}{parent=palette secondary} + +\setbeamercolor{frametitle}{parent=titlelike} +\setbeamercolor{framesubtitle}{parent=frametitle} + +\setbeamercolor{frametitle right}{parent=frametitle} + +\setbeamercolor{caption}{} +\setbeamercolor{caption name}{parent=structure} + +\setbeamercolor{button}{use=local structure,bg=local structure.fg!50!bg,fg=white} +\setbeamercolor{button border}{use=button,fg=button.bg} +\setbeamercolor{navigation symbols}{use=structure,fg=structure.fg!40!bg} +\setbeamercolor{navigation symbols dimmed}{use=structure,fg=structure.fg!20!bg} +\setbeamercolor{mini frame}{parent=section in head/foot} + +\setbeamercolor{block body}{fg=black} +\setbeamercolor{block body alerted}{fg=black} +\setbeamercolor{block body example}{fg=black} + +\setbeamercolor{block title}{bg=TACCblue,fg=white} +\setbeamercolor{block title alerted}{bg=TACCred,fg=white} +\setbeamercolor{block title example}{bg=TACCgreen,fg=white} + +\setbeamercolor{item}{parent=local structure} +\setbeamercolor{subitem}{parent=item} +\setbeamercolor{subsubitem}{parent=subitem} + +\setbeamercolor{item projected}{parent=item,use=item,fg=black,bg=item.fg} +\setbeamercolor{subitem projected}{parent=item projected} +\setbeamercolor{subsubitem projected}{parent=subitem projected} + +\setbeamercolor{enumerate item}{parent=item} +\setbeamercolor{enumerate subitem}{parent=subitem} +\setbeamercolor{enumerate subsubitem}{parent=subsubitem} + +\setbeamercolor{itemize item}{parent=item} +\setbeamercolor{itemize subitem}{parent=subitem} +\setbeamercolor{itemize subsubitem}{parent=subsubitem} + +\setbeamercolor{itemize/enumerate body}{} +\setbeamercolor{itemize/enumerate subbody}{} +\setbeamercolor{itemize/enumerate subsubbody}{} + +\setbeamercolor{description item}{parent=item} + +\setbeamercolor{bibliography item}{parent=item} + +\setbeamercolor{bibliography entry author}{use=structure,fg=structure.fg} +\setbeamercolor{bibliography entry title}{use=normal text,fg=normal text.fg} +\setbeamercolor{bibliography entry location}{use=structure,fg=structure.fg!65!bg} +\setbeamercolor{bibliography entry note}{use=structure,fg=structure.fg!65!bg} + +\setbeamercolor{separation line}{} + +\setbeamercolor{upper separation line head}{parent=separation line} +\setbeamercolor{middle separation line head}{parent=separation line} +\setbeamercolor{lower separation line head}{parent=separation line} + +\setbeamercolor{upper separation line foot}{parent=separation line} +\setbeamercolor{middle separation line foot}{parent=separation line} +\setbeamercolor{lower separation line foot}{parent=separation line} + +\setbeamercolor{abstract}{} +\setbeamercolor{abstract title}{parent=structure} + +\setbeamercolor{verse}{} + +\setbeamercolor{quotation}{} +\setbeamercolor{quote}{parent=quotation} + +\setbeamercolor{page number in head/foot}{fg=fg!50!bg} + +\setbeamercolor{qed symbol}{parent=structure} + +\mode + diff --git a/my_docs/22/lmod_zoom_mtg_2022_12_06/beamerfontthemeTACC.sty b/my_docs/22/lmod_zoom_mtg_2022_12_06/beamerfontthemeTACC.sty deleted file mode 120000 index 78e971fb8..000000000 --- a/my_docs/22/lmod_zoom_mtg_2022_12_06/beamerfontthemeTACC.sty +++ /dev/null @@ -1 +0,0 @@ -../../beamer/beamerfontthemeTACC.sty \ No newline at end of file diff --git a/my_docs/22/lmod_zoom_mtg_2022_12_06/beamerfontthemeTACC.sty b/my_docs/22/lmod_zoom_mtg_2022_12_06/beamerfontthemeTACC.sty new file mode 100755 index 000000000..ef9ce1e5e --- /dev/null +++ b/my_docs/22/lmod_zoom_mtg_2022_12_06/beamerfontthemeTACC.sty @@ -0,0 +1,12 @@ +% Copyright 2003 by Till Tantau +% +% This program can be redistributed and/or modified under the terms +% of the GNU Public License, version 2. + +\mode + +\setbeamerfont{frametitle}{parent=structure,size=\LARGE,series=\bfseries} +\setbeamerfont{framesubtitle}{parent=frametitle,size=\small} + +\mode + \ No newline at end of file diff --git a/my_docs/22/lmod_zoom_mtg_2022_12_06/beamerfontthemeTACC16.sty b/my_docs/22/lmod_zoom_mtg_2022_12_06/beamerfontthemeTACC16.sty deleted file mode 120000 index a1f2fa5f9..000000000 --- a/my_docs/22/lmod_zoom_mtg_2022_12_06/beamerfontthemeTACC16.sty +++ /dev/null @@ -1 +0,0 @@ -../../beamer/beamerfontthemeTACC16.sty \ No newline at end of file diff --git a/my_docs/22/lmod_zoom_mtg_2022_12_06/beamerfontthemeTACC16.sty b/my_docs/22/lmod_zoom_mtg_2022_12_06/beamerfontthemeTACC16.sty new file mode 100755 index 000000000..b65271835 --- /dev/null +++ b/my_docs/22/lmod_zoom_mtg_2022_12_06/beamerfontthemeTACC16.sty @@ -0,0 +1,21 @@ +% Copyright 2003 by Till Tantau +% +% This program can be redistributed and/or modified under the terms +% of the GNU Public License, version 2. + +\mode +\setbeamerfont{title}{parent=structure,size=\LARGE,series=\bfseries} +\setbeamerfont{author}{parent=structure,size=\large, series=\normalfont} +\setbeamerfont{frametitle}{parent=structure,size=\LARGE,series=\bfseries} +\setbeamerfont{framesubtitle}{parent=frametitle,size=\small} + +%\usefonttheme{professionalfonts} % using non standard fonts for beamer +%\usefonttheme{serif} % default family is serif +%\usepackage{fontspec} +%\setmainfont{Century Gothic} + +\usepackage{fontspec} +\usepackage{libertine} + +\mode + diff --git a/my_docs/22/lmod_zoom_mtg_2022_12_06/beamerinnerthemeTACC.sty b/my_docs/22/lmod_zoom_mtg_2022_12_06/beamerinnerthemeTACC.sty deleted file mode 120000 index 8d5ae3921..000000000 --- a/my_docs/22/lmod_zoom_mtg_2022_12_06/beamerinnerthemeTACC.sty +++ /dev/null @@ -1 +0,0 @@ -../../beamer/beamerinnerthemeTACC.sty \ No newline at end of file diff --git a/my_docs/22/lmod_zoom_mtg_2022_12_06/beamerinnerthemeTACC.sty b/my_docs/22/lmod_zoom_mtg_2022_12_06/beamerinnerthemeTACC.sty new file mode 100755 index 000000000..29e2bce81 --- /dev/null +++ b/my_docs/22/lmod_zoom_mtg_2022_12_06/beamerinnerthemeTACC.sty @@ -0,0 +1,11 @@ +\mode + +\setbeamertemplate{itemize item}[circle] +\setbeamertemplate{itemize subitem}{{}--{}} +\setbeamertemplate{itemize subsubitem}[circle] +\setbeamertemplate{section in toc}{$\bullet$\hskip.5em\inserttocsection} +%\setbeamertemplate{subsection in toc}{} +\setbeamertemplate{subsubsection in toc}{} + +\mode + diff --git a/my_docs/22/lmod_zoom_mtg_2022_12_06/beamerinnerthemeTACC16.sty b/my_docs/22/lmod_zoom_mtg_2022_12_06/beamerinnerthemeTACC16.sty deleted file mode 120000 index 5955acc99..000000000 --- a/my_docs/22/lmod_zoom_mtg_2022_12_06/beamerinnerthemeTACC16.sty +++ /dev/null @@ -1 +0,0 @@ -../../beamer/beamerinnerthemeTACC16.sty \ No newline at end of file diff --git a/my_docs/22/lmod_zoom_mtg_2022_12_06/beamerinnerthemeTACC16.sty b/my_docs/22/lmod_zoom_mtg_2022_12_06/beamerinnerthemeTACC16.sty new file mode 100755 index 000000000..f7f454e1d --- /dev/null +++ b/my_docs/22/lmod_zoom_mtg_2022_12_06/beamerinnerthemeTACC16.sty @@ -0,0 +1,11 @@ +\mode + +\setbeamertemplate{itemize item}[triangle] +\setbeamertemplate{itemize subitem}[triangle] +\setbeamertemplate{itemize subsubitem}[triangle] +\setbeamertemplate{section in toc}{$\bullet$\hskip.5em\inserttocsection} +%\setbeamertemplate{subsection in toc}{} +\setbeamertemplate{subsubsection in toc}{} + +\mode + diff --git a/my_docs/22/lmod_zoom_mtg_2022_12_06/beamerouterthemeTACC.sty b/my_docs/22/lmod_zoom_mtg_2022_12_06/beamerouterthemeTACC.sty deleted file mode 120000 index da0a45d33..000000000 --- a/my_docs/22/lmod_zoom_mtg_2022_12_06/beamerouterthemeTACC.sty +++ /dev/null @@ -1 +0,0 @@ -../../beamer/beamerouterthemeTACC.sty \ No newline at end of file diff --git a/my_docs/22/lmod_zoom_mtg_2022_12_06/beamerouterthemeTACC.sty b/my_docs/22/lmod_zoom_mtg_2022_12_06/beamerouterthemeTACC.sty new file mode 100755 index 000000000..038580303 --- /dev/null +++ b/my_docs/22/lmod_zoom_mtg_2022_12_06/beamerouterthemeTACC.sty @@ -0,0 +1,196 @@ +% Copyright 2003 by Till Tantau +% +% This program can be redistributed and/or modified under the terms +% of the GNU Public License, version 2. + +\mode + +\setbeamertemplate{frametitle}[default][center] +\addtobeamertemplate{frametitle}{\vskip 4ex minus 4ex}{} + +% Here we define what appears at the bottom of each slide: the "footline". +\setbeamertemplate{footline}{% + \leavevmode% + + % Horizontal line dividing the rest of the slide from the footer? + % hrule goes all the way across... + % \hrule height.3pt% + % With \rule, you can specify the thickness + % \rule[raise-height]{width}{thickness} + \hspace{.025\textwidth}\rule{.95\textwidth}{.5pt} + + \hbox{% + % On the left half of the footer, insert the TACC logo + \begin{minipage}{.5\textwidth}% + \hskip .033\textwidth%Give horizontal space else this will set on the left edge of the slide! + % TACC logo with custom viewport! + \includegraphics[viewport=1 -1 135 35, clip=true, width=.4\textwidth]{figures/TACC_logo} + \end{minipage} + % + \begin{minipage}{.5\textwidth}% + \vskip .023\textheight% + \raggedleft% + \setlength{\rightskip}{.033\textwidth} + % + % If we are not on the first page, insert a page number + % For some reason, insertframenumber is buggy when you have fragile + % slides with verbatim environments in them... it tends to skip numbers + % for some reason! On the other hand, the pagenumber is incremented + % for *every* slide, including transition slides... + \ifnum \thepage>1 + % \insertshorttitle + \insertframenumber + % \insertframenumber/\inserttotalframenumber + % \insertpagenumber + \else % Do a phantom of whatever you do on other pages, so spacing matches + %$\phantom{\insertshorttitle}$ + $\phantom{\insertframenumber}$ + %$\phantom{\insertframenumber/\inserttotalframenumber}$ + %$\phantom{\insertpagenumber}$ + \fi + \hfill\includegraphics[width=.5\textwidth]{figures/UT_logo}% + \end{minipage}% + }% + \vskip .023\textheight% +} + + + + +\ifTACCheadernav + +\usesectionheadtemplate +{\hfill\insertsectionhead} +{\hfill\color{fg!50!bg}\insertsectionhead} + +% Head +\ifbeamer@compress + +% Here we define how the top of the frame looks, the "headline". +\setbeamertemplate{headline} +{% + \ifnum \thepage>1 + \leavevmode% + \begin{beamercolorbox}[wd=.5\paperwidth,ht=2.5ex,dp=1.125ex]{% + section in head/foot}% + \insertsectionnavigationhorizontal{.5\paperwidth}{\hskip0pt plus1filll}{}% + \end{beamercolorbox}% + \begin{beamercolorbox}[wd=.5\paperwidth,ht=2.5ex,dp=1.125ex]{% + subsection in head/foot}% + \insertsubsectionnavigationhorizontal{% + .5\paperwidth}{}{\hskip0pt plus1filll}% + \end{beamercolorbox}% + \fi %\thepage>1 +} + +\else% Not compressed + +\setbeamertemplate{headline} +{% + \ifnum \thepage>1 + \leavevmode% + \@tempdimb=2.4375ex% + \ifnum\beamer@subsectionmax<\beamer@sectionmax% + \multiply\@tempdimb by\beamer@sectionmax% + \else% + \multiply\@tempdimb by\beamer@subsectionmax% + \fi% + \ifdim\@tempdimb>0pt% + \advance\@tempdimb by 1.125ex% + \begin{beamercolorbox}[wd=.5\paperwidth,ht=\@tempdimb]{% + section in head/foot}% + \vbox to\@tempdimb{\vfil\insertsectionnavigation{.5\paperwidth}\vfil}% + \end{beamercolorbox}% + \begin{beamercolorbox}[wd=.5\paperwidth,ht=\@tempdimb]{% + subsection in head/foot}% + \vbox to\@tempdimb{\vfil\insertsubsectionnavigation{.5\paperwidth}\vfil}% + \end{beamercolorbox}% + \fi% + \fi % \thepage>1 +} + +\fi % end if compressed +\fi % TACCheadernav + + +\ifTACCheadertree + +\setbeamertemplate{headline} +{ + \begin{beamercolorbox}[wd=\paperwidth,colsep=1.5pt + ]{upper separation line head} + \end{beamercolorbox} + % + % Place short title + % + \begin{beamercolorbox}[wd=\paperwidth,ht=2.5ex,dp=1.125ex,% + leftskip=.3cm,rightskip=.3cm plus1fil]{title in head/foot} + \usebeamerfont{title in head/foot}\insertshorttitle + \end{beamercolorbox} + + % + % Place section + % + \begin{beamercolorbox}[wd=\paperwidth,ht=2.5ex,dp=1.125ex,% + leftskip=.3cm,rightskip=.3cm plus1fil]{section in head/foot} + \usebeamerfont{section in head/foot}% + %\ifbeamer@tree@showhooks + \setbox\beamer@tempbox=\hbox{\insertsectionhead}% + \ifdim\wd\beamer@tempbox>1pt% + \hskip2pt\raise1.9pt\hbox{\vrule width0.4pt height1.875ex\vrule width 5pt height0.4pt}% + \hskip1pt% + \fi% \ifdim + %\else% + %\hskip6pt% + %\fi% \ifbeamer + \insertsectionhead + \end{beamercolorbox} + +% +% Place subsection +% +\begin{beamercolorbox}[wd=\paperwidth,ht=2.5ex,dp=1.125ex,% + leftskip=.3cm,rightskip=.3cm plus1fil]{subsection in head/foot} + \usebeamerfont{subsection in head/foot}% + %\ifbeamer@tree@showhooks + \setbox\beamer@tempbox=\hbox{\insertsubsectionhead}% + \ifdim\wd\beamer@tempbox>1pt% + \hskip9.4pt\raise1.9pt\hbox{\vrule width0.4pt height1.875ex\vrule width 5pt height0.4pt}% + \hskip1pt% + \fi% \ifdim + %\else% + %\hskip12pt% + %\fi% \ifbeamer + \insertsubsectionhead +\end{beamercolorbox} + +% +% Place final separation box +% + \begin{beamercolorbox}[wd=\paperwidth,colsep=1.5pt + ]{lower separation line head} + \end{beamercolorbox} + + % + % Another matching rule which helps to frame the content + % + \hspace{.025\textwidth}\rule{.95\textwidth}{.5pt} +} +\fi % TACCheadertree + + +% The following command suppresses all navigation symbols. This is +% necessary in the TACC theme, since it overlaps where we want the +% logo to be. +\setbeamertemplate{navigation symbols}{} + +% Align the navigation symbols vertically (still overlaps our logo!) +%\setbeamertemplate{navigation symbols}[vertical]{} + +% Only places the slide-forward and slide-back symbol, but yes, +% this still overlaps our logo! +%\setbeamertemplate{navigation symbols}[only frame symbol]{} + + +\mode + diff --git a/my_docs/22/lmod_zoom_mtg_2022_12_06/beamerouterthemeTACC16.sty b/my_docs/22/lmod_zoom_mtg_2022_12_06/beamerouterthemeTACC16.sty deleted file mode 120000 index 54bd09537..000000000 --- a/my_docs/22/lmod_zoom_mtg_2022_12_06/beamerouterthemeTACC16.sty +++ /dev/null @@ -1 +0,0 @@ -../../beamer/beamerouterthemeTACC16.sty \ No newline at end of file diff --git a/my_docs/22/lmod_zoom_mtg_2022_12_06/beamerouterthemeTACC16.sty b/my_docs/22/lmod_zoom_mtg_2022_12_06/beamerouterthemeTACC16.sty new file mode 100755 index 000000000..d5e6388c7 --- /dev/null +++ b/my_docs/22/lmod_zoom_mtg_2022_12_06/beamerouterthemeTACC16.sty @@ -0,0 +1,312 @@ +% Antonio Gomez (agomez@tacc.utexas.edu) +% 4-20-17. Added option to put the footer on the right side + + + +\mode + +\usepackage{xcolor} +\usepackage{graphicx} +\usepackage{etoolbox} + + + +% This theme accepts the "rightfooter" option +% When used, it will put the TACC logo at the bottom of the slide on the right side +% By default, it goes to the left + +\xifaspectratio{ + {169} { + \pgfdeclareimage[width=\paperwidth]{titlebackground}{./figures/master169.jpg} + \if@rightfooterOption + \pgfdeclareimage[width=\paperwidth]{background}{./figures/secondary_right169.jpg} +\else + \pgfdeclareimage[width=\paperwidth]{background}{./figures/secondary169.jpg} +\fi +} +}[ +\pgfdeclareimage[width=\paperwidth]{titlebackground}{./figures/master.jpg} + \if@rightfooterOption + \pgfdeclareimage[width=\paperwidth]{background}{./figures/secondary_right.jpg} +\else + \pgfdeclareimage[width=\paperwidth]{background}{./figures/secondary.jpg} +\fi +] + +\setbeamertemplate{background canvas}{% +\xifaspectratio{ + {169} { + \ifnum\c@framenumber=1 % + \begin{picture}(0,0) + \put(-3,-256){% + \pgfuseimage{titlebackground} + } + \end{picture} + \else% + \begin{picture}(0,0) + \put(-3,-260){% + \pgfuseimage{background} + } + \end{picture} + \fi + } + {43} { + \ifnum\c@framenumber=1 % + \begin{picture}(0,0) + \put(-4,-274){% + \pgfuseimage{titlebackground} + } + \end{picture} + \else% + \begin{picture}(0,0) + \put(-4,-274){% + \pgfuseimage{background} + } + \end{picture} + \fi + } +} +} + + + +%\setbeamertemplate{background canvas}{% +% % On title page +% \ifnum\c@framenumber=1 % +% \begin{picture}(0,0) +% \put(0,-253){% +% \pgfuseimage{titlebackground} +% } +% \end{picture} +% +% \else% +% \xifaspectratio{ +% {169} { +% % Other frames background +% \begin{picture}(0,0) +% \put(-4,-260){% +% \pgfuseimage{background} +% } +% \end{picture} +% } +% }[ +% % Other frames background +% \begin{picture}(0,0) +% \put(-4,-274){% +% \pgfuseimage{background} +% } +% \end{picture} +% ] +% \fi% +%} + + +\setbeamertemplate{title page}{ +\vspace{40pt} +\begin{center} +\usebeamerfont{title} {\huge \inserttitle}\par +\vspace{4ex} +\usebeamerfont{author} { + \insertauthor +}\par +\vspace{2ex} +\usebeamerfont{institute}{ + \insertinstitute +} \par +\vspace{2ex} +\usebeamerfont{date}{ + \insertdate +} +\end{center} +} + + +\setbeamertemplate{frametitle}[default][center] +\setbeamertemplate{frametitle}{ + \makeatletter + \regexpatchcmd{\insertframetitle} + {(\c{usebeamertemplate}.*)\c{fi}} + {\c{NoCaseChange}\cB\{\1\cE\}\c{fi}} + {}{}% + \makeatother + \vskip1ex + \insertframetitle +} + +% Here we define what appears at the bottom of each slide: the "footline". +\setbeamertemplate{footline}{% + \leavevmode% + + % Horizontal line dividing the rest of the slide from the footer? + % hrule goes all the way across... + % \hrule height.3pt% + % With \rule, you can specify the thickness + % \rule[raise-height]{width}{thickness} + % \hspace{.025\textwidth}\rule{.95\textwidth}{.5pt} + + \hbox{% + \ifnum \thepage>1 + \if@rightfooterOption + \begin{minipage}{.2\textwidth}% + \hskip .05\textwidth%Give horizontal space else this will set on the left edge of the slide! + \end{minipage} + \else + \begin{minipage}{.4\textwidth}% + \hskip .05\textwidth%Give horizontal space else this will set on the left edge of the slide! + \end{minipage} + \fi + + + \begin{minipage}{\textwidth}% + % \vskip .023\textheight% + \raggedleft% + \setlength{\rightskip}{\textwidth} + \if@rightfooterOption + \hbox{% + \begin{beamercolorbox}[wd=0.7\textwidth,ht=2.25ex,dp=1ex,left]{author in head/foot}% + \insertshorttitle{} \hskip .01\textwidth | \hskip .01\textwidth \insertdate{} \hskip .01\textwidth | \hskip .01\textwidth \insertframenumber{} + \end{beamercolorbox}% + } + \else + \hbox{% + \begin{beamercolorbox}[wd=0.5\textwidth,ht=2.25ex,dp=1ex,left]{author in head/foot}% + \insertshorttitle{} \hskip .01\textwidth | \hskip .01\textwidth \insertdate{} \hskip .01\textwidth | \hskip .01\textwidth \insertframenumber{} + \end{beamercolorbox}% + } + \fi + + \end{minipage}% + \begin{minipage}{.05\textwidth}% + \end{minipage}% + \fi %\thepage>1 + }% + \vskip .023\textheight% + +} + + + + +\ifTACCheadernav + +\usesectionheadtemplate +{\hfill\insertsectionhead} +{\hfill\color{fg!50!bg}\insertsectionhead} + +% Head +\ifbeamer@compress + +% Here we define how the top of the frame looks, the "headline". +\setbeamertemplate{headline} +{% + \ifnum \thepage>1 + \leavevmode% + \begin{beamercolorbox}[wd=.5\paperwidth,ht=2.5ex,dp=1.125ex]{% + section in head/foot}% + \insertsectionnavigationhorizontal{.5\paperwidth}{\hskip0pt plus1filll}{}% + \end{beamercolorbox}% + \begin{beamercolorbox}[wd=.5\paperwidth,ht=2.5ex,dp=1.125ex]{% + subsection in head/foot}% + \insertsubsectionnavigationhorizontal{% + .5\paperwidth}{}{\hskip0pt plus1filll}% + \end{beamercolorbox}% + \fi %\thepage>1 +} + +\else% Not compressed + +\setbeamertemplate{headline} +{% + \ifnum \thepage>1 + \leavevmode% + \@tempdimb=2.4375ex% + \ifnum\beamer@subsectionmax<\beamer@sectionmax% + \multiply\@tempdimb by\beamer@sectionmax% + \else% + \multiply\@tempdimb by\beamer@subsectionmax% + \fi% + \ifdim\@tempdimb>0pt% + \advance\@tempdimb by 1.125ex% + \begin{beamercolorbox}[wd=.5\paperwidth,ht=\@tempdimb]{% + section in head/foot}% + \vbox to\@tempdimb{\vfil\insertsectionnavigation{.5\paperwidth}\vfil}% + \end{beamercolorbox}% + \begin{beamercolorbox}[wd=.5\paperwidth,ht=\@tempdimb]{% + subsection in head/foot}% + \vbox to\@tempdimb{\vfil\insertsubsectionnavigation{.5\paperwidth}\vfil}% + \end{beamercolorbox}% + \fi% + \fi % \thepage>1 +} + +\fi % end if compressed +\fi % TACCheadernav + + +\ifTACCheadertree + +\setbeamertemplate{headline} +{ + \begin{beamercolorbox}[wd=\paperwidth,colsep=1.5pt]{upper separation line head} + \end{beamercolorbox} + % + % Place short title + % + \begin{beamercolorbox}[wd=\paperwidth,ht=2.5ex,dp=1.125ex,% + leftskip=.3cm,rightskip=.3cm plus1fil]{title in head/foot} + \usebeamerfont{title in head/foot}\insertshorttitle + \end{beamercolorbox} + + % + % Place section + % + \begin{beamercolorbox}[wd=\paperwidth,ht=2.5ex,dp=1.125ex,% + leftskip=.3cm,rightskip=.3cm plus1fil]{section in head/foot} + \usebeamerfont{section in head/foot}% + %\ifbeamer@tree@showhooks + \setbox\beamer@tempbox=\hbox{\insertsectionhead}% + \ifdim\wd\beamer@tempbox>1pt% + \hskip2pt\raise1.9pt\hbox{\vrule width0.4pt height1.875ex\vrule width 5pt height0.4pt}% + \hskip1pt% + \fi + \insertsectionhead + \end{beamercolorbox} + +% +% Place subsection +% +\begin{beamercolorbox}[wd=\paperwidth,ht=2.5ex,dp=1.125ex,% + leftskip=.3cm,rightskip=.3cm plus1fil]{subsection in head/foot} + \usebeamerfont{subsection in head/foot}% + %\ifbeamer@tree@showhooks + \setbox\beamer@tempbox=\hbox{\insertsubsectionhead}% + \ifdim\wd\beamer@tempbox>1pt% + \hskip9.4pt\raise1.9pt\hbox{\vrule width0.4pt height1.875ex\vrule width 5pt height0.4pt}% + \hskip1pt% + \fi + \insertsubsectionhead +\end{beamercolorbox} + +% +% Place final separation box +% + \begin{beamercolorbox}[wd=\paperwidth,colsep=1.5pt + ]{lower separation line head} + \end{beamercolorbox} + + % + % Another matching rule which helps to frame the content + % + \hspace{.025\textwidth}\rule{.95\textwidth}{.5pt} +} +\fi % TACCheadertree + + +% The following command suppresses all navigation symbols. This is +% necessary in the TACC theme, since it overlaps where we want the +% logo to be. +\setbeamertemplate{navigation symbols}{} + + +\mode + diff --git a/my_docs/22/lmod_zoom_mtg_2022_12_06/beamerthemeTACC.sty b/my_docs/22/lmod_zoom_mtg_2022_12_06/beamerthemeTACC.sty deleted file mode 120000 index 5c339abd4..000000000 --- a/my_docs/22/lmod_zoom_mtg_2022_12_06/beamerthemeTACC.sty +++ /dev/null @@ -1 +0,0 @@ -../../beamer/beamerthemeTACC.sty \ No newline at end of file diff --git a/my_docs/22/lmod_zoom_mtg_2022_12_06/beamerthemeTACC.sty b/my_docs/22/lmod_zoom_mtg_2022_12_06/beamerthemeTACC.sty new file mode 100755 index 000000000..c6a1b1269 --- /dev/null +++ b/my_docs/22/lmod_zoom_mtg_2022_12_06/beamerthemeTACC.sty @@ -0,0 +1,26 @@ +%% TACC theme for beamer + +\newif\ifTACCheadernav +\DeclareOption{headernav}{\global\TACCheadernavtrue} + +\newif\ifTACCheadertree +\DeclareOption{headertree}{\global\TACCheadertreetrue} +\ProcessOptions + +\mode + +\usefonttheme{TACC} +\usecolortheme{TACC} +\useinnertheme{TACC} +\useoutertheme{TACC} + +\mode + + +\newcommand{\event}[1]{% + \makeatletter% + \def\TACC@eventname{#1}% + \makeatother} + +\newcommand{\sectionframe}[1]{\section{#1}\frame{\Large\textbf{#1}}} +\newcommand{\subsectionframe}[1]{\subsection{#1}\frame{\large\textbf{#1}}} diff --git a/my_docs/22/lmod_zoom_mtg_2022_12_06/beamerthemeTACC16.sty b/my_docs/22/lmod_zoom_mtg_2022_12_06/beamerthemeTACC16.sty deleted file mode 120000 index 7a9d4d296..000000000 --- a/my_docs/22/lmod_zoom_mtg_2022_12_06/beamerthemeTACC16.sty +++ /dev/null @@ -1 +0,0 @@ -../../beamer/beamerthemeTACC16.sty \ No newline at end of file diff --git a/my_docs/22/lmod_zoom_mtg_2022_12_06/beamerthemeTACC16.sty b/my_docs/22/lmod_zoom_mtg_2022_12_06/beamerthemeTACC16.sty new file mode 100755 index 000000000..b522d0207 --- /dev/null +++ b/my_docs/22/lmod_zoom_mtg_2022_12_06/beamerthemeTACC16.sty @@ -0,0 +1,61 @@ +%% TACC theme for beamer + + +\newif\if@rightfooterOption +\@rightfooterOptionfalse +\DeclareOption{rightfooter}{\@rightfooterOptiontrue} +\ProcessOptions + + +\newif\ifTACCheadernav +\DeclareOption{headernav}{\global\TACCheadernavtrue} + +\newif\ifTACCheadertree +\DeclareOption{headertree}{\global\TACCheadertreetrue} +\ProcessOptions + +\usepackage{xparse} +\ExplSyntaxOn +\NewDocumentCommand{\ifaspectratio}{mmm} + { + % Recover the option from those passed to the class + \keys_set:nf { zunbeltz/beameroptions } { \use:c { opt@beamer.cls } } + \str_if_eq:nVTF { #1 } \l_zunbeltz_aspectratio_tl { #2 } { #3 } + } +\NewDocumentCommand{\xifaspectratio}{mO{}} + { + % Recover the option from those passed to the class + \keys_set:nf { zunbeltz/beameroptions } { \use:c { opt@beamer.cls } } + \str_case:VnF \l_zunbeltz_aspectratio_tl { #1 } { #2 } + } +% We need to define only one key, the other are treated as `unknown' +\keys_define:nn { zunbeltz/beameroptions } + { + aspectratio .tl_set:N = \l_zunbeltz_aspectratio_tl, + aspectratio .initial:n = 43, + unknown .code:n = {}, + } + +% Generate the variants we need +\cs_generate_variant:Nn \keys_set:nn { nf } +\cs_generate_variant:Nn \str_if_eq:nnTF { nV } +\cs_generate_variant:Nn \str_case:nnF { V } +\ExplSyntaxOff + +\mode + +\usefonttheme{TACC16} +\useinnertheme{TACC16} +\useoutertheme{TACC16} +\usecolortheme{TACC16} + +\mode + + +\newcommand{\event}[1]{% + \makeatletter% + \def\TACC@eventname{#1}% + \makeatother} + +\newcommand{\sectionframe}[1]{\section{#1}\frame{\Large\textbf{#1}}} +\newcommand{\subsectionframe}[1]{\subsection{#1}\frame{\large\textbf{#1}}} diff --git a/my_docs/22/lmod_zoom_mtg_2022_12_06/figures b/my_docs/22/lmod_zoom_mtg_2022_12_06/figures deleted file mode 120000 index ddafd8974..000000000 --- a/my_docs/22/lmod_zoom_mtg_2022_12_06/figures +++ /dev/null @@ -1 +0,0 @@ -../../beamer/figures \ No newline at end of file diff --git a/my_docs/22/lmod_zoom_mtg_2022_12_06/figures/TACC_logo.pdf b/my_docs/22/lmod_zoom_mtg_2022_12_06/figures/TACC_logo.pdf new file mode 100755 index 000000000..c018a20cb Binary files /dev/null and b/my_docs/22/lmod_zoom_mtg_2022_12_06/figures/TACC_logo.pdf differ diff --git a/my_docs/22/lmod_zoom_mtg_2022_12_06/figures/UT_logo.pdf b/my_docs/22/lmod_zoom_mtg_2022_12_06/figures/UT_logo.pdf new file mode 100755 index 000000000..d5b42e752 Binary files /dev/null and b/my_docs/22/lmod_zoom_mtg_2022_12_06/figures/UT_logo.pdf differ diff --git a/my_docs/22/lmod_zoom_mtg_2022_12_06/figures/cc.png b/my_docs/22/lmod_zoom_mtg_2022_12_06/figures/cc.png new file mode 100644 index 000000000..8a532ff8f Binary files /dev/null and b/my_docs/22/lmod_zoom_mtg_2022_12_06/figures/cc.png differ diff --git a/my_docs/22/lmod_zoom_mtg_2022_12_06/figures/isa.png b/my_docs/22/lmod_zoom_mtg_2022_12_06/figures/isa.png new file mode 100644 index 000000000..f95d985e7 Binary files /dev/null and b/my_docs/22/lmod_zoom_mtg_2022_12_06/figures/isa.png differ diff --git a/my_docs/22/lmod_zoom_mtg_2022_12_06/figures/master.jpg b/my_docs/22/lmod_zoom_mtg_2022_12_06/figures/master.jpg new file mode 100644 index 000000000..f5c56c04a Binary files /dev/null and b/my_docs/22/lmod_zoom_mtg_2022_12_06/figures/master.jpg differ diff --git a/my_docs/22/lmod_zoom_mtg_2022_12_06/figures/master169.jpg b/my_docs/22/lmod_zoom_mtg_2022_12_06/figures/master169.jpg new file mode 100644 index 000000000..b215776eb Binary files /dev/null and b/my_docs/22/lmod_zoom_mtg_2022_12_06/figures/master169.jpg differ diff --git a/my_docs/22/lmod_zoom_mtg_2022_12_06/figures/master169.png b/my_docs/22/lmod_zoom_mtg_2022_12_06/figures/master169.png new file mode 100644 index 000000000..bc5c0ed12 Binary files /dev/null and b/my_docs/22/lmod_zoom_mtg_2022_12_06/figures/master169.png differ diff --git a/my_docs/22/lmod_zoom_mtg_2022_12_06/figures/secondary.jpg b/my_docs/22/lmod_zoom_mtg_2022_12_06/figures/secondary.jpg new file mode 100644 index 000000000..d905a95c9 Binary files /dev/null and b/my_docs/22/lmod_zoom_mtg_2022_12_06/figures/secondary.jpg differ diff --git a/my_docs/22/lmod_zoom_mtg_2022_12_06/figures/secondary169.jpg b/my_docs/22/lmod_zoom_mtg_2022_12_06/figures/secondary169.jpg new file mode 100644 index 000000000..4eb017957 Binary files /dev/null and b/my_docs/22/lmod_zoom_mtg_2022_12_06/figures/secondary169.jpg differ diff --git a/my_docs/22/lmod_zoom_mtg_2022_12_06/figures/secondary169.png b/my_docs/22/lmod_zoom_mtg_2022_12_06/figures/secondary169.png new file mode 100644 index 000000000..cb9060a56 Binary files /dev/null and b/my_docs/22/lmod_zoom_mtg_2022_12_06/figures/secondary169.png differ diff --git a/my_docs/22/lmod_zoom_mtg_2022_12_06/figures/secondary_right.jpg b/my_docs/22/lmod_zoom_mtg_2022_12_06/figures/secondary_right.jpg new file mode 100644 index 000000000..f25f93a58 Binary files /dev/null and b/my_docs/22/lmod_zoom_mtg_2022_12_06/figures/secondary_right.jpg differ diff --git a/my_docs/22/lmod_zoom_mtg_2022_12_06/figures/secondary_right169.jpg b/my_docs/22/lmod_zoom_mtg_2022_12_06/figures/secondary_right169.jpg new file mode 100644 index 000000000..567a1078f Binary files /dev/null and b/my_docs/22/lmod_zoom_mtg_2022_12_06/figures/secondary_right169.jpg differ diff --git a/my_docs/22/lmod_zoom_mtg_2022_12_06/themes b/my_docs/22/lmod_zoom_mtg_2022_12_06/themes deleted file mode 120000 index a98530730..000000000 --- a/my_docs/22/lmod_zoom_mtg_2022_12_06/themes +++ /dev/null @@ -1 +0,0 @@ -../../beamer/themes \ No newline at end of file diff --git a/my_docs/22/lmod_zoom_mtg_2022_12_06/themes/beamercolorthemeTACC16.sty b/my_docs/22/lmod_zoom_mtg_2022_12_06/themes/beamercolorthemeTACC16.sty new file mode 100644 index 000000000..248ae8cb6 --- /dev/null +++ b/my_docs/22/lmod_zoom_mtg_2022_12_06/themes/beamercolorthemeTACC16.sty @@ -0,0 +1,193 @@ +% Copyright 2003 by Till Tantau . +% +% This program can be redistributed and/or modified under the terms +% of the GNU Public License, version 2. + +\mode + +\usepackage{textcase,regexpatch} + +\setbeamertemplate{blocks}[rounded][shadow=true] + + +\definecolor{TACCred}{RGB}{180,13,29} +\definecolor{TACCorange}{RGB}{210,104,43} +\definecolor{TACCblue}{RGB}{21,77,122} +%\definecolor{TACCgreen}{RGB}{30,134,104} +\definecolor{TACCgreen}{RGB}{49,168,51} + +% I downloaded a gimp color palette from +% http://maururu.net/2007/latex-beamer-color-palette/ +% Which provides rgb values (I think) for several of the +% default beamer themes. You can open this in gimp by +% opening the Palettes dialog, right-clicking anywhere and choosing +% 'Import Palette'. A color in there called 'default added blue' +% appeared to be approximately what I wanted. It had the triple +% of values 141 145 208. If you double-click on this in the +% palette editor it gives you a bunch of information. You can't +% use these values directly to set a color...it just comes out white. +% I think definecolor is expecting something normalized by 255. Yes! + + +%%% +% Set the normal text color +%%% +\setbeamercolor{normal text}{fg=black} %,bg=white} +\setbeamercolor{example text}{fg=TACCgreen} +\setbeamercolor{alerted text}{fg=TACCorange} + + +\setbeamercolor{structure}{fg=black} +%\setbeamercolor{structure}{fg=black} + +\setbeamercolor{background canvas}{parent=normal text} +\setbeamercolor{background}{parent=background canvas} + +\setbeamercolor{palette primary}{use=structure,fg=structure.fg} +\setbeamercolor{palette secondary}{use=structure,fg=structure.fg!75!black} +\setbeamercolor{palette tertiary}{use=structure,fg=structure.fg!50!black} +\setbeamercolor{palette quaternary}{fg=black} + +\setbeamercolor{palette sidebar primary}{use=normal text,fg=normal text.fg} +\setbeamercolor{palette sidebar secondary}{use=structure,fg=structure.fg} +\setbeamercolor{palette sidebar tertiary}{use=normal text,fg=normal text.fg} +\setbeamercolor{palette sidebar quaternary}{use=structure,fg=structure.fg} + +\setbeamercolor{math text}{} +\setbeamercolor{math text inlined}{parent=math text} +\setbeamercolor{math text displayed}{parent=math text} + +\setbeamercolor{normal text in math text}{} + +\setbeamercolor{local structure}{parent=structure} + +\setbeamercolor{titlelike}{parent=structure} + +\setbeamercolor{title}{parent=titlelike} +\setbeamercolor{title in head/foot}{parent=palette quaternary} +\setbeamercolor{title in sidebar}{parent=palette sidebar quaternary} + +\setbeamercolor{subtitle}{parent=title} + +\setbeamercolor{author}{} +\setbeamercolor{author in head/foot}{parent=palette primary} +\setbeamercolor{author in sidebar}{use=palette sidebar tertiary,fg=palette sidebar tertiary.fg} + +\setbeamercolor{institute}{} +\setbeamercolor{institute in head/foot}{parent=palette tertiary} +\setbeamercolor{institute in sidebar}{use=palette sidebar tertiary,fg=palette sidebar tertiary.fg} + +\setbeamercolor{date}{} +\setbeamercolor{date in head/foot}{parent=palette secondary} +\setbeamercolor{date in sidebar}{use=palette sidebar tertiary,fg=palette sidebar tertiary.fg} + +\setbeamercolor{titlegraphic}{} + +\setbeamercolor{part name}{} +\setbeamercolor{part title}{parent=titlelike} + +\setbeamercolor{section in toc}{parent=structure} +\setbeamercolor{section in toc shaded}{parent=section in toc} +\setbeamercolor{section in head/foot}{parent=palette tertiary} +\setbeamercolor{section in sidebar}{parent=palette sidebar secondary} +\setbeamercolor{section in sidebar shaded}{use=section in sidebar,fg=section in sidebar.fg!40!bg} +\setbeamercolor{section number projected}{parent=item projected} + +\setbeamercolor{subsection in toc}{} +\setbeamercolor{subsection in toc shaded}{parent=subsection in toc} +\setbeamercolor{subsection in head/foot}{parent=palette secondary} +\setbeamercolor{subsection in sidebar}{parent=palette sidebar primary} +\setbeamercolor{subsection in sidebar shaded}{use=subsection in sidebar,fg=subsection in sidebar.fg!40!bg} +\setbeamercolor{subsection number projected}{parent={subitem projected}} + +\setbeamercolor{subsubsection in toc}{parent=subsection in toc} +\setbeamercolor{subsubsection in toc shaded}{parent=subsubsection in toc} +\setbeamercolor{subsubsection in head/foot}{parent=subsection in head/foot} +\setbeamercolor{subsubsection in sidebar}{parent=subsection in sidebar} +\setbeamercolor{subsubsection in sidebar shaded}{parent=subsection in sidebar shaded} +\setbeamercolor{subsubsection number projected}{parent=subsubitem projected} + +\setbeamercolor{headline}{} +\setbeamercolor{footline}{} + +\setbeamercolor{sidebar}{} +\setbeamercolor{sidebar left}{parent=sidebar} +\setbeamercolor{sidebar right}{parent=sidebar} + +\setbeamercolor{logo}{parent=palette secondary} + +\setbeamercolor{frametitle}{parent=titlelike} +\setbeamercolor{framesubtitle}{parent=frametitle} + +\setbeamercolor{frametitle right}{parent=frametitle} + +\setbeamercolor{caption}{} +\setbeamercolor{caption name}{parent=structure} + +\setbeamercolor{button}{use=local structure,bg=local structure.fg!50!bg,fg=white} +\setbeamercolor{button border}{use=button,fg=button.bg} +\setbeamercolor{navigation symbols}{use=structure,fg=structure.fg!40!bg} +\setbeamercolor{navigation symbols dimmed}{use=structure,fg=structure.fg!20!bg} +\setbeamercolor{mini frame}{parent=section in head/foot} + +\setbeamercolor{block body}{fg=black} +\setbeamercolor{block body alerted}{fg=black} +\setbeamercolor{block body example}{fg=black} + +\setbeamercolor{block title}{bg=TACCblue,fg=white} +\setbeamercolor{block title alerted}{bg=TACCred,fg=white} +\setbeamercolor{block title example}{bg=TACCgreen,fg=white} + +\setbeamercolor{item}{parent=local structure} +\setbeamercolor{subitem}{parent=item} +\setbeamercolor{subsubitem}{parent=subitem} + +\setbeamercolor{item projected}{parent=item,use=item,fg=black,bg=item.fg} +\setbeamercolor{subitem projected}{parent=item projected} +\setbeamercolor{subsubitem projected}{parent=subitem projected} + +\setbeamercolor{enumerate item}{parent=item} +\setbeamercolor{enumerate subitem}{parent=subitem} +\setbeamercolor{enumerate subsubitem}{parent=subsubitem} + +\setbeamercolor{itemize item}{parent=item} +\setbeamercolor{itemize subitem}{parent=subitem} +\setbeamercolor{itemize subsubitem}{parent=subsubitem} + +\setbeamercolor{itemize/enumerate body}{} +\setbeamercolor{itemize/enumerate subbody}{} +\setbeamercolor{itemize/enumerate subsubbody}{} + +\setbeamercolor{description item}{parent=item} + +\setbeamercolor{bibliography item}{parent=item} + +\setbeamercolor{bibliography entry author}{use=structure,fg=structure.fg} +\setbeamercolor{bibliography entry title}{use=normal text,fg=normal text.fg} +\setbeamercolor{bibliography entry location}{use=structure,fg=structure.fg!65!bg} +\setbeamercolor{bibliography entry note}{use=structure,fg=structure.fg!65!bg} + +\setbeamercolor{separation line}{} + +\setbeamercolor{upper separation line head}{parent=separation line} +\setbeamercolor{middle separation line head}{parent=separation line} +\setbeamercolor{lower separation line head}{parent=separation line} + +\setbeamercolor{upper separation line foot}{parent=separation line} +\setbeamercolor{middle separation line foot}{parent=separation line} +\setbeamercolor{lower separation line foot}{parent=separation line} + +\setbeamercolor{abstract}{} +\setbeamercolor{abstract title}{parent=structure} + +\setbeamercolor{verse}{} + +\setbeamercolor{quotation}{} +\setbeamercolor{quote}{parent=quotation} + +\setbeamercolor{page number in head/foot}{fg=fg!50!bg} + +\setbeamercolor{qed symbol}{parent=structure} + +\mode + diff --git a/my_docs/22/lmod_zoom_mtg_2022_12_06/themes/beamerfontthemeTACC16.sty b/my_docs/22/lmod_zoom_mtg_2022_12_06/themes/beamerfontthemeTACC16.sty new file mode 100644 index 000000000..d0fc325cc --- /dev/null +++ b/my_docs/22/lmod_zoom_mtg_2022_12_06/themes/beamerfontthemeTACC16.sty @@ -0,0 +1,21 @@ +% Copyright 2003 by Till Tantau +% +% This program can be redistributed and/or modified under the terms +% of the GNU Public License, version 2. + +\mode +\setbeamerfont{title}{parent=structure,size=\LARGE,series=\bfseries} +\setbeamerfont{author}{parent=structure,size=\large, series=\normalfont} +\setbeamerfont{frametitle}{parent=structure,size=\LARGE,series=\bfseries} +\setbeamerfont{framesubtitle}{parent=frametitle,size=\small} + +%\usefonttheme{professionalfonts} % using non standard fonts for beamer +%\usefonttheme{serif} % default family is serif +%\usepackage{fontspec} +%\setmainfont{Century Gothic} + +%\usepackage{fontspec} +\usepackage{libertine} + +\mode + diff --git a/my_docs/22/lmod_zoom_mtg_2022_12_06/themes/beamerinnerthemeTACC16.sty b/my_docs/22/lmod_zoom_mtg_2022_12_06/themes/beamerinnerthemeTACC16.sty new file mode 100644 index 000000000..f7f454e1d --- /dev/null +++ b/my_docs/22/lmod_zoom_mtg_2022_12_06/themes/beamerinnerthemeTACC16.sty @@ -0,0 +1,11 @@ +\mode + +\setbeamertemplate{itemize item}[triangle] +\setbeamertemplate{itemize subitem}[triangle] +\setbeamertemplate{itemize subsubitem}[triangle] +\setbeamertemplate{section in toc}{$\bullet$\hskip.5em\inserttocsection} +%\setbeamertemplate{subsection in toc}{} +\setbeamertemplate{subsubsection in toc}{} + +\mode + diff --git a/my_docs/22/lmod_zoom_mtg_2022_12_06/themes/beamerouterthemeTACC16-169.sty b/my_docs/22/lmod_zoom_mtg_2022_12_06/themes/beamerouterthemeTACC16-169.sty new file mode 100644 index 000000000..c62f9ed04 --- /dev/null +++ b/my_docs/22/lmod_zoom_mtg_2022_12_06/themes/beamerouterthemeTACC16-169.sty @@ -0,0 +1,247 @@ +% Copyright 2003 by Till Tantau +% +% This program can be redistributed and/or modified under the terms +% of the GNU Public License, version 2. + +\mode + +\usepackage{xcolor} +\usepackage{graphicx} +\usepackage{etoolbox} + +\pgfdeclareimage[width=\paperwidth]{titlebackground}{./figures/master169.png} +\pgfdeclareimage[width=\paperwidth]{background}{./figures/secondary169.png} + +\setbeamertemplate{background canvas}{% + \ifnum\c@framenumber=1% + \begin{picture}(0,0) + \put(-0.15,-250){% + \pgfuseimage{titlebackground} + } + %\put(0,-130.7){% + + %\begin{minipage}[b][45mm][t]{\textwidth}%{226mm} + %\begin{center} + % \usebeamerfont{title}{\MakeTextUppercase{\inserttitle}\par} + %\vspace{2ex} + %\usebeamerfont{author}{\insertauthor} + % \end{center} + %\end{minipage} + %} + \end{picture} + % On title page + \else% + % Other frames background + \begin{picture}(0,0) + \put(-0.15,-255.55){% + \pgfuseimage{background} + } + \end{picture} + \fi% +} + + +\setbeamertemplate{title page}{ +\vspace{40pt} +\begin{center} +\usebeamerfont{title} {\huge \inserttitle}\par +\vspace{4ex} +\usebeamerfont{author} { + \insertauthor +}\par +\vspace{2ex} +\usebeamerfont{institute}{ + \insertinstitute +} \par +\vspace{2ex} +\usebeamerfont{date}{ + \insertdate +} +\end{center} +} + + +\setbeamertemplate{frametitle}[default][center] +\setbeamertemplate{frametitle}{ + \makeatletter + \regexpatchcmd{\insertframetitle} + {(\c{usebeamertemplate}.*)\c{fi}} + {\c{NoCaseChange}\cB\{\1\cE\}\c{fi}} + {}{}% + \makeatother + \vskip1ex + \insertframetitle +} + +% Here we define what appears at the bottom of each slide: the "footline". +\setbeamertemplate{footline}{% + \leavevmode% + + % Horizontal line dividing the rest of the slide from the footer? + % hrule goes all the way across... + % \hrule height.3pt% + % With \rule, you can specify the thickness + % \rule[raise-height]{width}{thickness} + % \hspace{.025\textwidth}\rule{.95\textwidth}{.5pt} + + \hbox{% + \ifnum \thepage>1 + % On the left half of the footer, insert the TACC of + \begin{minipage}{.2\textwidth}% + \hskip .05\textwidth%Give horizontal space else this will set on the left edge of the slide! + % \includegraphics[width=.8\textwidth]{TACC_logo.png} + \end{minipage} + + + \begin{minipage}{\textwidth}% + % \vskip .023\textheight% + \raggedleft% + \setlength{\rightskip}{\textwidth} + \hbox{% + \begin{beamercolorbox}[wd=0.7\textwidth,ht=2.25ex,dp=1ex,left]{author in head/foot}% + \insertshorttitle{} \hskip .01\textwidth | \hskip .01\textwidth \insertdate{} \hskip .01\textwidth | \hskip .01\textwidth \insertframenumber{} + \end{beamercolorbox}% + } + + % + % If we are not on the first page, insert a page number + % For some reason, insertframenumber is buggy when you have fragile + % slides with verbatim environments in them... it tends to skip numbers + % for some reason! On the other hand, the pagenumber is incremented + % for *every* slide, including transition slides... + % \hfill\includegraphics[width=\textwidth]{tacc_ut.png} + \end{minipage}% + \begin{minipage}{.05\textwidth}% + \end{minipage}% + \fi %\thepage>1 + }% + \vskip .023\textheight% + +} + + + + +\ifTACCheadernav + +\usesectionheadtemplate +{\hfill\insertsectionhead} +{\hfill\color{fg!50!bg}\insertsectionhead} + +% Head +\ifbeamer@compress + +% Here we define how the top of the frame looks, the "headline". +\setbeamertemplate{headline} +{% + \ifnum \thepage>1 + \leavevmode% + \begin{beamercolorbox}[wd=.5\paperwidth,ht=2.5ex,dp=1.125ex]{% + section in head/foot}% + \insertsectionnavigationhorizontal{.5\paperwidth}{\hskip0pt plus1filll}{}% + \end{beamercolorbox}% + \begin{beamercolorbox}[wd=.5\paperwidth,ht=2.5ex,dp=1.125ex]{% + subsection in head/foot}% + \insertsubsectionnavigationhorizontal{% + .5\paperwidth}{}{\hskip0pt plus1filll}% + \end{beamercolorbox}% + \fi %\thepage>1 +} + +\else% Not compressed + +\setbeamertemplate{headline} +{% + \ifnum \thepage>1 + \leavevmode% + \@tempdimb=2.4375ex% + \ifnum\beamer@subsectionmax<\beamer@sectionmax% + \multiply\@tempdimb by\beamer@sectionmax% + \else% + \multiply\@tempdimb by\beamer@subsectionmax% + \fi% + \ifdim\@tempdimb>0pt% + \advance\@tempdimb by 1.125ex% + \begin{beamercolorbox}[wd=.5\paperwidth,ht=\@tempdimb]{% + section in head/foot}% + \vbox to\@tempdimb{\vfil\insertsectionnavigation{.5\paperwidth}\vfil}% + \end{beamercolorbox}% + \begin{beamercolorbox}[wd=.5\paperwidth,ht=\@tempdimb]{% + subsection in head/foot}% + \vbox to\@tempdimb{\vfil\insertsubsectionnavigation{.5\paperwidth}\vfil}% + \end{beamercolorbox}% + \fi% + \fi % \thepage>1 +} + +\fi % end if compressed +\fi % TACCheadernav + + +\ifTACCheadertree + +\setbeamertemplate{headline} +{ + \begin{beamercolorbox}[wd=\paperwidth,colsep=1.5pt]{upper separation line head} + \end{beamercolorbox} + % + % Place short title + % + \begin{beamercolorbox}[wd=\paperwidth,ht=2.5ex,dp=1.125ex,% + leftskip=.3cm,rightskip=.3cm plus1fil]{title in head/foot} + \usebeamerfont{title in head/foot}\insertshorttitle + \end{beamercolorbox} + + % + % Place section + % + \begin{beamercolorbox}[wd=\paperwidth,ht=2.5ex,dp=1.125ex,% + leftskip=.3cm,rightskip=.3cm plus1fil]{section in head/foot} + \usebeamerfont{section in head/foot}% + %\ifbeamer@tree@showhooks + \setbox\beamer@tempbox=\hbox{\insertsectionhead}% + \ifdim\wd\beamer@tempbox>1pt% + \hskip2pt\raise1.9pt\hbox{\vrule width0.4pt height1.875ex\vrule width 5pt height0.4pt}% + \hskip1pt% + \fi + \insertsectionhead + \end{beamercolorbox} + +% +% Place subsection +% +\begin{beamercolorbox}[wd=\paperwidth,ht=2.5ex,dp=1.125ex,% + leftskip=.3cm,rightskip=.3cm plus1fil]{subsection in head/foot} + \usebeamerfont{subsection in head/foot}% + %\ifbeamer@tree@showhooks + \setbox\beamer@tempbox=\hbox{\insertsubsectionhead}% + \ifdim\wd\beamer@tempbox>1pt% + \hskip9.4pt\raise1.9pt\hbox{\vrule width0.4pt height1.875ex\vrule width 5pt height0.4pt}% + \hskip1pt% + \fi + \insertsubsectionhead +\end{beamercolorbox} + +% +% Place final separation box +% + \begin{beamercolorbox}[wd=\paperwidth,colsep=1.5pt + ]{lower separation line head} + \end{beamercolorbox} + + % + % Another matching rule which helps to frame the content + % + \hspace{.025\textwidth}\rule{.95\textwidth}{.5pt} +} +\fi % TACCheadertree + + +% The following command suppresses all navigation symbols. This is +% necessary in the TACC theme, since it overlaps where we want the +% logo to be. +\setbeamertemplate{navigation symbols}{} + + +\mode + diff --git a/my_docs/22/lmod_zoom_mtg_2022_12_06/themes/beamerouterthemeTACC16.sty b/my_docs/22/lmod_zoom_mtg_2022_12_06/themes/beamerouterthemeTACC16.sty new file mode 100644 index 000000000..c5b178018 --- /dev/null +++ b/my_docs/22/lmod_zoom_mtg_2022_12_06/themes/beamerouterthemeTACC16.sty @@ -0,0 +1,247 @@ +% Copyright 2003 by Till Tantau +% +% This program can be redistributed and/or modified under the terms +% of the GNU Public License, version 2. + +\mode + +\usepackage{xcolor} +\usepackage{graphicx} +\usepackage{etoolbox} + +\pgfdeclareimage[width=\paperwidth]{titlebackground}{master.jpg} +\pgfdeclareimage[width=\paperwidth]{background}{secondary.jpg} + +\setbeamertemplate{background canvas}{% + \ifnum\c@framenumber=1% + \begin{picture}(0,0) + \put(0,-273){% + \pgfuseimage{titlebackground} + } + %\put(0,-130.7){% + + %\begin{minipage}[b][45mm][t]{\textwidth}%{226mm} + %\begin{center} + % \usebeamerfont{title}{\MakeTextUppercase{\inserttitle}\par} + %\vspace{2ex} + %\usebeamerfont{author}{\insertauthor} + % \end{center} + %\end{minipage} + %} + \end{picture} + % On title page + \else% + % Other frames background + \begin{picture}(0,0) + \put(0,-273){% + \pgfuseimage{background} + } + \end{picture} + \fi% +} + + +\setbeamertemplate{title page}{ +\vspace{40pt} +\begin{center} +\usebeamerfont{title} {\huge \inserttitle}\par +\vspace{4ex} +\usebeamerfont{author} { + \insertauthor +}\par +\vspace{2ex} +\usebeamerfont{institute}{ + \insertinstitute +} \par +\vspace{2ex} +\usebeamerfont{date}{ + \insertdate +} +\end{center} +} + + +\setbeamertemplate{frametitle}[default][center] +\setbeamertemplate{frametitle}{ + \makeatletter + \regexpatchcmd{\insertframetitle} + {(\c{usebeamertemplate}.*)\c{fi}} + {\c{NoCaseChange}\cB\{\1\cE\}\c{fi}} + {}{}% + \makeatother + \vskip1ex + \insertframetitle +} + +% Here we define what appears at the bottom of each slide: the "footline". +\setbeamertemplate{footline}{% + \leavevmode% + + % Horizontal line dividing the rest of the slide from the footer? + % hrule goes all the way across... + % \hrule height.3pt% + % With \rule, you can specify the thickness + % \rule[raise-height]{width}{thickness} + % \hspace{.025\textwidth}\rule{.95\textwidth}{.5pt} + + \hbox{% + \ifnum \thepage>1 + % On the left half of the footer, insert the TACC of + \begin{minipage}{.2\textwidth}% + \hskip .05\textwidth%Give horizontal space else this will set on the left edge of the slide! + % \includegraphics[width=.8\textwidth]{figures/TACC_logo.png} + \end{minipage} + + + \begin{minipage}{\textwidth}% + % \vskip .023\textheight% + \raggedleft% + \setlength{\rightskip}{\textwidth} + \hbox{% + \begin{beamercolorbox}[wd=0.7\textwidth,ht=2.25ex,dp=1ex,left]{author in head/foot}% + \insertshorttitle{} \hskip .01\textwidth | \hskip .01\textwidth \insertdate{} \hskip .01\textwidth | \hskip .01\textwidth \insertframenumber{} + \end{beamercolorbox}% + } + + % + % If we are not on the first page, insert a page number + % For some reason, insertframenumber is buggy when you have fragile + % slides with verbatim environments in them... it tends to skip numbers + % for some reason! On the other hand, the pagenumber is incremented + % for *every* slide, including transition slides... + % \hfill\includegraphics[width=\textwidth]{figures/tacc_ut.png} + \end{minipage}% + \begin{minipage}{.05\textwidth}% + \end{minipage}% + \fi %\thepage>1 + }% + \vskip .023\textheight% + +} + + + + +\ifTACCheadernav + +\usesectionheadtemplate +{\hfill\insertsectionhead} +{\hfill\color{fg!50!bg}\insertsectionhead} + +% Head +\ifbeamer@compress + +% Here we define how the top of the frame looks, the "headline". +\setbeamertemplate{headline} +{% + \ifnum \thepage>1 + \leavevmode% + \begin{beamercolorbox}[wd=.5\paperwidth,ht=2.5ex,dp=1.125ex]{% + section in head/foot}% + \insertsectionnavigationhorizontal{.5\paperwidth}{\hskip0pt plus1filll}{}% + \end{beamercolorbox}% + \begin{beamercolorbox}[wd=.5\paperwidth,ht=2.5ex,dp=1.125ex]{% + subsection in head/foot}% + \insertsubsectionnavigationhorizontal{% + .5\paperwidth}{}{\hskip0pt plus1filll}% + \end{beamercolorbox}% + \fi %\thepage>1 +} + +\else% Not compressed + +\setbeamertemplate{headline} +{% + \ifnum \thepage>1 + \leavevmode% + \@tempdimb=2.4375ex% + \ifnum\beamer@subsectionmax<\beamer@sectionmax% + \multiply\@tempdimb by\beamer@sectionmax% + \else% + \multiply\@tempdimb by\beamer@subsectionmax% + \fi% + \ifdim\@tempdimb>0pt% + \advance\@tempdimb by 1.125ex% + \begin{beamercolorbox}[wd=.5\paperwidth,ht=\@tempdimb]{% + section in head/foot}% + \vbox to\@tempdimb{\vfil\insertsectionnavigation{.5\paperwidth}\vfil}% + \end{beamercolorbox}% + \begin{beamercolorbox}[wd=.5\paperwidth,ht=\@tempdimb]{% + subsection in head/foot}% + \vbox to\@tempdimb{\vfil\insertsubsectionnavigation{.5\paperwidth}\vfil}% + \end{beamercolorbox}% + \fi% + \fi % \thepage>1 +} + +\fi % end if compressed +\fi % TACCheadernav + + +\ifTACCheadertree + +\setbeamertemplate{headline} +{ + \begin{beamercolorbox}[wd=\paperwidth,colsep=1.5pt]{upper separation line head} + \end{beamercolorbox} + % + % Place short title + % + \begin{beamercolorbox}[wd=\paperwidth,ht=2.5ex,dp=1.125ex,% + leftskip=.3cm,rightskip=.3cm plus1fil]{title in head/foot} + \usebeamerfont{title in head/foot}\insertshorttitle + \end{beamercolorbox} + + % + % Place section + % + \begin{beamercolorbox}[wd=\paperwidth,ht=2.5ex,dp=1.125ex,% + leftskip=.3cm,rightskip=.3cm plus1fil]{section in head/foot} + \usebeamerfont{section in head/foot}% + %\ifbeamer@tree@showhooks + \setbox\beamer@tempbox=\hbox{\insertsectionhead}% + \ifdim\wd\beamer@tempbox>1pt% + \hskip2pt\raise1.9pt\hbox{\vrule width0.4pt height1.875ex\vrule width 5pt height0.4pt}% + \hskip1pt% + \fi + \insertsectionhead + \end{beamercolorbox} + +% +% Place subsection +% +\begin{beamercolorbox}[wd=\paperwidth,ht=2.5ex,dp=1.125ex,% + leftskip=.3cm,rightskip=.3cm plus1fil]{subsection in head/foot} + \usebeamerfont{subsection in head/foot}% + %\ifbeamer@tree@showhooks + \setbox\beamer@tempbox=\hbox{\insertsubsectionhead}% + \ifdim\wd\beamer@tempbox>1pt% + \hskip9.4pt\raise1.9pt\hbox{\vrule width0.4pt height1.875ex\vrule width 5pt height0.4pt}% + \hskip1pt% + \fi + \insertsubsectionhead +\end{beamercolorbox} + +% +% Place final separation box +% + \begin{beamercolorbox}[wd=\paperwidth,colsep=1.5pt + ]{lower separation line head} + \end{beamercolorbox} + + % + % Another matching rule which helps to frame the content + % + \hspace{.025\textwidth}\rule{.95\textwidth}{.5pt} +} +\fi % TACCheadertree + + +% The following command suppresses all navigation symbols. This is +% necessary in the TACC theme, since it overlaps where we want the +% logo to be. +\setbeamertemplate{navigation symbols}{} + + +\mode + diff --git a/my_docs/22/lmod_zoom_mtg_2022_12_06/themes/beamerthemeTACC16-169.sty b/my_docs/22/lmod_zoom_mtg_2022_12_06/themes/beamerthemeTACC16-169.sty new file mode 100644 index 000000000..22caf9a05 --- /dev/null +++ b/my_docs/22/lmod_zoom_mtg_2022_12_06/themes/beamerthemeTACC16-169.sty @@ -0,0 +1,38 @@ +%% TACC theme for beamer + +\newif\ifTACCheadernav +\DeclareOption{headernav}{\global\TACCheadernavtrue} + +\newif\ifTACCheadertree +\DeclareOption{headertree}{\global\TACCheadertreetrue} +\ProcessOptions + +\mode + +\makeatletter + \def\beamer@calltheme#1#2#3{% + \def\beamer@themelist{#2} + \@for\beamer@themename:=\beamer@themelist\do + {\usepackage[{#1}]{\beamer@themelocation/#3\beamer@themename}}} + + \def\usefolder#1{ + \def\beamer@themelocation{#1} + } + \def\beamer@themelocation{} + +\usefolder{themes} +\usefonttheme{TACC16} +\useinnertheme{TACC16} +\useoutertheme{TACC16-169} +\usecolortheme{TACC16} + +\mode + + +\newcommand{\event}[1]{% + \makeatletter% + \def\TACC@eventname{#1}% + \makeatother} + +\newcommand{\sectionframe}[1]{\section{#1}\frame{\Large\textbf{#1}}} +\newcommand{\subsectionframe}[1]{\subsection{#1}\frame{\large\textbf{#1}}} diff --git a/my_docs/22/lmod_zoom_mtg_2022_12_06/themes/beamerthemeTACC16.sty b/my_docs/22/lmod_zoom_mtg_2022_12_06/themes/beamerthemeTACC16.sty new file mode 100644 index 000000000..750bdd388 --- /dev/null +++ b/my_docs/22/lmod_zoom_mtg_2022_12_06/themes/beamerthemeTACC16.sty @@ -0,0 +1,26 @@ +%% TACC theme for beamer + +\newif\ifTACCheadernav +\DeclareOption{headernav}{\global\TACCheadernavtrue} + +\newif\ifTACCheadertree +\DeclareOption{headertree}{\global\TACCheadertreetrue} +\ProcessOptions + +\mode + +\usefonttheme{TACC16} +\useinnertheme{TACC16} +\useoutertheme{TACC16} +\usecolortheme{TACC16} + +\mode + + +\newcommand{\event}[1]{% + \makeatletter% + \def\TACC@eventname{#1}% + \makeatother} + +\newcommand{\sectionframe}[1]{\section{#1}\frame{\Large\textbf{#1}}} +\newcommand{\subsectionframe}[1]{\subsection{#1}\frame{\large\textbf{#1}}} diff --git a/my_docs/22/lmod_zoom_mtg_2022_12_06/themes/example.pdf b/my_docs/22/lmod_zoom_mtg_2022_12_06/themes/example.pdf new file mode 100644 index 000000000..add373eee Binary files /dev/null and b/my_docs/22/lmod_zoom_mtg_2022_12_06/themes/example.pdf differ diff --git a/my_docs/22/lmod_zoom_mtg_2022_12_06/themes/license.tex b/my_docs/22/lmod_zoom_mtg_2022_12_06/themes/license.tex new file mode 100644 index 000000000..74ff86759 --- /dev/null +++ b/my_docs/22/lmod_zoom_mtg_2022_12_06/themes/license.tex @@ -0,0 +1,14 @@ + +\begin{frame}{License} +\footnotesize +\textcopyright The University of Texas at Austin, \the\year\\ +\vspace{0.5 cm} +This work is licensed under the Creative Commons Attribution Non-Commercial 3.0 Unported License. To view a copy of this license, +visit http://creativecommons.org/licenses/by-nc/3.0/\\ +\vspace{0.5 cm} +When attributing this work, please use the following text: +"Designing and Administering Large-scale Systems", Texas Advanced Computing Center, \the\year. Available under a Creative Commons Attribution Non-Commercial 3.0 Unported License. +\newline +\newline +\includegraphics[width=1cm]{./figures/cc.png} +\end{frame} \ No newline at end of file diff --git a/my_docs/22/sc_22_booth_talk/Lmod-4color@2x.png b/my_docs/22/sc_22_booth_talk/Lmod-4color@2x.png deleted file mode 120000 index 47d505dbf..000000000 --- a/my_docs/22/sc_22_booth_talk/Lmod-4color@2x.png +++ /dev/null @@ -1 +0,0 @@ -../../beamer/Lmod-4color@2x.png \ No newline at end of file diff --git a/my_docs/22/sc_22_booth_talk/Lmod-4color@2x.png b/my_docs/22/sc_22_booth_talk/Lmod-4color@2x.png new file mode 100644 index 000000000..4810d74c3 Binary files /dev/null and b/my_docs/22/sc_22_booth_talk/Lmod-4color@2x.png differ diff --git a/my_docs/22/sc_22_booth_talk/beamercolorthemeTACC.sty b/my_docs/22/sc_22_booth_talk/beamercolorthemeTACC.sty deleted file mode 120000 index 8d27e673a..000000000 --- a/my_docs/22/sc_22_booth_talk/beamercolorthemeTACC.sty +++ /dev/null @@ -1 +0,0 @@ -../../beamer/beamercolorthemeTACC.sty \ No newline at end of file diff --git a/my_docs/22/sc_22_booth_talk/beamercolorthemeTACC.sty b/my_docs/22/sc_22_booth_talk/beamercolorthemeTACC.sty new file mode 100755 index 000000000..78beb6a4a --- /dev/null +++ b/my_docs/22/sc_22_booth_talk/beamercolorthemeTACC.sty @@ -0,0 +1,323 @@ +% Copyright 2003 by Till Tantau . +% +% This program can be redistributed and/or modified under the terms +% of the GNU Public License, version 2. + +\mode + +% I downloaded a gimp color palette from +% http://maururu.net/2007/latex-beamer-color-palette/ +% Which provides rgb values (I think) for several of the +% default beamer themes. You can open this in gimp by +% opening the Palettes dialog, right-clicking anywhere and choosing +% 'Import Palette'. A color in there called 'default added blue' +% appeared to be approximately what I wanted. It had the triple +% of values 141 145 208. If you double-click on this in the +% palette editor it gives you a bunch of information. You can't +% use these values directly to set a color...it just comes out white. +% I think definecolor is expecting something normalized by 255. Yes! + + +% bluish colors +\definecolor{defaddedblue}{rgb}{0.5529,.5686,.8157} % 141,145,208 +\definecolor{defblockheader}{rgb}{.1921,.2235,.6824} % 49,57,174 +\definecolor{flyaddedblue}{rgb}{.5961,.6118,.8431} % 152,156,215 + +% bluish-greys +\definecolor{beetleaddedblue1}{rgb}{.3333,.4039,.6196} % 85 103 158, dark +\definecolor{beetleaddedblue2}{rgb}{.4510,.5098,.7020} % 115 130 179, medium +\definecolor{beetleaddedblue3}{rgb}{.7059,.7255,.7961} % 180 185 203, light (greyest) + +% very light blue-greys +\definecolor{deflightouter1}{rgb}{.7608,.7647,.9020} % 194 195 230, dark +\definecolor{deflightouter2}{rgb}{.8 ,.8039,.9176} % 204 205 234, medium +\definecolor{deflightouter3}{rgb}{.8392,.8431,.9373} % 214 215 239, light + +% reddish colors +\definecolor{flyalertblockheader}{rgb}{.7373,.1294,.1333} % 188 33 34 +\definecolor{flyaddedred}{rgb}{.8667,.5647,.5647}% 221 144 144 +\definecolor{beaverouterframe}{rgb}{.5529,.0980,.0980}% 141 25 25 + +% greens (green is used for 'examples' in beamer) +\definecolor{defexblock}{rgb}{.9098,.9333,.9020} % 232 238 230, light +\definecolor{defaddedgreen}{rgb}{.5412,.6510,.4706} % 138 166 120, medium +\definecolor{defexblockheader}{rgb}{.1686,.3647,.0392} % 43 93 10, dark + +\definecolor{lightexblock}{rgb}{.9137,.9451,.9020} % 233 241 230, light +\definecolor{lightexblockheader}{rgb}{.8235,.8980,.8} % 210 229 204, medium +\definecolor{lightexblockheadertext}{rgb}{.2431,.5098,.0745} % 62 130 19, dark + + +%%% +% Set the normal text color +%%% +\setbeamercolor{normal text}{fg=black,bg=white} + +%%% +% Set the alerted text color +%%% +% \setbeamercolor{alerted text}{fg=red} +\setbeamercolor{alerted text}{fg=red!50!black} % half black/half red for green bg +% \setbeamercolor{alerted text}{fg=beaverouterframe} +% \setbeamercolor{alerted text}{fg=defblockheader} % doesn't stand out enough + + +% Set the 'example' text +\setbeamercolor{example text}{fg=green!50!black} + +\setbeamercolor{structure}{fg=black} + +\setbeamercolor{background canvas}{parent=normal text} +\setbeamercolor{background}{parent=background canvas} + +\setbeamercolor{palette primary}{use=structure,fg=structure.fg} +\setbeamercolor{palette secondary}{use=structure,fg=structure.fg!75!black} +\setbeamercolor{palette tertiary}{use=structure,fg=structure.fg!50!black} +\setbeamercolor{palette quaternary}{fg=black} + +\setbeamercolor{palette sidebar primary}{use=normal text,fg=normal text.fg} +\setbeamercolor{palette sidebar secondary}{use=structure,fg=structure.fg} +\setbeamercolor{palette sidebar tertiary}{use=normal text,fg=normal text.fg} +\setbeamercolor{palette sidebar quaternary}{use=structure,fg=structure.fg} + +\setbeamercolor{math text}{} +\setbeamercolor{math text inlined}{parent=math text} +\setbeamercolor{math text displayed}{parent=math text} + +\setbeamercolor{normal text in math text}{} + +\setbeamercolor{local structure}{parent=structure} + +\setbeamercolor{titlelike}{parent=structure} + +\setbeamercolor{title}{parent=titlelike} +\setbeamercolor{title in head/foot}{parent=palette quaternary} +\setbeamercolor{title in sidebar}{parent=palette sidebar quaternary} + +\setbeamercolor{subtitle}{parent=title} + +\setbeamercolor{author}{} +\setbeamercolor{author in head/foot}{parent=palette primary} +\setbeamercolor{author in sidebar}{use=palette sidebar tertiary,fg=palette sidebar tertiary.fg} + +\setbeamercolor{institute}{} +\setbeamercolor{institute in head/foot}{parent=palette tertiary} +\setbeamercolor{institute in sidebar}{use=palette sidebar tertiary,fg=palette sidebar tertiary.fg} + +\setbeamercolor{date}{} +\setbeamercolor{date in head/foot}{parent=palette secondary} +\setbeamercolor{date in sidebar}{use=palette sidebar tertiary,fg=palette sidebar tertiary.fg} + +\setbeamercolor{titlegraphic}{} + +\setbeamercolor{part name}{} +\setbeamercolor{part title}{parent=titlelike} + +\setbeamercolor{section in toc}{parent=structure} +\setbeamercolor{section in toc shaded}{parent=section in toc} +\setbeamercolor{section in head/foot}{parent=palette tertiary} +\setbeamercolor{section in sidebar}{parent=palette sidebar secondary} +\setbeamercolor{section in sidebar shaded}{use=section in sidebar,fg=section in sidebar.fg!40!bg} +\setbeamercolor{section number projected}{parent=item projected} + +\setbeamercolor{subsection in toc}{} +\setbeamercolor{subsection in toc shaded}{parent=subsection in toc} +\setbeamercolor{subsection in head/foot}{parent=palette secondary} +\setbeamercolor{subsection in sidebar}{parent=palette sidebar primary} +\setbeamercolor{subsection in sidebar shaded}{use=subsection in sidebar,fg=subsection in sidebar.fg!40!bg} +\setbeamercolor{subsection number projected}{parent={subitem projected}} + +\setbeamercolor{subsubsection in toc}{parent=subsection in toc} +\setbeamercolor{subsubsection in toc shaded}{parent=subsubsection in toc} +\setbeamercolor{subsubsection in head/foot}{parent=subsection in head/foot} +\setbeamercolor{subsubsection in sidebar}{parent=subsection in sidebar} +\setbeamercolor{subsubsection in sidebar shaded}{parent=subsection in sidebar shaded} +\setbeamercolor{subsubsection number projected}{parent=subsubitem projected} + +\setbeamercolor{headline}{} +\setbeamercolor{footline}{} + +\setbeamercolor{sidebar}{} +\setbeamercolor{sidebar left}{parent=sidebar} +\setbeamercolor{sidebar right}{parent=sidebar} + +\setbeamercolor{logo}{parent=palette secondary} + +\setbeamercolor{frametitle}{parent=titlelike} +\setbeamercolor{framesubtitle}{parent=frametitle} + +\setbeamercolor{frametitle right}{parent=frametitle} + +\setbeamercolor{caption}{} +\setbeamercolor{caption name}{parent=structure} + +\setbeamercolor{button}{use=local structure,bg=local structure.fg!50!bg,fg=white} +\setbeamercolor{button border}{use=button,fg=button.bg} +\setbeamercolor{navigation symbols}{use=structure,fg=structure.fg!40!bg} +\setbeamercolor{navigation symbols dimmed}{use=structure,fg=structure.fg!20!bg} +\setbeamercolor{mini frame}{parent=section in head/foot} + +% Color expressions are defined in the xcolor package +% +% Ex: Mixture of 40% green, 60% yellow: green!40!yellow +% +% The complement of any color can be obtained by prepending +% a minus sign: -green!40!yellow +% +% One can also combine up to three colors (in differing proportions) +% using the rgb command. For example, the following command combines +% 3 parts of the first color, with 2 parts of the second, and one part +% "red" +% +%\color{rgb:-green!40!yellow,3;green!40!yellow,2;red,1} +% Unfortunately, I don't think this works as an argument to setbeamercolor... +% "Orange" bg=green!30!yellow!30!red +% close to burnt orange: red!75!green +% lightgray is a color, but gray!25!white looks better +% +% A nice pair of greens +% (dark, a little too dark to be under black text...) -red!75!green!50!blue!25 +% (light) -red!75!green!50!blue!25!gray +% +% Some colors are only available via options to the xcolor package, eg. +% x11names,DarkOliveGreen4 +% svgnames, Chartreuse +% dvipsnames, ForestGreen +% +% but beamer does not seem to have any of these. +% +% The base color names which are always available are: +% black +% blue +% brown +% cyan +% darkgray +% gray +% green +% lightgray +% lime +% magenta +% olive +% orange +% pink +% purple +% red +% teal +% violet +% white +% yellow + +% From the beamer user guide, pg. 167 +% Inner color themes only specify the colors of elements used in inner +% themes. Most noticably, they specify the colors used for blocks. +% ... + +% Example color definition +% beamercolorthemedefault.sty:\definecolor{beamer@blendedblue}{rgb}{0.2,0.2,0.7} +% beamercolorthemedefault.sty:\setbeamercolor{structure}{fg=beamer@blendedblue} + +% The greens +% \setbeamercolor{block body}{bg=-red!75!green!50!blue!25!gray} +% \setbeamercolor{block title}{parent=structure,bg=-red!75!green!50!blue!25,fg=-red!75!green!50!blue!25!gray} + +%%% +% Set the block body and title background/foreground colors +%%% +% \setbeamercolor{block body}{bg=flyaddedblue} +% \setbeamercolor{block title}{bg=defblockheader,fg=flyaddedblue} + +% Purplish blues, too dark overall +% \setbeamercolor{block body}{bg=beetleaddedblue3} +% \setbeamercolor{block title}{bg=beetleaddedblue2,fg=beetleaddedblue3} + +% Very light blue greys +% 1. Not enough contrast +% \setbeamercolor{block body}{bg=deflightouter3} +% \setbeamercolor{block title}{bg=deflightouter2,fg=deflightouter3} + +% 2. Not enough contrast +% \setbeamercolor{block body}{bg=deflightouter3} +% \setbeamercolor{block title}{bg=deflightouter1,fg=deflightouter3} + +% 3. Combination of deflightouter and fly. The block bg is +% lighter than the all-beetle color scheme I previously thought was best. +% Currently I like this one the best +\setbeamercolor{block body}{bg=deflightouter3} +\setbeamercolor{block title}{bg=beetleaddedblue2,fg=deflightouter3} + +% 4. Greens. Looks like a highlighter. I don't really trust greens +% on projectors... It's almost too bright/hurts your eyes. +% \setbeamercolor{block body}{bg=defexblock} +% \setbeamercolor{block title}{bg=defaddedgreen,fg=defexblock} + +% This looks pretty good ... it's similar to the greens we had before +% but should be lighter. The blocks are just a little too "mint" colored +% though... +% \setbeamercolor{block body}{bg=defexblock} +% \setbeamercolor{block title}{bg=defexblockheader,fg=defexblock} + +% Pea Soup! +%\setbeamercolor{block body}{bg=defaddedgreen} +%\setbeamercolor{block title}{bg=defexblockheader,fg=defaddedgreen} + + +% Changing these didn't seem to do anything...I had to change the +% 'alerted text' color instead +\setbeamercolor{block body alerted}{} +\setbeamercolor{block body example}{} +\setbeamercolor{block title alerted}{parent=alerted text} +\setbeamercolor{block title example}{parent=example text} + +\setbeamercolor{item}{parent=local structure} +\setbeamercolor{subitem}{parent=item} +\setbeamercolor{subsubitem}{parent=subitem} + +\setbeamercolor{item projected}{parent=item,use=item,fg=white,bg=item.fg} +\setbeamercolor{subitem projected}{parent=item projected} +\setbeamercolor{subsubitem projected}{parent=subitem projected} + +\setbeamercolor{enumerate item}{parent=item} +\setbeamercolor{enumerate subitem}{parent=subitem} +\setbeamercolor{enumerate subsubitem}{parent=subsubitem} + +\setbeamercolor{itemize item}{parent=item} +\setbeamercolor{itemize subitem}{parent=subitem} +\setbeamercolor{itemize subsubitem}{parent=subsubitem} + +\setbeamercolor{itemize/enumerate body}{} +\setbeamercolor{itemize/enumerate subbody}{} +\setbeamercolor{itemize/enumerate subsubbody}{} + +\setbeamercolor{description item}{parent=item} + +\setbeamercolor{bibliography item}{parent=item} + +\setbeamercolor{bibliography entry author}{use=structure,fg=structure.fg} +\setbeamercolor{bibliography entry title}{use=normal text,fg=normal text.fg} +\setbeamercolor{bibliography entry location}{use=structure,fg=structure.fg!65!bg} +\setbeamercolor{bibliography entry note}{use=structure,fg=structure.fg!65!bg} + +\setbeamercolor{separation line}{} + +\setbeamercolor{upper separation line head}{parent=separation line} +\setbeamercolor{middle separation line head}{parent=separation line} +\setbeamercolor{lower separation line head}{parent=separation line} + +\setbeamercolor{upper separation line foot}{parent=separation line} +\setbeamercolor{middle separation line foot}{parent=separation line} +\setbeamercolor{lower separation line foot}{parent=separation line} + +\setbeamercolor{abstract}{} +\setbeamercolor{abstract title}{parent=structure} + +\setbeamercolor{verse}{} + +\setbeamercolor{quotation}{} +\setbeamercolor{quote}{parent=quotation} + +\setbeamercolor{page number in head/foot}{fg=fg!50!bg} + +\setbeamercolor{qed symbol}{parent=structure} + +\mode + diff --git a/my_docs/22/sc_22_booth_talk/beamercolorthemeTACC16.sty b/my_docs/22/sc_22_booth_talk/beamercolorthemeTACC16.sty deleted file mode 120000 index 58415801b..000000000 --- a/my_docs/22/sc_22_booth_talk/beamercolorthemeTACC16.sty +++ /dev/null @@ -1 +0,0 @@ -../../beamer/beamercolorthemeTACC16.sty \ No newline at end of file diff --git a/my_docs/22/sc_22_booth_talk/beamercolorthemeTACC16.sty b/my_docs/22/sc_22_booth_talk/beamercolorthemeTACC16.sty new file mode 100755 index 000000000..779dde91f --- /dev/null +++ b/my_docs/22/sc_22_booth_talk/beamercolorthemeTACC16.sty @@ -0,0 +1,192 @@ +% Copyright 2003 by Till Tantau . +% +% This program can be redistributed and/or modified under the terms +% of the GNU Public License, version 2. + +\mode + +\usepackage{textcase,regexpatch} + +\setbeamertemplate{blocks}[rounded][shadow=true] + + +\definecolor{TACCred}{RGB}{180,13,29} +\definecolor{TACCorange}{RGB}{210,104,43} +\definecolor{TACCblue}{RGB}{108, 134, 191} +\definecolor{TACCgreen}{RGB}{23,106,70} + +% I downloaded a gimp color palette from +% http://maururu.net/2007/latex-beamer-color-palette/ +% Which provides rgb values (I think) for several of the +% default beamer themes. You can open this in gimp by +% opening the Palettes dialog, right-clicking anywhere and choosing +% 'Import Palette'. A color in there called 'default added blue' +% appeared to be approximately what I wanted. It had the triple +% of values 141 145 208. If you double-click on this in the +% palette editor it gives you a bunch of information. You can't +% use these values directly to set a color...it just comes out white. +% I think definecolor is expecting something normalized by 255. Yes! + + +%%% +% Set the normal text color +%%% +\setbeamercolor{normal text}{fg=black} %,bg=white} +\setbeamercolor{example text}{fg=TACCgreen} +\setbeamercolor{alerted text}{fg=TACCorange} + + +\setbeamercolor{structure}{fg=black} +%\setbeamercolor{structure}{fg=black} + +\setbeamercolor{background canvas}{parent=normal text} +\setbeamercolor{background}{parent=background canvas} + +\setbeamercolor{palette primary}{use=structure,fg=structure.fg} +\setbeamercolor{palette secondary}{use=structure,fg=structure.fg!75!black} +\setbeamercolor{palette tertiary}{use=structure,fg=structure.fg!50!black} +\setbeamercolor{palette quaternary}{fg=black} + +\setbeamercolor{palette sidebar primary}{use=normal text,fg=normal text.fg} +\setbeamercolor{palette sidebar secondary}{use=structure,fg=structure.fg} +\setbeamercolor{palette sidebar tertiary}{use=normal text,fg=normal text.fg} +\setbeamercolor{palette sidebar quaternary}{use=structure,fg=structure.fg} + +\setbeamercolor{math text}{} +\setbeamercolor{math text inlined}{parent=math text} +\setbeamercolor{math text displayed}{parent=math text} + +\setbeamercolor{normal text in math text}{} + +\setbeamercolor{local structure}{parent=structure} + +\setbeamercolor{titlelike}{parent=structure} + +\setbeamercolor{title}{parent=titlelike} +\setbeamercolor{title in head/foot}{parent=palette quaternary} +\setbeamercolor{title in sidebar}{parent=palette sidebar quaternary} + +\setbeamercolor{subtitle}{parent=title} + +\setbeamercolor{author}{} +\setbeamercolor{author in head/foot}{parent=palette primary} +\setbeamercolor{author in sidebar}{use=palette sidebar tertiary,fg=palette sidebar tertiary.fg} + +\setbeamercolor{institute}{} +\setbeamercolor{institute in head/foot}{parent=palette tertiary} +\setbeamercolor{institute in sidebar}{use=palette sidebar tertiary,fg=palette sidebar tertiary.fg} + +\setbeamercolor{date}{} +\setbeamercolor{date in head/foot}{parent=palette secondary} +\setbeamercolor{date in sidebar}{use=palette sidebar tertiary,fg=palette sidebar tertiary.fg} + +\setbeamercolor{titlegraphic}{} + +\setbeamercolor{part name}{} +\setbeamercolor{part title}{parent=titlelike} + +\setbeamercolor{section in toc}{parent=structure} +\setbeamercolor{section in toc shaded}{parent=section in toc} +\setbeamercolor{section in head/foot}{parent=palette tertiary} +\setbeamercolor{section in sidebar}{parent=palette sidebar secondary} +\setbeamercolor{section in sidebar shaded}{use=section in sidebar,fg=section in sidebar.fg!40!bg} +\setbeamercolor{section number projected}{parent=item projected} + +\setbeamercolor{subsection in toc}{} +\setbeamercolor{subsection in toc shaded}{parent=subsection in toc} +\setbeamercolor{subsection in head/foot}{parent=palette secondary} +\setbeamercolor{subsection in sidebar}{parent=palette sidebar primary} +\setbeamercolor{subsection in sidebar shaded}{use=subsection in sidebar,fg=subsection in sidebar.fg!40!bg} +\setbeamercolor{subsection number projected}{parent={subitem projected}} + +\setbeamercolor{subsubsection in toc}{parent=subsection in toc} +\setbeamercolor{subsubsection in toc shaded}{parent=subsubsection in toc} +\setbeamercolor{subsubsection in head/foot}{parent=subsection in head/foot} +\setbeamercolor{subsubsection in sidebar}{parent=subsection in sidebar} +\setbeamercolor{subsubsection in sidebar shaded}{parent=subsection in sidebar shaded} +\setbeamercolor{subsubsection number projected}{parent=subsubitem projected} + +\setbeamercolor{headline}{} +\setbeamercolor{footline}{} + +\setbeamercolor{sidebar}{} +\setbeamercolor{sidebar left}{parent=sidebar} +\setbeamercolor{sidebar right}{parent=sidebar} + +\setbeamercolor{logo}{parent=palette secondary} + +\setbeamercolor{frametitle}{parent=titlelike} +\setbeamercolor{framesubtitle}{parent=frametitle} + +\setbeamercolor{frametitle right}{parent=frametitle} + +\setbeamercolor{caption}{} +\setbeamercolor{caption name}{parent=structure} + +\setbeamercolor{button}{use=local structure,bg=local structure.fg!50!bg,fg=white} +\setbeamercolor{button border}{use=button,fg=button.bg} +\setbeamercolor{navigation symbols}{use=structure,fg=structure.fg!40!bg} +\setbeamercolor{navigation symbols dimmed}{use=structure,fg=structure.fg!20!bg} +\setbeamercolor{mini frame}{parent=section in head/foot} + +\setbeamercolor{block body}{fg=black} +\setbeamercolor{block body alerted}{fg=black} +\setbeamercolor{block body example}{fg=black} + +\setbeamercolor{block title}{bg=TACCblue,fg=white} +\setbeamercolor{block title alerted}{bg=TACCred,fg=white} +\setbeamercolor{block title example}{bg=TACCgreen,fg=white} + +\setbeamercolor{item}{parent=local structure} +\setbeamercolor{subitem}{parent=item} +\setbeamercolor{subsubitem}{parent=subitem} + +\setbeamercolor{item projected}{parent=item,use=item,fg=black,bg=item.fg} +\setbeamercolor{subitem projected}{parent=item projected} +\setbeamercolor{subsubitem projected}{parent=subitem projected} + +\setbeamercolor{enumerate item}{parent=item} +\setbeamercolor{enumerate subitem}{parent=subitem} +\setbeamercolor{enumerate subsubitem}{parent=subsubitem} + +\setbeamercolor{itemize item}{parent=item} +\setbeamercolor{itemize subitem}{parent=subitem} +\setbeamercolor{itemize subsubitem}{parent=subsubitem} + +\setbeamercolor{itemize/enumerate body}{} +\setbeamercolor{itemize/enumerate subbody}{} +\setbeamercolor{itemize/enumerate subsubbody}{} + +\setbeamercolor{description item}{parent=item} + +\setbeamercolor{bibliography item}{parent=item} + +\setbeamercolor{bibliography entry author}{use=structure,fg=structure.fg} +\setbeamercolor{bibliography entry title}{use=normal text,fg=normal text.fg} +\setbeamercolor{bibliography entry location}{use=structure,fg=structure.fg!65!bg} +\setbeamercolor{bibliography entry note}{use=structure,fg=structure.fg!65!bg} + +\setbeamercolor{separation line}{} + +\setbeamercolor{upper separation line head}{parent=separation line} +\setbeamercolor{middle separation line head}{parent=separation line} +\setbeamercolor{lower separation line head}{parent=separation line} + +\setbeamercolor{upper separation line foot}{parent=separation line} +\setbeamercolor{middle separation line foot}{parent=separation line} +\setbeamercolor{lower separation line foot}{parent=separation line} + +\setbeamercolor{abstract}{} +\setbeamercolor{abstract title}{parent=structure} + +\setbeamercolor{verse}{} + +\setbeamercolor{quotation}{} +\setbeamercolor{quote}{parent=quotation} + +\setbeamercolor{page number in head/foot}{fg=fg!50!bg} + +\setbeamercolor{qed symbol}{parent=structure} + +\mode + diff --git a/my_docs/22/sc_22_booth_talk/beamerfontthemeTACC.sty b/my_docs/22/sc_22_booth_talk/beamerfontthemeTACC.sty deleted file mode 120000 index 78e971fb8..000000000 --- a/my_docs/22/sc_22_booth_talk/beamerfontthemeTACC.sty +++ /dev/null @@ -1 +0,0 @@ -../../beamer/beamerfontthemeTACC.sty \ No newline at end of file diff --git a/my_docs/22/sc_22_booth_talk/beamerfontthemeTACC.sty b/my_docs/22/sc_22_booth_talk/beamerfontthemeTACC.sty new file mode 100755 index 000000000..ef9ce1e5e --- /dev/null +++ b/my_docs/22/sc_22_booth_talk/beamerfontthemeTACC.sty @@ -0,0 +1,12 @@ +% Copyright 2003 by Till Tantau +% +% This program can be redistributed and/or modified under the terms +% of the GNU Public License, version 2. + +\mode + +\setbeamerfont{frametitle}{parent=structure,size=\LARGE,series=\bfseries} +\setbeamerfont{framesubtitle}{parent=frametitle,size=\small} + +\mode + \ No newline at end of file diff --git a/my_docs/22/sc_22_booth_talk/beamerfontthemeTACC16.sty b/my_docs/22/sc_22_booth_talk/beamerfontthemeTACC16.sty deleted file mode 120000 index a1f2fa5f9..000000000 --- a/my_docs/22/sc_22_booth_talk/beamerfontthemeTACC16.sty +++ /dev/null @@ -1 +0,0 @@ -../../beamer/beamerfontthemeTACC16.sty \ No newline at end of file diff --git a/my_docs/22/sc_22_booth_talk/beamerfontthemeTACC16.sty b/my_docs/22/sc_22_booth_talk/beamerfontthemeTACC16.sty new file mode 100755 index 000000000..b65271835 --- /dev/null +++ b/my_docs/22/sc_22_booth_talk/beamerfontthemeTACC16.sty @@ -0,0 +1,21 @@ +% Copyright 2003 by Till Tantau +% +% This program can be redistributed and/or modified under the terms +% of the GNU Public License, version 2. + +\mode +\setbeamerfont{title}{parent=structure,size=\LARGE,series=\bfseries} +\setbeamerfont{author}{parent=structure,size=\large, series=\normalfont} +\setbeamerfont{frametitle}{parent=structure,size=\LARGE,series=\bfseries} +\setbeamerfont{framesubtitle}{parent=frametitle,size=\small} + +%\usefonttheme{professionalfonts} % using non standard fonts for beamer +%\usefonttheme{serif} % default family is serif +%\usepackage{fontspec} +%\setmainfont{Century Gothic} + +\usepackage{fontspec} +\usepackage{libertine} + +\mode + diff --git a/my_docs/22/sc_22_booth_talk/beamerinnerthemeTACC.sty b/my_docs/22/sc_22_booth_talk/beamerinnerthemeTACC.sty deleted file mode 120000 index 8d5ae3921..000000000 --- a/my_docs/22/sc_22_booth_talk/beamerinnerthemeTACC.sty +++ /dev/null @@ -1 +0,0 @@ -../../beamer/beamerinnerthemeTACC.sty \ No newline at end of file diff --git a/my_docs/22/sc_22_booth_talk/beamerinnerthemeTACC.sty b/my_docs/22/sc_22_booth_talk/beamerinnerthemeTACC.sty new file mode 100755 index 000000000..29e2bce81 --- /dev/null +++ b/my_docs/22/sc_22_booth_talk/beamerinnerthemeTACC.sty @@ -0,0 +1,11 @@ +\mode + +\setbeamertemplate{itemize item}[circle] +\setbeamertemplate{itemize subitem}{{}--{}} +\setbeamertemplate{itemize subsubitem}[circle] +\setbeamertemplate{section in toc}{$\bullet$\hskip.5em\inserttocsection} +%\setbeamertemplate{subsection in toc}{} +\setbeamertemplate{subsubsection in toc}{} + +\mode + diff --git a/my_docs/22/sc_22_booth_talk/beamerinnerthemeTACC16.sty b/my_docs/22/sc_22_booth_talk/beamerinnerthemeTACC16.sty deleted file mode 120000 index 5955acc99..000000000 --- a/my_docs/22/sc_22_booth_talk/beamerinnerthemeTACC16.sty +++ /dev/null @@ -1 +0,0 @@ -../../beamer/beamerinnerthemeTACC16.sty \ No newline at end of file diff --git a/my_docs/22/sc_22_booth_talk/beamerinnerthemeTACC16.sty b/my_docs/22/sc_22_booth_talk/beamerinnerthemeTACC16.sty new file mode 100755 index 000000000..f7f454e1d --- /dev/null +++ b/my_docs/22/sc_22_booth_talk/beamerinnerthemeTACC16.sty @@ -0,0 +1,11 @@ +\mode + +\setbeamertemplate{itemize item}[triangle] +\setbeamertemplate{itemize subitem}[triangle] +\setbeamertemplate{itemize subsubitem}[triangle] +\setbeamertemplate{section in toc}{$\bullet$\hskip.5em\inserttocsection} +%\setbeamertemplate{subsection in toc}{} +\setbeamertemplate{subsubsection in toc}{} + +\mode + diff --git a/my_docs/22/sc_22_booth_talk/beamerouterthemeTACC.sty b/my_docs/22/sc_22_booth_talk/beamerouterthemeTACC.sty deleted file mode 120000 index da0a45d33..000000000 --- a/my_docs/22/sc_22_booth_talk/beamerouterthemeTACC.sty +++ /dev/null @@ -1 +0,0 @@ -../../beamer/beamerouterthemeTACC.sty \ No newline at end of file diff --git a/my_docs/22/sc_22_booth_talk/beamerouterthemeTACC.sty b/my_docs/22/sc_22_booth_talk/beamerouterthemeTACC.sty new file mode 100755 index 000000000..038580303 --- /dev/null +++ b/my_docs/22/sc_22_booth_talk/beamerouterthemeTACC.sty @@ -0,0 +1,196 @@ +% Copyright 2003 by Till Tantau +% +% This program can be redistributed and/or modified under the terms +% of the GNU Public License, version 2. + +\mode + +\setbeamertemplate{frametitle}[default][center] +\addtobeamertemplate{frametitle}{\vskip 4ex minus 4ex}{} + +% Here we define what appears at the bottom of each slide: the "footline". +\setbeamertemplate{footline}{% + \leavevmode% + + % Horizontal line dividing the rest of the slide from the footer? + % hrule goes all the way across... + % \hrule height.3pt% + % With \rule, you can specify the thickness + % \rule[raise-height]{width}{thickness} + \hspace{.025\textwidth}\rule{.95\textwidth}{.5pt} + + \hbox{% + % On the left half of the footer, insert the TACC logo + \begin{minipage}{.5\textwidth}% + \hskip .033\textwidth%Give horizontal space else this will set on the left edge of the slide! + % TACC logo with custom viewport! + \includegraphics[viewport=1 -1 135 35, clip=true, width=.4\textwidth]{figures/TACC_logo} + \end{minipage} + % + \begin{minipage}{.5\textwidth}% + \vskip .023\textheight% + \raggedleft% + \setlength{\rightskip}{.033\textwidth} + % + % If we are not on the first page, insert a page number + % For some reason, insertframenumber is buggy when you have fragile + % slides with verbatim environments in them... it tends to skip numbers + % for some reason! On the other hand, the pagenumber is incremented + % for *every* slide, including transition slides... + \ifnum \thepage>1 + % \insertshorttitle + \insertframenumber + % \insertframenumber/\inserttotalframenumber + % \insertpagenumber + \else % Do a phantom of whatever you do on other pages, so spacing matches + %$\phantom{\insertshorttitle}$ + $\phantom{\insertframenumber}$ + %$\phantom{\insertframenumber/\inserttotalframenumber}$ + %$\phantom{\insertpagenumber}$ + \fi + \hfill\includegraphics[width=.5\textwidth]{figures/UT_logo}% + \end{minipage}% + }% + \vskip .023\textheight% +} + + + + +\ifTACCheadernav + +\usesectionheadtemplate +{\hfill\insertsectionhead} +{\hfill\color{fg!50!bg}\insertsectionhead} + +% Head +\ifbeamer@compress + +% Here we define how the top of the frame looks, the "headline". +\setbeamertemplate{headline} +{% + \ifnum \thepage>1 + \leavevmode% + \begin{beamercolorbox}[wd=.5\paperwidth,ht=2.5ex,dp=1.125ex]{% + section in head/foot}% + \insertsectionnavigationhorizontal{.5\paperwidth}{\hskip0pt plus1filll}{}% + \end{beamercolorbox}% + \begin{beamercolorbox}[wd=.5\paperwidth,ht=2.5ex,dp=1.125ex]{% + subsection in head/foot}% + \insertsubsectionnavigationhorizontal{% + .5\paperwidth}{}{\hskip0pt plus1filll}% + \end{beamercolorbox}% + \fi %\thepage>1 +} + +\else% Not compressed + +\setbeamertemplate{headline} +{% + \ifnum \thepage>1 + \leavevmode% + \@tempdimb=2.4375ex% + \ifnum\beamer@subsectionmax<\beamer@sectionmax% + \multiply\@tempdimb by\beamer@sectionmax% + \else% + \multiply\@tempdimb by\beamer@subsectionmax% + \fi% + \ifdim\@tempdimb>0pt% + \advance\@tempdimb by 1.125ex% + \begin{beamercolorbox}[wd=.5\paperwidth,ht=\@tempdimb]{% + section in head/foot}% + \vbox to\@tempdimb{\vfil\insertsectionnavigation{.5\paperwidth}\vfil}% + \end{beamercolorbox}% + \begin{beamercolorbox}[wd=.5\paperwidth,ht=\@tempdimb]{% + subsection in head/foot}% + \vbox to\@tempdimb{\vfil\insertsubsectionnavigation{.5\paperwidth}\vfil}% + \end{beamercolorbox}% + \fi% + \fi % \thepage>1 +} + +\fi % end if compressed +\fi % TACCheadernav + + +\ifTACCheadertree + +\setbeamertemplate{headline} +{ + \begin{beamercolorbox}[wd=\paperwidth,colsep=1.5pt + ]{upper separation line head} + \end{beamercolorbox} + % + % Place short title + % + \begin{beamercolorbox}[wd=\paperwidth,ht=2.5ex,dp=1.125ex,% + leftskip=.3cm,rightskip=.3cm plus1fil]{title in head/foot} + \usebeamerfont{title in head/foot}\insertshorttitle + \end{beamercolorbox} + + % + % Place section + % + \begin{beamercolorbox}[wd=\paperwidth,ht=2.5ex,dp=1.125ex,% + leftskip=.3cm,rightskip=.3cm plus1fil]{section in head/foot} + \usebeamerfont{section in head/foot}% + %\ifbeamer@tree@showhooks + \setbox\beamer@tempbox=\hbox{\insertsectionhead}% + \ifdim\wd\beamer@tempbox>1pt% + \hskip2pt\raise1.9pt\hbox{\vrule width0.4pt height1.875ex\vrule width 5pt height0.4pt}% + \hskip1pt% + \fi% \ifdim + %\else% + %\hskip6pt% + %\fi% \ifbeamer + \insertsectionhead + \end{beamercolorbox} + +% +% Place subsection +% +\begin{beamercolorbox}[wd=\paperwidth,ht=2.5ex,dp=1.125ex,% + leftskip=.3cm,rightskip=.3cm plus1fil]{subsection in head/foot} + \usebeamerfont{subsection in head/foot}% + %\ifbeamer@tree@showhooks + \setbox\beamer@tempbox=\hbox{\insertsubsectionhead}% + \ifdim\wd\beamer@tempbox>1pt% + \hskip9.4pt\raise1.9pt\hbox{\vrule width0.4pt height1.875ex\vrule width 5pt height0.4pt}% + \hskip1pt% + \fi% \ifdim + %\else% + %\hskip12pt% + %\fi% \ifbeamer + \insertsubsectionhead +\end{beamercolorbox} + +% +% Place final separation box +% + \begin{beamercolorbox}[wd=\paperwidth,colsep=1.5pt + ]{lower separation line head} + \end{beamercolorbox} + + % + % Another matching rule which helps to frame the content + % + \hspace{.025\textwidth}\rule{.95\textwidth}{.5pt} +} +\fi % TACCheadertree + + +% The following command suppresses all navigation symbols. This is +% necessary in the TACC theme, since it overlaps where we want the +% logo to be. +\setbeamertemplate{navigation symbols}{} + +% Align the navigation symbols vertically (still overlaps our logo!) +%\setbeamertemplate{navigation symbols}[vertical]{} + +% Only places the slide-forward and slide-back symbol, but yes, +% this still overlaps our logo! +%\setbeamertemplate{navigation symbols}[only frame symbol]{} + + +\mode + diff --git a/my_docs/22/sc_22_booth_talk/beamerouterthemeTACC16.sty b/my_docs/22/sc_22_booth_talk/beamerouterthemeTACC16.sty deleted file mode 120000 index 54bd09537..000000000 --- a/my_docs/22/sc_22_booth_talk/beamerouterthemeTACC16.sty +++ /dev/null @@ -1 +0,0 @@ -../../beamer/beamerouterthemeTACC16.sty \ No newline at end of file diff --git a/my_docs/22/sc_22_booth_talk/beamerouterthemeTACC16.sty b/my_docs/22/sc_22_booth_talk/beamerouterthemeTACC16.sty new file mode 100755 index 000000000..d5e6388c7 --- /dev/null +++ b/my_docs/22/sc_22_booth_talk/beamerouterthemeTACC16.sty @@ -0,0 +1,312 @@ +% Antonio Gomez (agomez@tacc.utexas.edu) +% 4-20-17. Added option to put the footer on the right side + + + +\mode + +\usepackage{xcolor} +\usepackage{graphicx} +\usepackage{etoolbox} + + + +% This theme accepts the "rightfooter" option +% When used, it will put the TACC logo at the bottom of the slide on the right side +% By default, it goes to the left + +\xifaspectratio{ + {169} { + \pgfdeclareimage[width=\paperwidth]{titlebackground}{./figures/master169.jpg} + \if@rightfooterOption + \pgfdeclareimage[width=\paperwidth]{background}{./figures/secondary_right169.jpg} +\else + \pgfdeclareimage[width=\paperwidth]{background}{./figures/secondary169.jpg} +\fi +} +}[ +\pgfdeclareimage[width=\paperwidth]{titlebackground}{./figures/master.jpg} + \if@rightfooterOption + \pgfdeclareimage[width=\paperwidth]{background}{./figures/secondary_right.jpg} +\else + \pgfdeclareimage[width=\paperwidth]{background}{./figures/secondary.jpg} +\fi +] + +\setbeamertemplate{background canvas}{% +\xifaspectratio{ + {169} { + \ifnum\c@framenumber=1 % + \begin{picture}(0,0) + \put(-3,-256){% + \pgfuseimage{titlebackground} + } + \end{picture} + \else% + \begin{picture}(0,0) + \put(-3,-260){% + \pgfuseimage{background} + } + \end{picture} + \fi + } + {43} { + \ifnum\c@framenumber=1 % + \begin{picture}(0,0) + \put(-4,-274){% + \pgfuseimage{titlebackground} + } + \end{picture} + \else% + \begin{picture}(0,0) + \put(-4,-274){% + \pgfuseimage{background} + } + \end{picture} + \fi + } +} +} + + + +%\setbeamertemplate{background canvas}{% +% % On title page +% \ifnum\c@framenumber=1 % +% \begin{picture}(0,0) +% \put(0,-253){% +% \pgfuseimage{titlebackground} +% } +% \end{picture} +% +% \else% +% \xifaspectratio{ +% {169} { +% % Other frames background +% \begin{picture}(0,0) +% \put(-4,-260){% +% \pgfuseimage{background} +% } +% \end{picture} +% } +% }[ +% % Other frames background +% \begin{picture}(0,0) +% \put(-4,-274){% +% \pgfuseimage{background} +% } +% \end{picture} +% ] +% \fi% +%} + + +\setbeamertemplate{title page}{ +\vspace{40pt} +\begin{center} +\usebeamerfont{title} {\huge \inserttitle}\par +\vspace{4ex} +\usebeamerfont{author} { + \insertauthor +}\par +\vspace{2ex} +\usebeamerfont{institute}{ + \insertinstitute +} \par +\vspace{2ex} +\usebeamerfont{date}{ + \insertdate +} +\end{center} +} + + +\setbeamertemplate{frametitle}[default][center] +\setbeamertemplate{frametitle}{ + \makeatletter + \regexpatchcmd{\insertframetitle} + {(\c{usebeamertemplate}.*)\c{fi}} + {\c{NoCaseChange}\cB\{\1\cE\}\c{fi}} + {}{}% + \makeatother + \vskip1ex + \insertframetitle +} + +% Here we define what appears at the bottom of each slide: the "footline". +\setbeamertemplate{footline}{% + \leavevmode% + + % Horizontal line dividing the rest of the slide from the footer? + % hrule goes all the way across... + % \hrule height.3pt% + % With \rule, you can specify the thickness + % \rule[raise-height]{width}{thickness} + % \hspace{.025\textwidth}\rule{.95\textwidth}{.5pt} + + \hbox{% + \ifnum \thepage>1 + \if@rightfooterOption + \begin{minipage}{.2\textwidth}% + \hskip .05\textwidth%Give horizontal space else this will set on the left edge of the slide! + \end{minipage} + \else + \begin{minipage}{.4\textwidth}% + \hskip .05\textwidth%Give horizontal space else this will set on the left edge of the slide! + \end{minipage} + \fi + + + \begin{minipage}{\textwidth}% + % \vskip .023\textheight% + \raggedleft% + \setlength{\rightskip}{\textwidth} + \if@rightfooterOption + \hbox{% + \begin{beamercolorbox}[wd=0.7\textwidth,ht=2.25ex,dp=1ex,left]{author in head/foot}% + \insertshorttitle{} \hskip .01\textwidth | \hskip .01\textwidth \insertdate{} \hskip .01\textwidth | \hskip .01\textwidth \insertframenumber{} + \end{beamercolorbox}% + } + \else + \hbox{% + \begin{beamercolorbox}[wd=0.5\textwidth,ht=2.25ex,dp=1ex,left]{author in head/foot}% + \insertshorttitle{} \hskip .01\textwidth | \hskip .01\textwidth \insertdate{} \hskip .01\textwidth | \hskip .01\textwidth \insertframenumber{} + \end{beamercolorbox}% + } + \fi + + \end{minipage}% + \begin{minipage}{.05\textwidth}% + \end{minipage}% + \fi %\thepage>1 + }% + \vskip .023\textheight% + +} + + + + +\ifTACCheadernav + +\usesectionheadtemplate +{\hfill\insertsectionhead} +{\hfill\color{fg!50!bg}\insertsectionhead} + +% Head +\ifbeamer@compress + +% Here we define how the top of the frame looks, the "headline". +\setbeamertemplate{headline} +{% + \ifnum \thepage>1 + \leavevmode% + \begin{beamercolorbox}[wd=.5\paperwidth,ht=2.5ex,dp=1.125ex]{% + section in head/foot}% + \insertsectionnavigationhorizontal{.5\paperwidth}{\hskip0pt plus1filll}{}% + \end{beamercolorbox}% + \begin{beamercolorbox}[wd=.5\paperwidth,ht=2.5ex,dp=1.125ex]{% + subsection in head/foot}% + \insertsubsectionnavigationhorizontal{% + .5\paperwidth}{}{\hskip0pt plus1filll}% + \end{beamercolorbox}% + \fi %\thepage>1 +} + +\else% Not compressed + +\setbeamertemplate{headline} +{% + \ifnum \thepage>1 + \leavevmode% + \@tempdimb=2.4375ex% + \ifnum\beamer@subsectionmax<\beamer@sectionmax% + \multiply\@tempdimb by\beamer@sectionmax% + \else% + \multiply\@tempdimb by\beamer@subsectionmax% + \fi% + \ifdim\@tempdimb>0pt% + \advance\@tempdimb by 1.125ex% + \begin{beamercolorbox}[wd=.5\paperwidth,ht=\@tempdimb]{% + section in head/foot}% + \vbox to\@tempdimb{\vfil\insertsectionnavigation{.5\paperwidth}\vfil}% + \end{beamercolorbox}% + \begin{beamercolorbox}[wd=.5\paperwidth,ht=\@tempdimb]{% + subsection in head/foot}% + \vbox to\@tempdimb{\vfil\insertsubsectionnavigation{.5\paperwidth}\vfil}% + \end{beamercolorbox}% + \fi% + \fi % \thepage>1 +} + +\fi % end if compressed +\fi % TACCheadernav + + +\ifTACCheadertree + +\setbeamertemplate{headline} +{ + \begin{beamercolorbox}[wd=\paperwidth,colsep=1.5pt]{upper separation line head} + \end{beamercolorbox} + % + % Place short title + % + \begin{beamercolorbox}[wd=\paperwidth,ht=2.5ex,dp=1.125ex,% + leftskip=.3cm,rightskip=.3cm plus1fil]{title in head/foot} + \usebeamerfont{title in head/foot}\insertshorttitle + \end{beamercolorbox} + + % + % Place section + % + \begin{beamercolorbox}[wd=\paperwidth,ht=2.5ex,dp=1.125ex,% + leftskip=.3cm,rightskip=.3cm plus1fil]{section in head/foot} + \usebeamerfont{section in head/foot}% + %\ifbeamer@tree@showhooks + \setbox\beamer@tempbox=\hbox{\insertsectionhead}% + \ifdim\wd\beamer@tempbox>1pt% + \hskip2pt\raise1.9pt\hbox{\vrule width0.4pt height1.875ex\vrule width 5pt height0.4pt}% + \hskip1pt% + \fi + \insertsectionhead + \end{beamercolorbox} + +% +% Place subsection +% +\begin{beamercolorbox}[wd=\paperwidth,ht=2.5ex,dp=1.125ex,% + leftskip=.3cm,rightskip=.3cm plus1fil]{subsection in head/foot} + \usebeamerfont{subsection in head/foot}% + %\ifbeamer@tree@showhooks + \setbox\beamer@tempbox=\hbox{\insertsubsectionhead}% + \ifdim\wd\beamer@tempbox>1pt% + \hskip9.4pt\raise1.9pt\hbox{\vrule width0.4pt height1.875ex\vrule width 5pt height0.4pt}% + \hskip1pt% + \fi + \insertsubsectionhead +\end{beamercolorbox} + +% +% Place final separation box +% + \begin{beamercolorbox}[wd=\paperwidth,colsep=1.5pt + ]{lower separation line head} + \end{beamercolorbox} + + % + % Another matching rule which helps to frame the content + % + \hspace{.025\textwidth}\rule{.95\textwidth}{.5pt} +} +\fi % TACCheadertree + + +% The following command suppresses all navigation symbols. This is +% necessary in the TACC theme, since it overlaps where we want the +% logo to be. +\setbeamertemplate{navigation symbols}{} + + +\mode + diff --git a/my_docs/22/sc_22_booth_talk/beamerthemeTACC.sty b/my_docs/22/sc_22_booth_talk/beamerthemeTACC.sty deleted file mode 120000 index 5c339abd4..000000000 --- a/my_docs/22/sc_22_booth_talk/beamerthemeTACC.sty +++ /dev/null @@ -1 +0,0 @@ -../../beamer/beamerthemeTACC.sty \ No newline at end of file diff --git a/my_docs/22/sc_22_booth_talk/beamerthemeTACC.sty b/my_docs/22/sc_22_booth_talk/beamerthemeTACC.sty new file mode 100755 index 000000000..c6a1b1269 --- /dev/null +++ b/my_docs/22/sc_22_booth_talk/beamerthemeTACC.sty @@ -0,0 +1,26 @@ +%% TACC theme for beamer + +\newif\ifTACCheadernav +\DeclareOption{headernav}{\global\TACCheadernavtrue} + +\newif\ifTACCheadertree +\DeclareOption{headertree}{\global\TACCheadertreetrue} +\ProcessOptions + +\mode + +\usefonttheme{TACC} +\usecolortheme{TACC} +\useinnertheme{TACC} +\useoutertheme{TACC} + +\mode + + +\newcommand{\event}[1]{% + \makeatletter% + \def\TACC@eventname{#1}% + \makeatother} + +\newcommand{\sectionframe}[1]{\section{#1}\frame{\Large\textbf{#1}}} +\newcommand{\subsectionframe}[1]{\subsection{#1}\frame{\large\textbf{#1}}} diff --git a/my_docs/22/sc_22_booth_talk/beamerthemeTACC16.sty b/my_docs/22/sc_22_booth_talk/beamerthemeTACC16.sty deleted file mode 120000 index 7a9d4d296..000000000 --- a/my_docs/22/sc_22_booth_talk/beamerthemeTACC16.sty +++ /dev/null @@ -1 +0,0 @@ -../../beamer/beamerthemeTACC16.sty \ No newline at end of file diff --git a/my_docs/22/sc_22_booth_talk/beamerthemeTACC16.sty b/my_docs/22/sc_22_booth_talk/beamerthemeTACC16.sty new file mode 100755 index 000000000..b522d0207 --- /dev/null +++ b/my_docs/22/sc_22_booth_talk/beamerthemeTACC16.sty @@ -0,0 +1,61 @@ +%% TACC theme for beamer + + +\newif\if@rightfooterOption +\@rightfooterOptionfalse +\DeclareOption{rightfooter}{\@rightfooterOptiontrue} +\ProcessOptions + + +\newif\ifTACCheadernav +\DeclareOption{headernav}{\global\TACCheadernavtrue} + +\newif\ifTACCheadertree +\DeclareOption{headertree}{\global\TACCheadertreetrue} +\ProcessOptions + +\usepackage{xparse} +\ExplSyntaxOn +\NewDocumentCommand{\ifaspectratio}{mmm} + { + % Recover the option from those passed to the class + \keys_set:nf { zunbeltz/beameroptions } { \use:c { opt@beamer.cls } } + \str_if_eq:nVTF { #1 } \l_zunbeltz_aspectratio_tl { #2 } { #3 } + } +\NewDocumentCommand{\xifaspectratio}{mO{}} + { + % Recover the option from those passed to the class + \keys_set:nf { zunbeltz/beameroptions } { \use:c { opt@beamer.cls } } + \str_case:VnF \l_zunbeltz_aspectratio_tl { #1 } { #2 } + } +% We need to define only one key, the other are treated as `unknown' +\keys_define:nn { zunbeltz/beameroptions } + { + aspectratio .tl_set:N = \l_zunbeltz_aspectratio_tl, + aspectratio .initial:n = 43, + unknown .code:n = {}, + } + +% Generate the variants we need +\cs_generate_variant:Nn \keys_set:nn { nf } +\cs_generate_variant:Nn \str_if_eq:nnTF { nV } +\cs_generate_variant:Nn \str_case:nnF { V } +\ExplSyntaxOff + +\mode + +\usefonttheme{TACC16} +\useinnertheme{TACC16} +\useoutertheme{TACC16} +\usecolortheme{TACC16} + +\mode + + +\newcommand{\event}[1]{% + \makeatletter% + \def\TACC@eventname{#1}% + \makeatother} + +\newcommand{\sectionframe}[1]{\section{#1}\frame{\Large\textbf{#1}}} +\newcommand{\subsectionframe}[1]{\subsection{#1}\frame{\large\textbf{#1}}} diff --git a/my_docs/22/sc_22_booth_talk/figures b/my_docs/22/sc_22_booth_talk/figures deleted file mode 120000 index ddafd8974..000000000 --- a/my_docs/22/sc_22_booth_talk/figures +++ /dev/null @@ -1 +0,0 @@ -../../beamer/figures \ No newline at end of file diff --git a/my_docs/22/sc_22_booth_talk/figures/TACC_logo.pdf b/my_docs/22/sc_22_booth_talk/figures/TACC_logo.pdf new file mode 100755 index 000000000..c018a20cb Binary files /dev/null and b/my_docs/22/sc_22_booth_talk/figures/TACC_logo.pdf differ diff --git a/my_docs/22/sc_22_booth_talk/figures/UT_logo.pdf b/my_docs/22/sc_22_booth_talk/figures/UT_logo.pdf new file mode 100755 index 000000000..d5b42e752 Binary files /dev/null and b/my_docs/22/sc_22_booth_talk/figures/UT_logo.pdf differ diff --git a/my_docs/22/sc_22_booth_talk/figures/cc.png b/my_docs/22/sc_22_booth_talk/figures/cc.png new file mode 100644 index 000000000..8a532ff8f Binary files /dev/null and b/my_docs/22/sc_22_booth_talk/figures/cc.png differ diff --git a/my_docs/22/sc_22_booth_talk/figures/isa.png b/my_docs/22/sc_22_booth_talk/figures/isa.png new file mode 100644 index 000000000..f95d985e7 Binary files /dev/null and b/my_docs/22/sc_22_booth_talk/figures/isa.png differ diff --git a/my_docs/22/sc_22_booth_talk/figures/master.jpg b/my_docs/22/sc_22_booth_talk/figures/master.jpg new file mode 100644 index 000000000..f5c56c04a Binary files /dev/null and b/my_docs/22/sc_22_booth_talk/figures/master.jpg differ diff --git a/my_docs/22/sc_22_booth_talk/figures/master169.jpg b/my_docs/22/sc_22_booth_talk/figures/master169.jpg new file mode 100644 index 000000000..b215776eb Binary files /dev/null and b/my_docs/22/sc_22_booth_talk/figures/master169.jpg differ diff --git a/my_docs/22/sc_22_booth_talk/figures/master169.png b/my_docs/22/sc_22_booth_talk/figures/master169.png new file mode 100644 index 000000000..bc5c0ed12 Binary files /dev/null and b/my_docs/22/sc_22_booth_talk/figures/master169.png differ diff --git a/my_docs/22/sc_22_booth_talk/figures/secondary.jpg b/my_docs/22/sc_22_booth_talk/figures/secondary.jpg new file mode 100644 index 000000000..d905a95c9 Binary files /dev/null and b/my_docs/22/sc_22_booth_talk/figures/secondary.jpg differ diff --git a/my_docs/22/sc_22_booth_talk/figures/secondary169.jpg b/my_docs/22/sc_22_booth_talk/figures/secondary169.jpg new file mode 100644 index 000000000..4eb017957 Binary files /dev/null and b/my_docs/22/sc_22_booth_talk/figures/secondary169.jpg differ diff --git a/my_docs/22/sc_22_booth_talk/figures/secondary169.png b/my_docs/22/sc_22_booth_talk/figures/secondary169.png new file mode 100644 index 000000000..cb9060a56 Binary files /dev/null and b/my_docs/22/sc_22_booth_talk/figures/secondary169.png differ diff --git a/my_docs/22/sc_22_booth_talk/figures/secondary_right.jpg b/my_docs/22/sc_22_booth_talk/figures/secondary_right.jpg new file mode 100644 index 000000000..f25f93a58 Binary files /dev/null and b/my_docs/22/sc_22_booth_talk/figures/secondary_right.jpg differ diff --git a/my_docs/22/sc_22_booth_talk/figures/secondary_right169.jpg b/my_docs/22/sc_22_booth_talk/figures/secondary_right169.jpg new file mode 100644 index 000000000..567a1078f Binary files /dev/null and b/my_docs/22/sc_22_booth_talk/figures/secondary_right169.jpg differ diff --git a/my_docs/22/sc_22_booth_talk/themes b/my_docs/22/sc_22_booth_talk/themes deleted file mode 120000 index a98530730..000000000 --- a/my_docs/22/sc_22_booth_talk/themes +++ /dev/null @@ -1 +0,0 @@ -../../beamer/themes \ No newline at end of file diff --git a/my_docs/22/sc_22_booth_talk/themes/beamercolorthemeTACC16.sty b/my_docs/22/sc_22_booth_talk/themes/beamercolorthemeTACC16.sty new file mode 100644 index 000000000..248ae8cb6 --- /dev/null +++ b/my_docs/22/sc_22_booth_talk/themes/beamercolorthemeTACC16.sty @@ -0,0 +1,193 @@ +% Copyright 2003 by Till Tantau . +% +% This program can be redistributed and/or modified under the terms +% of the GNU Public License, version 2. + +\mode + +\usepackage{textcase,regexpatch} + +\setbeamertemplate{blocks}[rounded][shadow=true] + + +\definecolor{TACCred}{RGB}{180,13,29} +\definecolor{TACCorange}{RGB}{210,104,43} +\definecolor{TACCblue}{RGB}{21,77,122} +%\definecolor{TACCgreen}{RGB}{30,134,104} +\definecolor{TACCgreen}{RGB}{49,168,51} + +% I downloaded a gimp color palette from +% http://maururu.net/2007/latex-beamer-color-palette/ +% Which provides rgb values (I think) for several of the +% default beamer themes. You can open this in gimp by +% opening the Palettes dialog, right-clicking anywhere and choosing +% 'Import Palette'. A color in there called 'default added blue' +% appeared to be approximately what I wanted. It had the triple +% of values 141 145 208. If you double-click on this in the +% palette editor it gives you a bunch of information. You can't +% use these values directly to set a color...it just comes out white. +% I think definecolor is expecting something normalized by 255. Yes! + + +%%% +% Set the normal text color +%%% +\setbeamercolor{normal text}{fg=black} %,bg=white} +\setbeamercolor{example text}{fg=TACCgreen} +\setbeamercolor{alerted text}{fg=TACCorange} + + +\setbeamercolor{structure}{fg=black} +%\setbeamercolor{structure}{fg=black} + +\setbeamercolor{background canvas}{parent=normal text} +\setbeamercolor{background}{parent=background canvas} + +\setbeamercolor{palette primary}{use=structure,fg=structure.fg} +\setbeamercolor{palette secondary}{use=structure,fg=structure.fg!75!black} +\setbeamercolor{palette tertiary}{use=structure,fg=structure.fg!50!black} +\setbeamercolor{palette quaternary}{fg=black} + +\setbeamercolor{palette sidebar primary}{use=normal text,fg=normal text.fg} +\setbeamercolor{palette sidebar secondary}{use=structure,fg=structure.fg} +\setbeamercolor{palette sidebar tertiary}{use=normal text,fg=normal text.fg} +\setbeamercolor{palette sidebar quaternary}{use=structure,fg=structure.fg} + +\setbeamercolor{math text}{} +\setbeamercolor{math text inlined}{parent=math text} +\setbeamercolor{math text displayed}{parent=math text} + +\setbeamercolor{normal text in math text}{} + +\setbeamercolor{local structure}{parent=structure} + +\setbeamercolor{titlelike}{parent=structure} + +\setbeamercolor{title}{parent=titlelike} +\setbeamercolor{title in head/foot}{parent=palette quaternary} +\setbeamercolor{title in sidebar}{parent=palette sidebar quaternary} + +\setbeamercolor{subtitle}{parent=title} + +\setbeamercolor{author}{} +\setbeamercolor{author in head/foot}{parent=palette primary} +\setbeamercolor{author in sidebar}{use=palette sidebar tertiary,fg=palette sidebar tertiary.fg} + +\setbeamercolor{institute}{} +\setbeamercolor{institute in head/foot}{parent=palette tertiary} +\setbeamercolor{institute in sidebar}{use=palette sidebar tertiary,fg=palette sidebar tertiary.fg} + +\setbeamercolor{date}{} +\setbeamercolor{date in head/foot}{parent=palette secondary} +\setbeamercolor{date in sidebar}{use=palette sidebar tertiary,fg=palette sidebar tertiary.fg} + +\setbeamercolor{titlegraphic}{} + +\setbeamercolor{part name}{} +\setbeamercolor{part title}{parent=titlelike} + +\setbeamercolor{section in toc}{parent=structure} +\setbeamercolor{section in toc shaded}{parent=section in toc} +\setbeamercolor{section in head/foot}{parent=palette tertiary} +\setbeamercolor{section in sidebar}{parent=palette sidebar secondary} +\setbeamercolor{section in sidebar shaded}{use=section in sidebar,fg=section in sidebar.fg!40!bg} +\setbeamercolor{section number projected}{parent=item projected} + +\setbeamercolor{subsection in toc}{} +\setbeamercolor{subsection in toc shaded}{parent=subsection in toc} +\setbeamercolor{subsection in head/foot}{parent=palette secondary} +\setbeamercolor{subsection in sidebar}{parent=palette sidebar primary} +\setbeamercolor{subsection in sidebar shaded}{use=subsection in sidebar,fg=subsection in sidebar.fg!40!bg} +\setbeamercolor{subsection number projected}{parent={subitem projected}} + +\setbeamercolor{subsubsection in toc}{parent=subsection in toc} +\setbeamercolor{subsubsection in toc shaded}{parent=subsubsection in toc} +\setbeamercolor{subsubsection in head/foot}{parent=subsection in head/foot} +\setbeamercolor{subsubsection in sidebar}{parent=subsection in sidebar} +\setbeamercolor{subsubsection in sidebar shaded}{parent=subsection in sidebar shaded} +\setbeamercolor{subsubsection number projected}{parent=subsubitem projected} + +\setbeamercolor{headline}{} +\setbeamercolor{footline}{} + +\setbeamercolor{sidebar}{} +\setbeamercolor{sidebar left}{parent=sidebar} +\setbeamercolor{sidebar right}{parent=sidebar} + +\setbeamercolor{logo}{parent=palette secondary} + +\setbeamercolor{frametitle}{parent=titlelike} +\setbeamercolor{framesubtitle}{parent=frametitle} + +\setbeamercolor{frametitle right}{parent=frametitle} + +\setbeamercolor{caption}{} +\setbeamercolor{caption name}{parent=structure} + +\setbeamercolor{button}{use=local structure,bg=local structure.fg!50!bg,fg=white} +\setbeamercolor{button border}{use=button,fg=button.bg} +\setbeamercolor{navigation symbols}{use=structure,fg=structure.fg!40!bg} +\setbeamercolor{navigation symbols dimmed}{use=structure,fg=structure.fg!20!bg} +\setbeamercolor{mini frame}{parent=section in head/foot} + +\setbeamercolor{block body}{fg=black} +\setbeamercolor{block body alerted}{fg=black} +\setbeamercolor{block body example}{fg=black} + +\setbeamercolor{block title}{bg=TACCblue,fg=white} +\setbeamercolor{block title alerted}{bg=TACCred,fg=white} +\setbeamercolor{block title example}{bg=TACCgreen,fg=white} + +\setbeamercolor{item}{parent=local structure} +\setbeamercolor{subitem}{parent=item} +\setbeamercolor{subsubitem}{parent=subitem} + +\setbeamercolor{item projected}{parent=item,use=item,fg=black,bg=item.fg} +\setbeamercolor{subitem projected}{parent=item projected} +\setbeamercolor{subsubitem projected}{parent=subitem projected} + +\setbeamercolor{enumerate item}{parent=item} +\setbeamercolor{enumerate subitem}{parent=subitem} +\setbeamercolor{enumerate subsubitem}{parent=subsubitem} + +\setbeamercolor{itemize item}{parent=item} +\setbeamercolor{itemize subitem}{parent=subitem} +\setbeamercolor{itemize subsubitem}{parent=subsubitem} + +\setbeamercolor{itemize/enumerate body}{} +\setbeamercolor{itemize/enumerate subbody}{} +\setbeamercolor{itemize/enumerate subsubbody}{} + +\setbeamercolor{description item}{parent=item} + +\setbeamercolor{bibliography item}{parent=item} + +\setbeamercolor{bibliography entry author}{use=structure,fg=structure.fg} +\setbeamercolor{bibliography entry title}{use=normal text,fg=normal text.fg} +\setbeamercolor{bibliography entry location}{use=structure,fg=structure.fg!65!bg} +\setbeamercolor{bibliography entry note}{use=structure,fg=structure.fg!65!bg} + +\setbeamercolor{separation line}{} + +\setbeamercolor{upper separation line head}{parent=separation line} +\setbeamercolor{middle separation line head}{parent=separation line} +\setbeamercolor{lower separation line head}{parent=separation line} + +\setbeamercolor{upper separation line foot}{parent=separation line} +\setbeamercolor{middle separation line foot}{parent=separation line} +\setbeamercolor{lower separation line foot}{parent=separation line} + +\setbeamercolor{abstract}{} +\setbeamercolor{abstract title}{parent=structure} + +\setbeamercolor{verse}{} + +\setbeamercolor{quotation}{} +\setbeamercolor{quote}{parent=quotation} + +\setbeamercolor{page number in head/foot}{fg=fg!50!bg} + +\setbeamercolor{qed symbol}{parent=structure} + +\mode + diff --git a/my_docs/22/sc_22_booth_talk/themes/beamerfontthemeTACC16.sty b/my_docs/22/sc_22_booth_talk/themes/beamerfontthemeTACC16.sty new file mode 100644 index 000000000..d0fc325cc --- /dev/null +++ b/my_docs/22/sc_22_booth_talk/themes/beamerfontthemeTACC16.sty @@ -0,0 +1,21 @@ +% Copyright 2003 by Till Tantau +% +% This program can be redistributed and/or modified under the terms +% of the GNU Public License, version 2. + +\mode +\setbeamerfont{title}{parent=structure,size=\LARGE,series=\bfseries} +\setbeamerfont{author}{parent=structure,size=\large, series=\normalfont} +\setbeamerfont{frametitle}{parent=structure,size=\LARGE,series=\bfseries} +\setbeamerfont{framesubtitle}{parent=frametitle,size=\small} + +%\usefonttheme{professionalfonts} % using non standard fonts for beamer +%\usefonttheme{serif} % default family is serif +%\usepackage{fontspec} +%\setmainfont{Century Gothic} + +%\usepackage{fontspec} +\usepackage{libertine} + +\mode + diff --git a/my_docs/22/sc_22_booth_talk/themes/beamerinnerthemeTACC16.sty b/my_docs/22/sc_22_booth_talk/themes/beamerinnerthemeTACC16.sty new file mode 100644 index 000000000..f7f454e1d --- /dev/null +++ b/my_docs/22/sc_22_booth_talk/themes/beamerinnerthemeTACC16.sty @@ -0,0 +1,11 @@ +\mode + +\setbeamertemplate{itemize item}[triangle] +\setbeamertemplate{itemize subitem}[triangle] +\setbeamertemplate{itemize subsubitem}[triangle] +\setbeamertemplate{section in toc}{$\bullet$\hskip.5em\inserttocsection} +%\setbeamertemplate{subsection in toc}{} +\setbeamertemplate{subsubsection in toc}{} + +\mode + diff --git a/my_docs/22/sc_22_booth_talk/themes/beamerouterthemeTACC16-169.sty b/my_docs/22/sc_22_booth_talk/themes/beamerouterthemeTACC16-169.sty new file mode 100644 index 000000000..c62f9ed04 --- /dev/null +++ b/my_docs/22/sc_22_booth_talk/themes/beamerouterthemeTACC16-169.sty @@ -0,0 +1,247 @@ +% Copyright 2003 by Till Tantau +% +% This program can be redistributed and/or modified under the terms +% of the GNU Public License, version 2. + +\mode + +\usepackage{xcolor} +\usepackage{graphicx} +\usepackage{etoolbox} + +\pgfdeclareimage[width=\paperwidth]{titlebackground}{./figures/master169.png} +\pgfdeclareimage[width=\paperwidth]{background}{./figures/secondary169.png} + +\setbeamertemplate{background canvas}{% + \ifnum\c@framenumber=1% + \begin{picture}(0,0) + \put(-0.15,-250){% + \pgfuseimage{titlebackground} + } + %\put(0,-130.7){% + + %\begin{minipage}[b][45mm][t]{\textwidth}%{226mm} + %\begin{center} + % \usebeamerfont{title}{\MakeTextUppercase{\inserttitle}\par} + %\vspace{2ex} + %\usebeamerfont{author}{\insertauthor} + % \end{center} + %\end{minipage} + %} + \end{picture} + % On title page + \else% + % Other frames background + \begin{picture}(0,0) + \put(-0.15,-255.55){% + \pgfuseimage{background} + } + \end{picture} + \fi% +} + + +\setbeamertemplate{title page}{ +\vspace{40pt} +\begin{center} +\usebeamerfont{title} {\huge \inserttitle}\par +\vspace{4ex} +\usebeamerfont{author} { + \insertauthor +}\par +\vspace{2ex} +\usebeamerfont{institute}{ + \insertinstitute +} \par +\vspace{2ex} +\usebeamerfont{date}{ + \insertdate +} +\end{center} +} + + +\setbeamertemplate{frametitle}[default][center] +\setbeamertemplate{frametitle}{ + \makeatletter + \regexpatchcmd{\insertframetitle} + {(\c{usebeamertemplate}.*)\c{fi}} + {\c{NoCaseChange}\cB\{\1\cE\}\c{fi}} + {}{}% + \makeatother + \vskip1ex + \insertframetitle +} + +% Here we define what appears at the bottom of each slide: the "footline". +\setbeamertemplate{footline}{% + \leavevmode% + + % Horizontal line dividing the rest of the slide from the footer? + % hrule goes all the way across... + % \hrule height.3pt% + % With \rule, you can specify the thickness + % \rule[raise-height]{width}{thickness} + % \hspace{.025\textwidth}\rule{.95\textwidth}{.5pt} + + \hbox{% + \ifnum \thepage>1 + % On the left half of the footer, insert the TACC of + \begin{minipage}{.2\textwidth}% + \hskip .05\textwidth%Give horizontal space else this will set on the left edge of the slide! + % \includegraphics[width=.8\textwidth]{TACC_logo.png} + \end{minipage} + + + \begin{minipage}{\textwidth}% + % \vskip .023\textheight% + \raggedleft% + \setlength{\rightskip}{\textwidth} + \hbox{% + \begin{beamercolorbox}[wd=0.7\textwidth,ht=2.25ex,dp=1ex,left]{author in head/foot}% + \insertshorttitle{} \hskip .01\textwidth | \hskip .01\textwidth \insertdate{} \hskip .01\textwidth | \hskip .01\textwidth \insertframenumber{} + \end{beamercolorbox}% + } + + % + % If we are not on the first page, insert a page number + % For some reason, insertframenumber is buggy when you have fragile + % slides with verbatim environments in them... it tends to skip numbers + % for some reason! On the other hand, the pagenumber is incremented + % for *every* slide, including transition slides... + % \hfill\includegraphics[width=\textwidth]{tacc_ut.png} + \end{minipage}% + \begin{minipage}{.05\textwidth}% + \end{minipage}% + \fi %\thepage>1 + }% + \vskip .023\textheight% + +} + + + + +\ifTACCheadernav + +\usesectionheadtemplate +{\hfill\insertsectionhead} +{\hfill\color{fg!50!bg}\insertsectionhead} + +% Head +\ifbeamer@compress + +% Here we define how the top of the frame looks, the "headline". +\setbeamertemplate{headline} +{% + \ifnum \thepage>1 + \leavevmode% + \begin{beamercolorbox}[wd=.5\paperwidth,ht=2.5ex,dp=1.125ex]{% + section in head/foot}% + \insertsectionnavigationhorizontal{.5\paperwidth}{\hskip0pt plus1filll}{}% + \end{beamercolorbox}% + \begin{beamercolorbox}[wd=.5\paperwidth,ht=2.5ex,dp=1.125ex]{% + subsection in head/foot}% + \insertsubsectionnavigationhorizontal{% + .5\paperwidth}{}{\hskip0pt plus1filll}% + \end{beamercolorbox}% + \fi %\thepage>1 +} + +\else% Not compressed + +\setbeamertemplate{headline} +{% + \ifnum \thepage>1 + \leavevmode% + \@tempdimb=2.4375ex% + \ifnum\beamer@subsectionmax<\beamer@sectionmax% + \multiply\@tempdimb by\beamer@sectionmax% + \else% + \multiply\@tempdimb by\beamer@subsectionmax% + \fi% + \ifdim\@tempdimb>0pt% + \advance\@tempdimb by 1.125ex% + \begin{beamercolorbox}[wd=.5\paperwidth,ht=\@tempdimb]{% + section in head/foot}% + \vbox to\@tempdimb{\vfil\insertsectionnavigation{.5\paperwidth}\vfil}% + \end{beamercolorbox}% + \begin{beamercolorbox}[wd=.5\paperwidth,ht=\@tempdimb]{% + subsection in head/foot}% + \vbox to\@tempdimb{\vfil\insertsubsectionnavigation{.5\paperwidth}\vfil}% + \end{beamercolorbox}% + \fi% + \fi % \thepage>1 +} + +\fi % end if compressed +\fi % TACCheadernav + + +\ifTACCheadertree + +\setbeamertemplate{headline} +{ + \begin{beamercolorbox}[wd=\paperwidth,colsep=1.5pt]{upper separation line head} + \end{beamercolorbox} + % + % Place short title + % + \begin{beamercolorbox}[wd=\paperwidth,ht=2.5ex,dp=1.125ex,% + leftskip=.3cm,rightskip=.3cm plus1fil]{title in head/foot} + \usebeamerfont{title in head/foot}\insertshorttitle + \end{beamercolorbox} + + % + % Place section + % + \begin{beamercolorbox}[wd=\paperwidth,ht=2.5ex,dp=1.125ex,% + leftskip=.3cm,rightskip=.3cm plus1fil]{section in head/foot} + \usebeamerfont{section in head/foot}% + %\ifbeamer@tree@showhooks + \setbox\beamer@tempbox=\hbox{\insertsectionhead}% + \ifdim\wd\beamer@tempbox>1pt% + \hskip2pt\raise1.9pt\hbox{\vrule width0.4pt height1.875ex\vrule width 5pt height0.4pt}% + \hskip1pt% + \fi + \insertsectionhead + \end{beamercolorbox} + +% +% Place subsection +% +\begin{beamercolorbox}[wd=\paperwidth,ht=2.5ex,dp=1.125ex,% + leftskip=.3cm,rightskip=.3cm plus1fil]{subsection in head/foot} + \usebeamerfont{subsection in head/foot}% + %\ifbeamer@tree@showhooks + \setbox\beamer@tempbox=\hbox{\insertsubsectionhead}% + \ifdim\wd\beamer@tempbox>1pt% + \hskip9.4pt\raise1.9pt\hbox{\vrule width0.4pt height1.875ex\vrule width 5pt height0.4pt}% + \hskip1pt% + \fi + \insertsubsectionhead +\end{beamercolorbox} + +% +% Place final separation box +% + \begin{beamercolorbox}[wd=\paperwidth,colsep=1.5pt + ]{lower separation line head} + \end{beamercolorbox} + + % + % Another matching rule which helps to frame the content + % + \hspace{.025\textwidth}\rule{.95\textwidth}{.5pt} +} +\fi % TACCheadertree + + +% The following command suppresses all navigation symbols. This is +% necessary in the TACC theme, since it overlaps where we want the +% logo to be. +\setbeamertemplate{navigation symbols}{} + + +\mode + diff --git a/my_docs/22/sc_22_booth_talk/themes/beamerouterthemeTACC16.sty b/my_docs/22/sc_22_booth_talk/themes/beamerouterthemeTACC16.sty new file mode 100644 index 000000000..c5b178018 --- /dev/null +++ b/my_docs/22/sc_22_booth_talk/themes/beamerouterthemeTACC16.sty @@ -0,0 +1,247 @@ +% Copyright 2003 by Till Tantau +% +% This program can be redistributed and/or modified under the terms +% of the GNU Public License, version 2. + +\mode + +\usepackage{xcolor} +\usepackage{graphicx} +\usepackage{etoolbox} + +\pgfdeclareimage[width=\paperwidth]{titlebackground}{master.jpg} +\pgfdeclareimage[width=\paperwidth]{background}{secondary.jpg} + +\setbeamertemplate{background canvas}{% + \ifnum\c@framenumber=1% + \begin{picture}(0,0) + \put(0,-273){% + \pgfuseimage{titlebackground} + } + %\put(0,-130.7){% + + %\begin{minipage}[b][45mm][t]{\textwidth}%{226mm} + %\begin{center} + % \usebeamerfont{title}{\MakeTextUppercase{\inserttitle}\par} + %\vspace{2ex} + %\usebeamerfont{author}{\insertauthor} + % \end{center} + %\end{minipage} + %} + \end{picture} + % On title page + \else% + % Other frames background + \begin{picture}(0,0) + \put(0,-273){% + \pgfuseimage{background} + } + \end{picture} + \fi% +} + + +\setbeamertemplate{title page}{ +\vspace{40pt} +\begin{center} +\usebeamerfont{title} {\huge \inserttitle}\par +\vspace{4ex} +\usebeamerfont{author} { + \insertauthor +}\par +\vspace{2ex} +\usebeamerfont{institute}{ + \insertinstitute +} \par +\vspace{2ex} +\usebeamerfont{date}{ + \insertdate +} +\end{center} +} + + +\setbeamertemplate{frametitle}[default][center] +\setbeamertemplate{frametitle}{ + \makeatletter + \regexpatchcmd{\insertframetitle} + {(\c{usebeamertemplate}.*)\c{fi}} + {\c{NoCaseChange}\cB\{\1\cE\}\c{fi}} + {}{}% + \makeatother + \vskip1ex + \insertframetitle +} + +% Here we define what appears at the bottom of each slide: the "footline". +\setbeamertemplate{footline}{% + \leavevmode% + + % Horizontal line dividing the rest of the slide from the footer? + % hrule goes all the way across... + % \hrule height.3pt% + % With \rule, you can specify the thickness + % \rule[raise-height]{width}{thickness} + % \hspace{.025\textwidth}\rule{.95\textwidth}{.5pt} + + \hbox{% + \ifnum \thepage>1 + % On the left half of the footer, insert the TACC of + \begin{minipage}{.2\textwidth}% + \hskip .05\textwidth%Give horizontal space else this will set on the left edge of the slide! + % \includegraphics[width=.8\textwidth]{figures/TACC_logo.png} + \end{minipage} + + + \begin{minipage}{\textwidth}% + % \vskip .023\textheight% + \raggedleft% + \setlength{\rightskip}{\textwidth} + \hbox{% + \begin{beamercolorbox}[wd=0.7\textwidth,ht=2.25ex,dp=1ex,left]{author in head/foot}% + \insertshorttitle{} \hskip .01\textwidth | \hskip .01\textwidth \insertdate{} \hskip .01\textwidth | \hskip .01\textwidth \insertframenumber{} + \end{beamercolorbox}% + } + + % + % If we are not on the first page, insert a page number + % For some reason, insertframenumber is buggy when you have fragile + % slides with verbatim environments in them... it tends to skip numbers + % for some reason! On the other hand, the pagenumber is incremented + % for *every* slide, including transition slides... + % \hfill\includegraphics[width=\textwidth]{figures/tacc_ut.png} + \end{minipage}% + \begin{minipage}{.05\textwidth}% + \end{minipage}% + \fi %\thepage>1 + }% + \vskip .023\textheight% + +} + + + + +\ifTACCheadernav + +\usesectionheadtemplate +{\hfill\insertsectionhead} +{\hfill\color{fg!50!bg}\insertsectionhead} + +% Head +\ifbeamer@compress + +% Here we define how the top of the frame looks, the "headline". +\setbeamertemplate{headline} +{% + \ifnum \thepage>1 + \leavevmode% + \begin{beamercolorbox}[wd=.5\paperwidth,ht=2.5ex,dp=1.125ex]{% + section in head/foot}% + \insertsectionnavigationhorizontal{.5\paperwidth}{\hskip0pt plus1filll}{}% + \end{beamercolorbox}% + \begin{beamercolorbox}[wd=.5\paperwidth,ht=2.5ex,dp=1.125ex]{% + subsection in head/foot}% + \insertsubsectionnavigationhorizontal{% + .5\paperwidth}{}{\hskip0pt plus1filll}% + \end{beamercolorbox}% + \fi %\thepage>1 +} + +\else% Not compressed + +\setbeamertemplate{headline} +{% + \ifnum \thepage>1 + \leavevmode% + \@tempdimb=2.4375ex% + \ifnum\beamer@subsectionmax<\beamer@sectionmax% + \multiply\@tempdimb by\beamer@sectionmax% + \else% + \multiply\@tempdimb by\beamer@subsectionmax% + \fi% + \ifdim\@tempdimb>0pt% + \advance\@tempdimb by 1.125ex% + \begin{beamercolorbox}[wd=.5\paperwidth,ht=\@tempdimb]{% + section in head/foot}% + \vbox to\@tempdimb{\vfil\insertsectionnavigation{.5\paperwidth}\vfil}% + \end{beamercolorbox}% + \begin{beamercolorbox}[wd=.5\paperwidth,ht=\@tempdimb]{% + subsection in head/foot}% + \vbox to\@tempdimb{\vfil\insertsubsectionnavigation{.5\paperwidth}\vfil}% + \end{beamercolorbox}% + \fi% + \fi % \thepage>1 +} + +\fi % end if compressed +\fi % TACCheadernav + + +\ifTACCheadertree + +\setbeamertemplate{headline} +{ + \begin{beamercolorbox}[wd=\paperwidth,colsep=1.5pt]{upper separation line head} + \end{beamercolorbox} + % + % Place short title + % + \begin{beamercolorbox}[wd=\paperwidth,ht=2.5ex,dp=1.125ex,% + leftskip=.3cm,rightskip=.3cm plus1fil]{title in head/foot} + \usebeamerfont{title in head/foot}\insertshorttitle + \end{beamercolorbox} + + % + % Place section + % + \begin{beamercolorbox}[wd=\paperwidth,ht=2.5ex,dp=1.125ex,% + leftskip=.3cm,rightskip=.3cm plus1fil]{section in head/foot} + \usebeamerfont{section in head/foot}% + %\ifbeamer@tree@showhooks + \setbox\beamer@tempbox=\hbox{\insertsectionhead}% + \ifdim\wd\beamer@tempbox>1pt% + \hskip2pt\raise1.9pt\hbox{\vrule width0.4pt height1.875ex\vrule width 5pt height0.4pt}% + \hskip1pt% + \fi + \insertsectionhead + \end{beamercolorbox} + +% +% Place subsection +% +\begin{beamercolorbox}[wd=\paperwidth,ht=2.5ex,dp=1.125ex,% + leftskip=.3cm,rightskip=.3cm plus1fil]{subsection in head/foot} + \usebeamerfont{subsection in head/foot}% + %\ifbeamer@tree@showhooks + \setbox\beamer@tempbox=\hbox{\insertsubsectionhead}% + \ifdim\wd\beamer@tempbox>1pt% + \hskip9.4pt\raise1.9pt\hbox{\vrule width0.4pt height1.875ex\vrule width 5pt height0.4pt}% + \hskip1pt% + \fi + \insertsubsectionhead +\end{beamercolorbox} + +% +% Place final separation box +% + \begin{beamercolorbox}[wd=\paperwidth,colsep=1.5pt + ]{lower separation line head} + \end{beamercolorbox} + + % + % Another matching rule which helps to frame the content + % + \hspace{.025\textwidth}\rule{.95\textwidth}{.5pt} +} +\fi % TACCheadertree + + +% The following command suppresses all navigation symbols. This is +% necessary in the TACC theme, since it overlaps where we want the +% logo to be. +\setbeamertemplate{navigation symbols}{} + + +\mode + diff --git a/my_docs/22/sc_22_booth_talk/themes/beamerthemeTACC16-169.sty b/my_docs/22/sc_22_booth_talk/themes/beamerthemeTACC16-169.sty new file mode 100644 index 000000000..22caf9a05 --- /dev/null +++ b/my_docs/22/sc_22_booth_talk/themes/beamerthemeTACC16-169.sty @@ -0,0 +1,38 @@ +%% TACC theme for beamer + +\newif\ifTACCheadernav +\DeclareOption{headernav}{\global\TACCheadernavtrue} + +\newif\ifTACCheadertree +\DeclareOption{headertree}{\global\TACCheadertreetrue} +\ProcessOptions + +\mode + +\makeatletter + \def\beamer@calltheme#1#2#3{% + \def\beamer@themelist{#2} + \@for\beamer@themename:=\beamer@themelist\do + {\usepackage[{#1}]{\beamer@themelocation/#3\beamer@themename}}} + + \def\usefolder#1{ + \def\beamer@themelocation{#1} + } + \def\beamer@themelocation{} + +\usefolder{themes} +\usefonttheme{TACC16} +\useinnertheme{TACC16} +\useoutertheme{TACC16-169} +\usecolortheme{TACC16} + +\mode + + +\newcommand{\event}[1]{% + \makeatletter% + \def\TACC@eventname{#1}% + \makeatother} + +\newcommand{\sectionframe}[1]{\section{#1}\frame{\Large\textbf{#1}}} +\newcommand{\subsectionframe}[1]{\subsection{#1}\frame{\large\textbf{#1}}} diff --git a/my_docs/22/sc_22_booth_talk/themes/beamerthemeTACC16.sty b/my_docs/22/sc_22_booth_talk/themes/beamerthemeTACC16.sty new file mode 100644 index 000000000..750bdd388 --- /dev/null +++ b/my_docs/22/sc_22_booth_talk/themes/beamerthemeTACC16.sty @@ -0,0 +1,26 @@ +%% TACC theme for beamer + +\newif\ifTACCheadernav +\DeclareOption{headernav}{\global\TACCheadernavtrue} + +\newif\ifTACCheadertree +\DeclareOption{headertree}{\global\TACCheadertreetrue} +\ProcessOptions + +\mode + +\usefonttheme{TACC16} +\useinnertheme{TACC16} +\useoutertheme{TACC16} +\usecolortheme{TACC16} + +\mode + + +\newcommand{\event}[1]{% + \makeatletter% + \def\TACC@eventname{#1}% + \makeatother} + +\newcommand{\sectionframe}[1]{\section{#1}\frame{\Large\textbf{#1}}} +\newcommand{\subsectionframe}[1]{\subsection{#1}\frame{\large\textbf{#1}}} diff --git a/my_docs/22/sc_22_booth_talk/themes/example.pdf b/my_docs/22/sc_22_booth_talk/themes/example.pdf new file mode 100644 index 000000000..add373eee Binary files /dev/null and b/my_docs/22/sc_22_booth_talk/themes/example.pdf differ diff --git a/my_docs/22/sc_22_booth_talk/themes/license.tex b/my_docs/22/sc_22_booth_talk/themes/license.tex new file mode 100644 index 000000000..74ff86759 --- /dev/null +++ b/my_docs/22/sc_22_booth_talk/themes/license.tex @@ -0,0 +1,14 @@ + +\begin{frame}{License} +\footnotesize +\textcopyright The University of Texas at Austin, \the\year\\ +\vspace{0.5 cm} +This work is licensed under the Creative Commons Attribution Non-Commercial 3.0 Unported License. To view a copy of this license, +visit http://creativecommons.org/licenses/by-nc/3.0/\\ +\vspace{0.5 cm} +When attributing this work, please use the following text: +"Designing and Administering Large-scale Systems", Texas Advanced Computing Center, \the\year. Available under a Creative Commons Attribution Non-Commercial 3.0 Unported License. +\newline +\newline +\includegraphics[width=1cm]{./figures/cc.png} +\end{frame} \ No newline at end of file diff --git a/my_docs/22/star_mtg_22/Lmod-4color@2x.png b/my_docs/22/star_mtg_22/Lmod-4color@2x.png deleted file mode 120000 index 47d505dbf..000000000 --- a/my_docs/22/star_mtg_22/Lmod-4color@2x.png +++ /dev/null @@ -1 +0,0 @@ -../../beamer/Lmod-4color@2x.png \ No newline at end of file diff --git a/my_docs/22/star_mtg_22/Lmod-4color@2x.png b/my_docs/22/star_mtg_22/Lmod-4color@2x.png new file mode 100644 index 000000000..4810d74c3 Binary files /dev/null and b/my_docs/22/star_mtg_22/Lmod-4color@2x.png differ diff --git a/my_docs/22/star_mtg_22/beamercolorthemeTACC.sty b/my_docs/22/star_mtg_22/beamercolorthemeTACC.sty deleted file mode 120000 index 8d27e673a..000000000 --- a/my_docs/22/star_mtg_22/beamercolorthemeTACC.sty +++ /dev/null @@ -1 +0,0 @@ -../../beamer/beamercolorthemeTACC.sty \ No newline at end of file diff --git a/my_docs/22/star_mtg_22/beamercolorthemeTACC.sty b/my_docs/22/star_mtg_22/beamercolorthemeTACC.sty new file mode 100755 index 000000000..78beb6a4a --- /dev/null +++ b/my_docs/22/star_mtg_22/beamercolorthemeTACC.sty @@ -0,0 +1,323 @@ +% Copyright 2003 by Till Tantau . +% +% This program can be redistributed and/or modified under the terms +% of the GNU Public License, version 2. + +\mode + +% I downloaded a gimp color palette from +% http://maururu.net/2007/latex-beamer-color-palette/ +% Which provides rgb values (I think) for several of the +% default beamer themes. You can open this in gimp by +% opening the Palettes dialog, right-clicking anywhere and choosing +% 'Import Palette'. A color in there called 'default added blue' +% appeared to be approximately what I wanted. It had the triple +% of values 141 145 208. If you double-click on this in the +% palette editor it gives you a bunch of information. You can't +% use these values directly to set a color...it just comes out white. +% I think definecolor is expecting something normalized by 255. Yes! + + +% bluish colors +\definecolor{defaddedblue}{rgb}{0.5529,.5686,.8157} % 141,145,208 +\definecolor{defblockheader}{rgb}{.1921,.2235,.6824} % 49,57,174 +\definecolor{flyaddedblue}{rgb}{.5961,.6118,.8431} % 152,156,215 + +% bluish-greys +\definecolor{beetleaddedblue1}{rgb}{.3333,.4039,.6196} % 85 103 158, dark +\definecolor{beetleaddedblue2}{rgb}{.4510,.5098,.7020} % 115 130 179, medium +\definecolor{beetleaddedblue3}{rgb}{.7059,.7255,.7961} % 180 185 203, light (greyest) + +% very light blue-greys +\definecolor{deflightouter1}{rgb}{.7608,.7647,.9020} % 194 195 230, dark +\definecolor{deflightouter2}{rgb}{.8 ,.8039,.9176} % 204 205 234, medium +\definecolor{deflightouter3}{rgb}{.8392,.8431,.9373} % 214 215 239, light + +% reddish colors +\definecolor{flyalertblockheader}{rgb}{.7373,.1294,.1333} % 188 33 34 +\definecolor{flyaddedred}{rgb}{.8667,.5647,.5647}% 221 144 144 +\definecolor{beaverouterframe}{rgb}{.5529,.0980,.0980}% 141 25 25 + +% greens (green is used for 'examples' in beamer) +\definecolor{defexblock}{rgb}{.9098,.9333,.9020} % 232 238 230, light +\definecolor{defaddedgreen}{rgb}{.5412,.6510,.4706} % 138 166 120, medium +\definecolor{defexblockheader}{rgb}{.1686,.3647,.0392} % 43 93 10, dark + +\definecolor{lightexblock}{rgb}{.9137,.9451,.9020} % 233 241 230, light +\definecolor{lightexblockheader}{rgb}{.8235,.8980,.8} % 210 229 204, medium +\definecolor{lightexblockheadertext}{rgb}{.2431,.5098,.0745} % 62 130 19, dark + + +%%% +% Set the normal text color +%%% +\setbeamercolor{normal text}{fg=black,bg=white} + +%%% +% Set the alerted text color +%%% +% \setbeamercolor{alerted text}{fg=red} +\setbeamercolor{alerted text}{fg=red!50!black} % half black/half red for green bg +% \setbeamercolor{alerted text}{fg=beaverouterframe} +% \setbeamercolor{alerted text}{fg=defblockheader} % doesn't stand out enough + + +% Set the 'example' text +\setbeamercolor{example text}{fg=green!50!black} + +\setbeamercolor{structure}{fg=black} + +\setbeamercolor{background canvas}{parent=normal text} +\setbeamercolor{background}{parent=background canvas} + +\setbeamercolor{palette primary}{use=structure,fg=structure.fg} +\setbeamercolor{palette secondary}{use=structure,fg=structure.fg!75!black} +\setbeamercolor{palette tertiary}{use=structure,fg=structure.fg!50!black} +\setbeamercolor{palette quaternary}{fg=black} + +\setbeamercolor{palette sidebar primary}{use=normal text,fg=normal text.fg} +\setbeamercolor{palette sidebar secondary}{use=structure,fg=structure.fg} +\setbeamercolor{palette sidebar tertiary}{use=normal text,fg=normal text.fg} +\setbeamercolor{palette sidebar quaternary}{use=structure,fg=structure.fg} + +\setbeamercolor{math text}{} +\setbeamercolor{math text inlined}{parent=math text} +\setbeamercolor{math text displayed}{parent=math text} + +\setbeamercolor{normal text in math text}{} + +\setbeamercolor{local structure}{parent=structure} + +\setbeamercolor{titlelike}{parent=structure} + +\setbeamercolor{title}{parent=titlelike} +\setbeamercolor{title in head/foot}{parent=palette quaternary} +\setbeamercolor{title in sidebar}{parent=palette sidebar quaternary} + +\setbeamercolor{subtitle}{parent=title} + +\setbeamercolor{author}{} +\setbeamercolor{author in head/foot}{parent=palette primary} +\setbeamercolor{author in sidebar}{use=palette sidebar tertiary,fg=palette sidebar tertiary.fg} + +\setbeamercolor{institute}{} +\setbeamercolor{institute in head/foot}{parent=palette tertiary} +\setbeamercolor{institute in sidebar}{use=palette sidebar tertiary,fg=palette sidebar tertiary.fg} + +\setbeamercolor{date}{} +\setbeamercolor{date in head/foot}{parent=palette secondary} +\setbeamercolor{date in sidebar}{use=palette sidebar tertiary,fg=palette sidebar tertiary.fg} + +\setbeamercolor{titlegraphic}{} + +\setbeamercolor{part name}{} +\setbeamercolor{part title}{parent=titlelike} + +\setbeamercolor{section in toc}{parent=structure} +\setbeamercolor{section in toc shaded}{parent=section in toc} +\setbeamercolor{section in head/foot}{parent=palette tertiary} +\setbeamercolor{section in sidebar}{parent=palette sidebar secondary} +\setbeamercolor{section in sidebar shaded}{use=section in sidebar,fg=section in sidebar.fg!40!bg} +\setbeamercolor{section number projected}{parent=item projected} + +\setbeamercolor{subsection in toc}{} +\setbeamercolor{subsection in toc shaded}{parent=subsection in toc} +\setbeamercolor{subsection in head/foot}{parent=palette secondary} +\setbeamercolor{subsection in sidebar}{parent=palette sidebar primary} +\setbeamercolor{subsection in sidebar shaded}{use=subsection in sidebar,fg=subsection in sidebar.fg!40!bg} +\setbeamercolor{subsection number projected}{parent={subitem projected}} + +\setbeamercolor{subsubsection in toc}{parent=subsection in toc} +\setbeamercolor{subsubsection in toc shaded}{parent=subsubsection in toc} +\setbeamercolor{subsubsection in head/foot}{parent=subsection in head/foot} +\setbeamercolor{subsubsection in sidebar}{parent=subsection in sidebar} +\setbeamercolor{subsubsection in sidebar shaded}{parent=subsection in sidebar shaded} +\setbeamercolor{subsubsection number projected}{parent=subsubitem projected} + +\setbeamercolor{headline}{} +\setbeamercolor{footline}{} + +\setbeamercolor{sidebar}{} +\setbeamercolor{sidebar left}{parent=sidebar} +\setbeamercolor{sidebar right}{parent=sidebar} + +\setbeamercolor{logo}{parent=palette secondary} + +\setbeamercolor{frametitle}{parent=titlelike} +\setbeamercolor{framesubtitle}{parent=frametitle} + +\setbeamercolor{frametitle right}{parent=frametitle} + +\setbeamercolor{caption}{} +\setbeamercolor{caption name}{parent=structure} + +\setbeamercolor{button}{use=local structure,bg=local structure.fg!50!bg,fg=white} +\setbeamercolor{button border}{use=button,fg=button.bg} +\setbeamercolor{navigation symbols}{use=structure,fg=structure.fg!40!bg} +\setbeamercolor{navigation symbols dimmed}{use=structure,fg=structure.fg!20!bg} +\setbeamercolor{mini frame}{parent=section in head/foot} + +% Color expressions are defined in the xcolor package +% +% Ex: Mixture of 40% green, 60% yellow: green!40!yellow +% +% The complement of any color can be obtained by prepending +% a minus sign: -green!40!yellow +% +% One can also combine up to three colors (in differing proportions) +% using the rgb command. For example, the following command combines +% 3 parts of the first color, with 2 parts of the second, and one part +% "red" +% +%\color{rgb:-green!40!yellow,3;green!40!yellow,2;red,1} +% Unfortunately, I don't think this works as an argument to setbeamercolor... +% "Orange" bg=green!30!yellow!30!red +% close to burnt orange: red!75!green +% lightgray is a color, but gray!25!white looks better +% +% A nice pair of greens +% (dark, a little too dark to be under black text...) -red!75!green!50!blue!25 +% (light) -red!75!green!50!blue!25!gray +% +% Some colors are only available via options to the xcolor package, eg. +% x11names,DarkOliveGreen4 +% svgnames, Chartreuse +% dvipsnames, ForestGreen +% +% but beamer does not seem to have any of these. +% +% The base color names which are always available are: +% black +% blue +% brown +% cyan +% darkgray +% gray +% green +% lightgray +% lime +% magenta +% olive +% orange +% pink +% purple +% red +% teal +% violet +% white +% yellow + +% From the beamer user guide, pg. 167 +% Inner color themes only specify the colors of elements used in inner +% themes. Most noticably, they specify the colors used for blocks. +% ... + +% Example color definition +% beamercolorthemedefault.sty:\definecolor{beamer@blendedblue}{rgb}{0.2,0.2,0.7} +% beamercolorthemedefault.sty:\setbeamercolor{structure}{fg=beamer@blendedblue} + +% The greens +% \setbeamercolor{block body}{bg=-red!75!green!50!blue!25!gray} +% \setbeamercolor{block title}{parent=structure,bg=-red!75!green!50!blue!25,fg=-red!75!green!50!blue!25!gray} + +%%% +% Set the block body and title background/foreground colors +%%% +% \setbeamercolor{block body}{bg=flyaddedblue} +% \setbeamercolor{block title}{bg=defblockheader,fg=flyaddedblue} + +% Purplish blues, too dark overall +% \setbeamercolor{block body}{bg=beetleaddedblue3} +% \setbeamercolor{block title}{bg=beetleaddedblue2,fg=beetleaddedblue3} + +% Very light blue greys +% 1. Not enough contrast +% \setbeamercolor{block body}{bg=deflightouter3} +% \setbeamercolor{block title}{bg=deflightouter2,fg=deflightouter3} + +% 2. Not enough contrast +% \setbeamercolor{block body}{bg=deflightouter3} +% \setbeamercolor{block title}{bg=deflightouter1,fg=deflightouter3} + +% 3. Combination of deflightouter and fly. The block bg is +% lighter than the all-beetle color scheme I previously thought was best. +% Currently I like this one the best +\setbeamercolor{block body}{bg=deflightouter3} +\setbeamercolor{block title}{bg=beetleaddedblue2,fg=deflightouter3} + +% 4. Greens. Looks like a highlighter. I don't really trust greens +% on projectors... It's almost too bright/hurts your eyes. +% \setbeamercolor{block body}{bg=defexblock} +% \setbeamercolor{block title}{bg=defaddedgreen,fg=defexblock} + +% This looks pretty good ... it's similar to the greens we had before +% but should be lighter. The blocks are just a little too "mint" colored +% though... +% \setbeamercolor{block body}{bg=defexblock} +% \setbeamercolor{block title}{bg=defexblockheader,fg=defexblock} + +% Pea Soup! +%\setbeamercolor{block body}{bg=defaddedgreen} +%\setbeamercolor{block title}{bg=defexblockheader,fg=defaddedgreen} + + +% Changing these didn't seem to do anything...I had to change the +% 'alerted text' color instead +\setbeamercolor{block body alerted}{} +\setbeamercolor{block body example}{} +\setbeamercolor{block title alerted}{parent=alerted text} +\setbeamercolor{block title example}{parent=example text} + +\setbeamercolor{item}{parent=local structure} +\setbeamercolor{subitem}{parent=item} +\setbeamercolor{subsubitem}{parent=subitem} + +\setbeamercolor{item projected}{parent=item,use=item,fg=white,bg=item.fg} +\setbeamercolor{subitem projected}{parent=item projected} +\setbeamercolor{subsubitem projected}{parent=subitem projected} + +\setbeamercolor{enumerate item}{parent=item} +\setbeamercolor{enumerate subitem}{parent=subitem} +\setbeamercolor{enumerate subsubitem}{parent=subsubitem} + +\setbeamercolor{itemize item}{parent=item} +\setbeamercolor{itemize subitem}{parent=subitem} +\setbeamercolor{itemize subsubitem}{parent=subsubitem} + +\setbeamercolor{itemize/enumerate body}{} +\setbeamercolor{itemize/enumerate subbody}{} +\setbeamercolor{itemize/enumerate subsubbody}{} + +\setbeamercolor{description item}{parent=item} + +\setbeamercolor{bibliography item}{parent=item} + +\setbeamercolor{bibliography entry author}{use=structure,fg=structure.fg} +\setbeamercolor{bibliography entry title}{use=normal text,fg=normal text.fg} +\setbeamercolor{bibliography entry location}{use=structure,fg=structure.fg!65!bg} +\setbeamercolor{bibliography entry note}{use=structure,fg=structure.fg!65!bg} + +\setbeamercolor{separation line}{} + +\setbeamercolor{upper separation line head}{parent=separation line} +\setbeamercolor{middle separation line head}{parent=separation line} +\setbeamercolor{lower separation line head}{parent=separation line} + +\setbeamercolor{upper separation line foot}{parent=separation line} +\setbeamercolor{middle separation line foot}{parent=separation line} +\setbeamercolor{lower separation line foot}{parent=separation line} + +\setbeamercolor{abstract}{} +\setbeamercolor{abstract title}{parent=structure} + +\setbeamercolor{verse}{} + +\setbeamercolor{quotation}{} +\setbeamercolor{quote}{parent=quotation} + +\setbeamercolor{page number in head/foot}{fg=fg!50!bg} + +\setbeamercolor{qed symbol}{parent=structure} + +\mode + diff --git a/my_docs/22/star_mtg_22/beamercolorthemeTACC16.sty b/my_docs/22/star_mtg_22/beamercolorthemeTACC16.sty deleted file mode 120000 index 58415801b..000000000 --- a/my_docs/22/star_mtg_22/beamercolorthemeTACC16.sty +++ /dev/null @@ -1 +0,0 @@ -../../beamer/beamercolorthemeTACC16.sty \ No newline at end of file diff --git a/my_docs/22/star_mtg_22/beamercolorthemeTACC16.sty b/my_docs/22/star_mtg_22/beamercolorthemeTACC16.sty new file mode 100755 index 000000000..779dde91f --- /dev/null +++ b/my_docs/22/star_mtg_22/beamercolorthemeTACC16.sty @@ -0,0 +1,192 @@ +% Copyright 2003 by Till Tantau . +% +% This program can be redistributed and/or modified under the terms +% of the GNU Public License, version 2. + +\mode + +\usepackage{textcase,regexpatch} + +\setbeamertemplate{blocks}[rounded][shadow=true] + + +\definecolor{TACCred}{RGB}{180,13,29} +\definecolor{TACCorange}{RGB}{210,104,43} +\definecolor{TACCblue}{RGB}{108, 134, 191} +\definecolor{TACCgreen}{RGB}{23,106,70} + +% I downloaded a gimp color palette from +% http://maururu.net/2007/latex-beamer-color-palette/ +% Which provides rgb values (I think) for several of the +% default beamer themes. You can open this in gimp by +% opening the Palettes dialog, right-clicking anywhere and choosing +% 'Import Palette'. A color in there called 'default added blue' +% appeared to be approximately what I wanted. It had the triple +% of values 141 145 208. If you double-click on this in the +% palette editor it gives you a bunch of information. You can't +% use these values directly to set a color...it just comes out white. +% I think definecolor is expecting something normalized by 255. Yes! + + +%%% +% Set the normal text color +%%% +\setbeamercolor{normal text}{fg=black} %,bg=white} +\setbeamercolor{example text}{fg=TACCgreen} +\setbeamercolor{alerted text}{fg=TACCorange} + + +\setbeamercolor{structure}{fg=black} +%\setbeamercolor{structure}{fg=black} + +\setbeamercolor{background canvas}{parent=normal text} +\setbeamercolor{background}{parent=background canvas} + +\setbeamercolor{palette primary}{use=structure,fg=structure.fg} +\setbeamercolor{palette secondary}{use=structure,fg=structure.fg!75!black} +\setbeamercolor{palette tertiary}{use=structure,fg=structure.fg!50!black} +\setbeamercolor{palette quaternary}{fg=black} + +\setbeamercolor{palette sidebar primary}{use=normal text,fg=normal text.fg} +\setbeamercolor{palette sidebar secondary}{use=structure,fg=structure.fg} +\setbeamercolor{palette sidebar tertiary}{use=normal text,fg=normal text.fg} +\setbeamercolor{palette sidebar quaternary}{use=structure,fg=structure.fg} + +\setbeamercolor{math text}{} +\setbeamercolor{math text inlined}{parent=math text} +\setbeamercolor{math text displayed}{parent=math text} + +\setbeamercolor{normal text in math text}{} + +\setbeamercolor{local structure}{parent=structure} + +\setbeamercolor{titlelike}{parent=structure} + +\setbeamercolor{title}{parent=titlelike} +\setbeamercolor{title in head/foot}{parent=palette quaternary} +\setbeamercolor{title in sidebar}{parent=palette sidebar quaternary} + +\setbeamercolor{subtitle}{parent=title} + +\setbeamercolor{author}{} +\setbeamercolor{author in head/foot}{parent=palette primary} +\setbeamercolor{author in sidebar}{use=palette sidebar tertiary,fg=palette sidebar tertiary.fg} + +\setbeamercolor{institute}{} +\setbeamercolor{institute in head/foot}{parent=palette tertiary} +\setbeamercolor{institute in sidebar}{use=palette sidebar tertiary,fg=palette sidebar tertiary.fg} + +\setbeamercolor{date}{} +\setbeamercolor{date in head/foot}{parent=palette secondary} +\setbeamercolor{date in sidebar}{use=palette sidebar tertiary,fg=palette sidebar tertiary.fg} + +\setbeamercolor{titlegraphic}{} + +\setbeamercolor{part name}{} +\setbeamercolor{part title}{parent=titlelike} + +\setbeamercolor{section in toc}{parent=structure} +\setbeamercolor{section in toc shaded}{parent=section in toc} +\setbeamercolor{section in head/foot}{parent=palette tertiary} +\setbeamercolor{section in sidebar}{parent=palette sidebar secondary} +\setbeamercolor{section in sidebar shaded}{use=section in sidebar,fg=section in sidebar.fg!40!bg} +\setbeamercolor{section number projected}{parent=item projected} + +\setbeamercolor{subsection in toc}{} +\setbeamercolor{subsection in toc shaded}{parent=subsection in toc} +\setbeamercolor{subsection in head/foot}{parent=palette secondary} +\setbeamercolor{subsection in sidebar}{parent=palette sidebar primary} +\setbeamercolor{subsection in sidebar shaded}{use=subsection in sidebar,fg=subsection in sidebar.fg!40!bg} +\setbeamercolor{subsection number projected}{parent={subitem projected}} + +\setbeamercolor{subsubsection in toc}{parent=subsection in toc} +\setbeamercolor{subsubsection in toc shaded}{parent=subsubsection in toc} +\setbeamercolor{subsubsection in head/foot}{parent=subsection in head/foot} +\setbeamercolor{subsubsection in sidebar}{parent=subsection in sidebar} +\setbeamercolor{subsubsection in sidebar shaded}{parent=subsection in sidebar shaded} +\setbeamercolor{subsubsection number projected}{parent=subsubitem projected} + +\setbeamercolor{headline}{} +\setbeamercolor{footline}{} + +\setbeamercolor{sidebar}{} +\setbeamercolor{sidebar left}{parent=sidebar} +\setbeamercolor{sidebar right}{parent=sidebar} + +\setbeamercolor{logo}{parent=palette secondary} + +\setbeamercolor{frametitle}{parent=titlelike} +\setbeamercolor{framesubtitle}{parent=frametitle} + +\setbeamercolor{frametitle right}{parent=frametitle} + +\setbeamercolor{caption}{} +\setbeamercolor{caption name}{parent=structure} + +\setbeamercolor{button}{use=local structure,bg=local structure.fg!50!bg,fg=white} +\setbeamercolor{button border}{use=button,fg=button.bg} +\setbeamercolor{navigation symbols}{use=structure,fg=structure.fg!40!bg} +\setbeamercolor{navigation symbols dimmed}{use=structure,fg=structure.fg!20!bg} +\setbeamercolor{mini frame}{parent=section in head/foot} + +\setbeamercolor{block body}{fg=black} +\setbeamercolor{block body alerted}{fg=black} +\setbeamercolor{block body example}{fg=black} + +\setbeamercolor{block title}{bg=TACCblue,fg=white} +\setbeamercolor{block title alerted}{bg=TACCred,fg=white} +\setbeamercolor{block title example}{bg=TACCgreen,fg=white} + +\setbeamercolor{item}{parent=local structure} +\setbeamercolor{subitem}{parent=item} +\setbeamercolor{subsubitem}{parent=subitem} + +\setbeamercolor{item projected}{parent=item,use=item,fg=black,bg=item.fg} +\setbeamercolor{subitem projected}{parent=item projected} +\setbeamercolor{subsubitem projected}{parent=subitem projected} + +\setbeamercolor{enumerate item}{parent=item} +\setbeamercolor{enumerate subitem}{parent=subitem} +\setbeamercolor{enumerate subsubitem}{parent=subsubitem} + +\setbeamercolor{itemize item}{parent=item} +\setbeamercolor{itemize subitem}{parent=subitem} +\setbeamercolor{itemize subsubitem}{parent=subsubitem} + +\setbeamercolor{itemize/enumerate body}{} +\setbeamercolor{itemize/enumerate subbody}{} +\setbeamercolor{itemize/enumerate subsubbody}{} + +\setbeamercolor{description item}{parent=item} + +\setbeamercolor{bibliography item}{parent=item} + +\setbeamercolor{bibliography entry author}{use=structure,fg=structure.fg} +\setbeamercolor{bibliography entry title}{use=normal text,fg=normal text.fg} +\setbeamercolor{bibliography entry location}{use=structure,fg=structure.fg!65!bg} +\setbeamercolor{bibliography entry note}{use=structure,fg=structure.fg!65!bg} + +\setbeamercolor{separation line}{} + +\setbeamercolor{upper separation line head}{parent=separation line} +\setbeamercolor{middle separation line head}{parent=separation line} +\setbeamercolor{lower separation line head}{parent=separation line} + +\setbeamercolor{upper separation line foot}{parent=separation line} +\setbeamercolor{middle separation line foot}{parent=separation line} +\setbeamercolor{lower separation line foot}{parent=separation line} + +\setbeamercolor{abstract}{} +\setbeamercolor{abstract title}{parent=structure} + +\setbeamercolor{verse}{} + +\setbeamercolor{quotation}{} +\setbeamercolor{quote}{parent=quotation} + +\setbeamercolor{page number in head/foot}{fg=fg!50!bg} + +\setbeamercolor{qed symbol}{parent=structure} + +\mode + diff --git a/my_docs/22/star_mtg_22/beamerfontthemeTACC.sty b/my_docs/22/star_mtg_22/beamerfontthemeTACC.sty deleted file mode 120000 index 78e971fb8..000000000 --- a/my_docs/22/star_mtg_22/beamerfontthemeTACC.sty +++ /dev/null @@ -1 +0,0 @@ -../../beamer/beamerfontthemeTACC.sty \ No newline at end of file diff --git a/my_docs/22/star_mtg_22/beamerfontthemeTACC.sty b/my_docs/22/star_mtg_22/beamerfontthemeTACC.sty new file mode 100755 index 000000000..ef9ce1e5e --- /dev/null +++ b/my_docs/22/star_mtg_22/beamerfontthemeTACC.sty @@ -0,0 +1,12 @@ +% Copyright 2003 by Till Tantau +% +% This program can be redistributed and/or modified under the terms +% of the GNU Public License, version 2. + +\mode + +\setbeamerfont{frametitle}{parent=structure,size=\LARGE,series=\bfseries} +\setbeamerfont{framesubtitle}{parent=frametitle,size=\small} + +\mode + \ No newline at end of file diff --git a/my_docs/22/star_mtg_22/beamerfontthemeTACC16.sty b/my_docs/22/star_mtg_22/beamerfontthemeTACC16.sty deleted file mode 120000 index a1f2fa5f9..000000000 --- a/my_docs/22/star_mtg_22/beamerfontthemeTACC16.sty +++ /dev/null @@ -1 +0,0 @@ -../../beamer/beamerfontthemeTACC16.sty \ No newline at end of file diff --git a/my_docs/22/star_mtg_22/beamerfontthemeTACC16.sty b/my_docs/22/star_mtg_22/beamerfontthemeTACC16.sty new file mode 100755 index 000000000..b65271835 --- /dev/null +++ b/my_docs/22/star_mtg_22/beamerfontthemeTACC16.sty @@ -0,0 +1,21 @@ +% Copyright 2003 by Till Tantau +% +% This program can be redistributed and/or modified under the terms +% of the GNU Public License, version 2. + +\mode +\setbeamerfont{title}{parent=structure,size=\LARGE,series=\bfseries} +\setbeamerfont{author}{parent=structure,size=\large, series=\normalfont} +\setbeamerfont{frametitle}{parent=structure,size=\LARGE,series=\bfseries} +\setbeamerfont{framesubtitle}{parent=frametitle,size=\small} + +%\usefonttheme{professionalfonts} % using non standard fonts for beamer +%\usefonttheme{serif} % default family is serif +%\usepackage{fontspec} +%\setmainfont{Century Gothic} + +\usepackage{fontspec} +\usepackage{libertine} + +\mode + diff --git a/my_docs/22/star_mtg_22/beamerinnerthemeTACC.sty b/my_docs/22/star_mtg_22/beamerinnerthemeTACC.sty deleted file mode 120000 index 8d5ae3921..000000000 --- a/my_docs/22/star_mtg_22/beamerinnerthemeTACC.sty +++ /dev/null @@ -1 +0,0 @@ -../../beamer/beamerinnerthemeTACC.sty \ No newline at end of file diff --git a/my_docs/22/star_mtg_22/beamerinnerthemeTACC.sty b/my_docs/22/star_mtg_22/beamerinnerthemeTACC.sty new file mode 100755 index 000000000..29e2bce81 --- /dev/null +++ b/my_docs/22/star_mtg_22/beamerinnerthemeTACC.sty @@ -0,0 +1,11 @@ +\mode + +\setbeamertemplate{itemize item}[circle] +\setbeamertemplate{itemize subitem}{{}--{}} +\setbeamertemplate{itemize subsubitem}[circle] +\setbeamertemplate{section in toc}{$\bullet$\hskip.5em\inserttocsection} +%\setbeamertemplate{subsection in toc}{} +\setbeamertemplate{subsubsection in toc}{} + +\mode + diff --git a/my_docs/22/star_mtg_22/beamerinnerthemeTACC16.sty b/my_docs/22/star_mtg_22/beamerinnerthemeTACC16.sty deleted file mode 120000 index 5955acc99..000000000 --- a/my_docs/22/star_mtg_22/beamerinnerthemeTACC16.sty +++ /dev/null @@ -1 +0,0 @@ -../../beamer/beamerinnerthemeTACC16.sty \ No newline at end of file diff --git a/my_docs/22/star_mtg_22/beamerinnerthemeTACC16.sty b/my_docs/22/star_mtg_22/beamerinnerthemeTACC16.sty new file mode 100755 index 000000000..f7f454e1d --- /dev/null +++ b/my_docs/22/star_mtg_22/beamerinnerthemeTACC16.sty @@ -0,0 +1,11 @@ +\mode + +\setbeamertemplate{itemize item}[triangle] +\setbeamertemplate{itemize subitem}[triangle] +\setbeamertemplate{itemize subsubitem}[triangle] +\setbeamertemplate{section in toc}{$\bullet$\hskip.5em\inserttocsection} +%\setbeamertemplate{subsection in toc}{} +\setbeamertemplate{subsubsection in toc}{} + +\mode + diff --git a/my_docs/22/star_mtg_22/beamerouterthemeTACC.sty b/my_docs/22/star_mtg_22/beamerouterthemeTACC.sty deleted file mode 120000 index da0a45d33..000000000 --- a/my_docs/22/star_mtg_22/beamerouterthemeTACC.sty +++ /dev/null @@ -1 +0,0 @@ -../../beamer/beamerouterthemeTACC.sty \ No newline at end of file diff --git a/my_docs/22/star_mtg_22/beamerouterthemeTACC.sty b/my_docs/22/star_mtg_22/beamerouterthemeTACC.sty new file mode 100755 index 000000000..038580303 --- /dev/null +++ b/my_docs/22/star_mtg_22/beamerouterthemeTACC.sty @@ -0,0 +1,196 @@ +% Copyright 2003 by Till Tantau +% +% This program can be redistributed and/or modified under the terms +% of the GNU Public License, version 2. + +\mode + +\setbeamertemplate{frametitle}[default][center] +\addtobeamertemplate{frametitle}{\vskip 4ex minus 4ex}{} + +% Here we define what appears at the bottom of each slide: the "footline". +\setbeamertemplate{footline}{% + \leavevmode% + + % Horizontal line dividing the rest of the slide from the footer? + % hrule goes all the way across... + % \hrule height.3pt% + % With \rule, you can specify the thickness + % \rule[raise-height]{width}{thickness} + \hspace{.025\textwidth}\rule{.95\textwidth}{.5pt} + + \hbox{% + % On the left half of the footer, insert the TACC logo + \begin{minipage}{.5\textwidth}% + \hskip .033\textwidth%Give horizontal space else this will set on the left edge of the slide! + % TACC logo with custom viewport! + \includegraphics[viewport=1 -1 135 35, clip=true, width=.4\textwidth]{figures/TACC_logo} + \end{minipage} + % + \begin{minipage}{.5\textwidth}% + \vskip .023\textheight% + \raggedleft% + \setlength{\rightskip}{.033\textwidth} + % + % If we are not on the first page, insert a page number + % For some reason, insertframenumber is buggy when you have fragile + % slides with verbatim environments in them... it tends to skip numbers + % for some reason! On the other hand, the pagenumber is incremented + % for *every* slide, including transition slides... + \ifnum \thepage>1 + % \insertshorttitle + \insertframenumber + % \insertframenumber/\inserttotalframenumber + % \insertpagenumber + \else % Do a phantom of whatever you do on other pages, so spacing matches + %$\phantom{\insertshorttitle}$ + $\phantom{\insertframenumber}$ + %$\phantom{\insertframenumber/\inserttotalframenumber}$ + %$\phantom{\insertpagenumber}$ + \fi + \hfill\includegraphics[width=.5\textwidth]{figures/UT_logo}% + \end{minipage}% + }% + \vskip .023\textheight% +} + + + + +\ifTACCheadernav + +\usesectionheadtemplate +{\hfill\insertsectionhead} +{\hfill\color{fg!50!bg}\insertsectionhead} + +% Head +\ifbeamer@compress + +% Here we define how the top of the frame looks, the "headline". +\setbeamertemplate{headline} +{% + \ifnum \thepage>1 + \leavevmode% + \begin{beamercolorbox}[wd=.5\paperwidth,ht=2.5ex,dp=1.125ex]{% + section in head/foot}% + \insertsectionnavigationhorizontal{.5\paperwidth}{\hskip0pt plus1filll}{}% + \end{beamercolorbox}% + \begin{beamercolorbox}[wd=.5\paperwidth,ht=2.5ex,dp=1.125ex]{% + subsection in head/foot}% + \insertsubsectionnavigationhorizontal{% + .5\paperwidth}{}{\hskip0pt plus1filll}% + \end{beamercolorbox}% + \fi %\thepage>1 +} + +\else% Not compressed + +\setbeamertemplate{headline} +{% + \ifnum \thepage>1 + \leavevmode% + \@tempdimb=2.4375ex% + \ifnum\beamer@subsectionmax<\beamer@sectionmax% + \multiply\@tempdimb by\beamer@sectionmax% + \else% + \multiply\@tempdimb by\beamer@subsectionmax% + \fi% + \ifdim\@tempdimb>0pt% + \advance\@tempdimb by 1.125ex% + \begin{beamercolorbox}[wd=.5\paperwidth,ht=\@tempdimb]{% + section in head/foot}% + \vbox to\@tempdimb{\vfil\insertsectionnavigation{.5\paperwidth}\vfil}% + \end{beamercolorbox}% + \begin{beamercolorbox}[wd=.5\paperwidth,ht=\@tempdimb]{% + subsection in head/foot}% + \vbox to\@tempdimb{\vfil\insertsubsectionnavigation{.5\paperwidth}\vfil}% + \end{beamercolorbox}% + \fi% + \fi % \thepage>1 +} + +\fi % end if compressed +\fi % TACCheadernav + + +\ifTACCheadertree + +\setbeamertemplate{headline} +{ + \begin{beamercolorbox}[wd=\paperwidth,colsep=1.5pt + ]{upper separation line head} + \end{beamercolorbox} + % + % Place short title + % + \begin{beamercolorbox}[wd=\paperwidth,ht=2.5ex,dp=1.125ex,% + leftskip=.3cm,rightskip=.3cm plus1fil]{title in head/foot} + \usebeamerfont{title in head/foot}\insertshorttitle + \end{beamercolorbox} + + % + % Place section + % + \begin{beamercolorbox}[wd=\paperwidth,ht=2.5ex,dp=1.125ex,% + leftskip=.3cm,rightskip=.3cm plus1fil]{section in head/foot} + \usebeamerfont{section in head/foot}% + %\ifbeamer@tree@showhooks + \setbox\beamer@tempbox=\hbox{\insertsectionhead}% + \ifdim\wd\beamer@tempbox>1pt% + \hskip2pt\raise1.9pt\hbox{\vrule width0.4pt height1.875ex\vrule width 5pt height0.4pt}% + \hskip1pt% + \fi% \ifdim + %\else% + %\hskip6pt% + %\fi% \ifbeamer + \insertsectionhead + \end{beamercolorbox} + +% +% Place subsection +% +\begin{beamercolorbox}[wd=\paperwidth,ht=2.5ex,dp=1.125ex,% + leftskip=.3cm,rightskip=.3cm plus1fil]{subsection in head/foot} + \usebeamerfont{subsection in head/foot}% + %\ifbeamer@tree@showhooks + \setbox\beamer@tempbox=\hbox{\insertsubsectionhead}% + \ifdim\wd\beamer@tempbox>1pt% + \hskip9.4pt\raise1.9pt\hbox{\vrule width0.4pt height1.875ex\vrule width 5pt height0.4pt}% + \hskip1pt% + \fi% \ifdim + %\else% + %\hskip12pt% + %\fi% \ifbeamer + \insertsubsectionhead +\end{beamercolorbox} + +% +% Place final separation box +% + \begin{beamercolorbox}[wd=\paperwidth,colsep=1.5pt + ]{lower separation line head} + \end{beamercolorbox} + + % + % Another matching rule which helps to frame the content + % + \hspace{.025\textwidth}\rule{.95\textwidth}{.5pt} +} +\fi % TACCheadertree + + +% The following command suppresses all navigation symbols. This is +% necessary in the TACC theme, since it overlaps where we want the +% logo to be. +\setbeamertemplate{navigation symbols}{} + +% Align the navigation symbols vertically (still overlaps our logo!) +%\setbeamertemplate{navigation symbols}[vertical]{} + +% Only places the slide-forward and slide-back symbol, but yes, +% this still overlaps our logo! +%\setbeamertemplate{navigation symbols}[only frame symbol]{} + + +\mode + diff --git a/my_docs/22/star_mtg_22/beamerouterthemeTACC16.sty b/my_docs/22/star_mtg_22/beamerouterthemeTACC16.sty deleted file mode 120000 index 54bd09537..000000000 --- a/my_docs/22/star_mtg_22/beamerouterthemeTACC16.sty +++ /dev/null @@ -1 +0,0 @@ -../../beamer/beamerouterthemeTACC16.sty \ No newline at end of file diff --git a/my_docs/22/star_mtg_22/beamerouterthemeTACC16.sty b/my_docs/22/star_mtg_22/beamerouterthemeTACC16.sty new file mode 100755 index 000000000..d5e6388c7 --- /dev/null +++ b/my_docs/22/star_mtg_22/beamerouterthemeTACC16.sty @@ -0,0 +1,312 @@ +% Antonio Gomez (agomez@tacc.utexas.edu) +% 4-20-17. Added option to put the footer on the right side + + + +\mode + +\usepackage{xcolor} +\usepackage{graphicx} +\usepackage{etoolbox} + + + +% This theme accepts the "rightfooter" option +% When used, it will put the TACC logo at the bottom of the slide on the right side +% By default, it goes to the left + +\xifaspectratio{ + {169} { + \pgfdeclareimage[width=\paperwidth]{titlebackground}{./figures/master169.jpg} + \if@rightfooterOption + \pgfdeclareimage[width=\paperwidth]{background}{./figures/secondary_right169.jpg} +\else + \pgfdeclareimage[width=\paperwidth]{background}{./figures/secondary169.jpg} +\fi +} +}[ +\pgfdeclareimage[width=\paperwidth]{titlebackground}{./figures/master.jpg} + \if@rightfooterOption + \pgfdeclareimage[width=\paperwidth]{background}{./figures/secondary_right.jpg} +\else + \pgfdeclareimage[width=\paperwidth]{background}{./figures/secondary.jpg} +\fi +] + +\setbeamertemplate{background canvas}{% +\xifaspectratio{ + {169} { + \ifnum\c@framenumber=1 % + \begin{picture}(0,0) + \put(-3,-256){% + \pgfuseimage{titlebackground} + } + \end{picture} + \else% + \begin{picture}(0,0) + \put(-3,-260){% + \pgfuseimage{background} + } + \end{picture} + \fi + } + {43} { + \ifnum\c@framenumber=1 % + \begin{picture}(0,0) + \put(-4,-274){% + \pgfuseimage{titlebackground} + } + \end{picture} + \else% + \begin{picture}(0,0) + \put(-4,-274){% + \pgfuseimage{background} + } + \end{picture} + \fi + } +} +} + + + +%\setbeamertemplate{background canvas}{% +% % On title page +% \ifnum\c@framenumber=1 % +% \begin{picture}(0,0) +% \put(0,-253){% +% \pgfuseimage{titlebackground} +% } +% \end{picture} +% +% \else% +% \xifaspectratio{ +% {169} { +% % Other frames background +% \begin{picture}(0,0) +% \put(-4,-260){% +% \pgfuseimage{background} +% } +% \end{picture} +% } +% }[ +% % Other frames background +% \begin{picture}(0,0) +% \put(-4,-274){% +% \pgfuseimage{background} +% } +% \end{picture} +% ] +% \fi% +%} + + +\setbeamertemplate{title page}{ +\vspace{40pt} +\begin{center} +\usebeamerfont{title} {\huge \inserttitle}\par +\vspace{4ex} +\usebeamerfont{author} { + \insertauthor +}\par +\vspace{2ex} +\usebeamerfont{institute}{ + \insertinstitute +} \par +\vspace{2ex} +\usebeamerfont{date}{ + \insertdate +} +\end{center} +} + + +\setbeamertemplate{frametitle}[default][center] +\setbeamertemplate{frametitle}{ + \makeatletter + \regexpatchcmd{\insertframetitle} + {(\c{usebeamertemplate}.*)\c{fi}} + {\c{NoCaseChange}\cB\{\1\cE\}\c{fi}} + {}{}% + \makeatother + \vskip1ex + \insertframetitle +} + +% Here we define what appears at the bottom of each slide: the "footline". +\setbeamertemplate{footline}{% + \leavevmode% + + % Horizontal line dividing the rest of the slide from the footer? + % hrule goes all the way across... + % \hrule height.3pt% + % With \rule, you can specify the thickness + % \rule[raise-height]{width}{thickness} + % \hspace{.025\textwidth}\rule{.95\textwidth}{.5pt} + + \hbox{% + \ifnum \thepage>1 + \if@rightfooterOption + \begin{minipage}{.2\textwidth}% + \hskip .05\textwidth%Give horizontal space else this will set on the left edge of the slide! + \end{minipage} + \else + \begin{minipage}{.4\textwidth}% + \hskip .05\textwidth%Give horizontal space else this will set on the left edge of the slide! + \end{minipage} + \fi + + + \begin{minipage}{\textwidth}% + % \vskip .023\textheight% + \raggedleft% + \setlength{\rightskip}{\textwidth} + \if@rightfooterOption + \hbox{% + \begin{beamercolorbox}[wd=0.7\textwidth,ht=2.25ex,dp=1ex,left]{author in head/foot}% + \insertshorttitle{} \hskip .01\textwidth | \hskip .01\textwidth \insertdate{} \hskip .01\textwidth | \hskip .01\textwidth \insertframenumber{} + \end{beamercolorbox}% + } + \else + \hbox{% + \begin{beamercolorbox}[wd=0.5\textwidth,ht=2.25ex,dp=1ex,left]{author in head/foot}% + \insertshorttitle{} \hskip .01\textwidth | \hskip .01\textwidth \insertdate{} \hskip .01\textwidth | \hskip .01\textwidth \insertframenumber{} + \end{beamercolorbox}% + } + \fi + + \end{minipage}% + \begin{minipage}{.05\textwidth}% + \end{minipage}% + \fi %\thepage>1 + }% + \vskip .023\textheight% + +} + + + + +\ifTACCheadernav + +\usesectionheadtemplate +{\hfill\insertsectionhead} +{\hfill\color{fg!50!bg}\insertsectionhead} + +% Head +\ifbeamer@compress + +% Here we define how the top of the frame looks, the "headline". +\setbeamertemplate{headline} +{% + \ifnum \thepage>1 + \leavevmode% + \begin{beamercolorbox}[wd=.5\paperwidth,ht=2.5ex,dp=1.125ex]{% + section in head/foot}% + \insertsectionnavigationhorizontal{.5\paperwidth}{\hskip0pt plus1filll}{}% + \end{beamercolorbox}% + \begin{beamercolorbox}[wd=.5\paperwidth,ht=2.5ex,dp=1.125ex]{% + subsection in head/foot}% + \insertsubsectionnavigationhorizontal{% + .5\paperwidth}{}{\hskip0pt plus1filll}% + \end{beamercolorbox}% + \fi %\thepage>1 +} + +\else% Not compressed + +\setbeamertemplate{headline} +{% + \ifnum \thepage>1 + \leavevmode% + \@tempdimb=2.4375ex% + \ifnum\beamer@subsectionmax<\beamer@sectionmax% + \multiply\@tempdimb by\beamer@sectionmax% + \else% + \multiply\@tempdimb by\beamer@subsectionmax% + \fi% + \ifdim\@tempdimb>0pt% + \advance\@tempdimb by 1.125ex% + \begin{beamercolorbox}[wd=.5\paperwidth,ht=\@tempdimb]{% + section in head/foot}% + \vbox to\@tempdimb{\vfil\insertsectionnavigation{.5\paperwidth}\vfil}% + \end{beamercolorbox}% + \begin{beamercolorbox}[wd=.5\paperwidth,ht=\@tempdimb]{% + subsection in head/foot}% + \vbox to\@tempdimb{\vfil\insertsubsectionnavigation{.5\paperwidth}\vfil}% + \end{beamercolorbox}% + \fi% + \fi % \thepage>1 +} + +\fi % end if compressed +\fi % TACCheadernav + + +\ifTACCheadertree + +\setbeamertemplate{headline} +{ + \begin{beamercolorbox}[wd=\paperwidth,colsep=1.5pt]{upper separation line head} + \end{beamercolorbox} + % + % Place short title + % + \begin{beamercolorbox}[wd=\paperwidth,ht=2.5ex,dp=1.125ex,% + leftskip=.3cm,rightskip=.3cm plus1fil]{title in head/foot} + \usebeamerfont{title in head/foot}\insertshorttitle + \end{beamercolorbox} + + % + % Place section + % + \begin{beamercolorbox}[wd=\paperwidth,ht=2.5ex,dp=1.125ex,% + leftskip=.3cm,rightskip=.3cm plus1fil]{section in head/foot} + \usebeamerfont{section in head/foot}% + %\ifbeamer@tree@showhooks + \setbox\beamer@tempbox=\hbox{\insertsectionhead}% + \ifdim\wd\beamer@tempbox>1pt% + \hskip2pt\raise1.9pt\hbox{\vrule width0.4pt height1.875ex\vrule width 5pt height0.4pt}% + \hskip1pt% + \fi + \insertsectionhead + \end{beamercolorbox} + +% +% Place subsection +% +\begin{beamercolorbox}[wd=\paperwidth,ht=2.5ex,dp=1.125ex,% + leftskip=.3cm,rightskip=.3cm plus1fil]{subsection in head/foot} + \usebeamerfont{subsection in head/foot}% + %\ifbeamer@tree@showhooks + \setbox\beamer@tempbox=\hbox{\insertsubsectionhead}% + \ifdim\wd\beamer@tempbox>1pt% + \hskip9.4pt\raise1.9pt\hbox{\vrule width0.4pt height1.875ex\vrule width 5pt height0.4pt}% + \hskip1pt% + \fi + \insertsubsectionhead +\end{beamercolorbox} + +% +% Place final separation box +% + \begin{beamercolorbox}[wd=\paperwidth,colsep=1.5pt + ]{lower separation line head} + \end{beamercolorbox} + + % + % Another matching rule which helps to frame the content + % + \hspace{.025\textwidth}\rule{.95\textwidth}{.5pt} +} +\fi % TACCheadertree + + +% The following command suppresses all navigation symbols. This is +% necessary in the TACC theme, since it overlaps where we want the +% logo to be. +\setbeamertemplate{navigation symbols}{} + + +\mode + diff --git a/my_docs/22/star_mtg_22/beamerthemeTACC.sty b/my_docs/22/star_mtg_22/beamerthemeTACC.sty deleted file mode 120000 index 5c339abd4..000000000 --- a/my_docs/22/star_mtg_22/beamerthemeTACC.sty +++ /dev/null @@ -1 +0,0 @@ -../../beamer/beamerthemeTACC.sty \ No newline at end of file diff --git a/my_docs/22/star_mtg_22/beamerthemeTACC.sty b/my_docs/22/star_mtg_22/beamerthemeTACC.sty new file mode 100755 index 000000000..c6a1b1269 --- /dev/null +++ b/my_docs/22/star_mtg_22/beamerthemeTACC.sty @@ -0,0 +1,26 @@ +%% TACC theme for beamer + +\newif\ifTACCheadernav +\DeclareOption{headernav}{\global\TACCheadernavtrue} + +\newif\ifTACCheadertree +\DeclareOption{headertree}{\global\TACCheadertreetrue} +\ProcessOptions + +\mode + +\usefonttheme{TACC} +\usecolortheme{TACC} +\useinnertheme{TACC} +\useoutertheme{TACC} + +\mode + + +\newcommand{\event}[1]{% + \makeatletter% + \def\TACC@eventname{#1}% + \makeatother} + +\newcommand{\sectionframe}[1]{\section{#1}\frame{\Large\textbf{#1}}} +\newcommand{\subsectionframe}[1]{\subsection{#1}\frame{\large\textbf{#1}}} diff --git a/my_docs/22/star_mtg_22/beamerthemeTACC16.sty b/my_docs/22/star_mtg_22/beamerthemeTACC16.sty deleted file mode 120000 index 7a9d4d296..000000000 --- a/my_docs/22/star_mtg_22/beamerthemeTACC16.sty +++ /dev/null @@ -1 +0,0 @@ -../../beamer/beamerthemeTACC16.sty \ No newline at end of file diff --git a/my_docs/22/star_mtg_22/beamerthemeTACC16.sty b/my_docs/22/star_mtg_22/beamerthemeTACC16.sty new file mode 100755 index 000000000..b522d0207 --- /dev/null +++ b/my_docs/22/star_mtg_22/beamerthemeTACC16.sty @@ -0,0 +1,61 @@ +%% TACC theme for beamer + + +\newif\if@rightfooterOption +\@rightfooterOptionfalse +\DeclareOption{rightfooter}{\@rightfooterOptiontrue} +\ProcessOptions + + +\newif\ifTACCheadernav +\DeclareOption{headernav}{\global\TACCheadernavtrue} + +\newif\ifTACCheadertree +\DeclareOption{headertree}{\global\TACCheadertreetrue} +\ProcessOptions + +\usepackage{xparse} +\ExplSyntaxOn +\NewDocumentCommand{\ifaspectratio}{mmm} + { + % Recover the option from those passed to the class + \keys_set:nf { zunbeltz/beameroptions } { \use:c { opt@beamer.cls } } + \str_if_eq:nVTF { #1 } \l_zunbeltz_aspectratio_tl { #2 } { #3 } + } +\NewDocumentCommand{\xifaspectratio}{mO{}} + { + % Recover the option from those passed to the class + \keys_set:nf { zunbeltz/beameroptions } { \use:c { opt@beamer.cls } } + \str_case:VnF \l_zunbeltz_aspectratio_tl { #1 } { #2 } + } +% We need to define only one key, the other are treated as `unknown' +\keys_define:nn { zunbeltz/beameroptions } + { + aspectratio .tl_set:N = \l_zunbeltz_aspectratio_tl, + aspectratio .initial:n = 43, + unknown .code:n = {}, + } + +% Generate the variants we need +\cs_generate_variant:Nn \keys_set:nn { nf } +\cs_generate_variant:Nn \str_if_eq:nnTF { nV } +\cs_generate_variant:Nn \str_case:nnF { V } +\ExplSyntaxOff + +\mode + +\usefonttheme{TACC16} +\useinnertheme{TACC16} +\useoutertheme{TACC16} +\usecolortheme{TACC16} + +\mode + + +\newcommand{\event}[1]{% + \makeatletter% + \def\TACC@eventname{#1}% + \makeatother} + +\newcommand{\sectionframe}[1]{\section{#1}\frame{\Large\textbf{#1}}} +\newcommand{\subsectionframe}[1]{\subsection{#1}\frame{\large\textbf{#1}}} diff --git a/my_docs/22/star_mtg_22/figures b/my_docs/22/star_mtg_22/figures deleted file mode 120000 index ddafd8974..000000000 --- a/my_docs/22/star_mtg_22/figures +++ /dev/null @@ -1 +0,0 @@ -../../beamer/figures \ No newline at end of file diff --git a/my_docs/22/star_mtg_22/figures/TACC_logo.pdf b/my_docs/22/star_mtg_22/figures/TACC_logo.pdf new file mode 100755 index 000000000..c018a20cb Binary files /dev/null and b/my_docs/22/star_mtg_22/figures/TACC_logo.pdf differ diff --git a/my_docs/22/star_mtg_22/figures/UT_logo.pdf b/my_docs/22/star_mtg_22/figures/UT_logo.pdf new file mode 100755 index 000000000..d5b42e752 Binary files /dev/null and b/my_docs/22/star_mtg_22/figures/UT_logo.pdf differ diff --git a/my_docs/22/star_mtg_22/figures/cc.png b/my_docs/22/star_mtg_22/figures/cc.png new file mode 100644 index 000000000..8a532ff8f Binary files /dev/null and b/my_docs/22/star_mtg_22/figures/cc.png differ diff --git a/my_docs/22/star_mtg_22/figures/isa.png b/my_docs/22/star_mtg_22/figures/isa.png new file mode 100644 index 000000000..f95d985e7 Binary files /dev/null and b/my_docs/22/star_mtg_22/figures/isa.png differ diff --git a/my_docs/22/star_mtg_22/figures/master.jpg b/my_docs/22/star_mtg_22/figures/master.jpg new file mode 100644 index 000000000..f5c56c04a Binary files /dev/null and b/my_docs/22/star_mtg_22/figures/master.jpg differ diff --git a/my_docs/22/star_mtg_22/figures/master169.jpg b/my_docs/22/star_mtg_22/figures/master169.jpg new file mode 100644 index 000000000..b215776eb Binary files /dev/null and b/my_docs/22/star_mtg_22/figures/master169.jpg differ diff --git a/my_docs/22/star_mtg_22/figures/master169.png b/my_docs/22/star_mtg_22/figures/master169.png new file mode 100644 index 000000000..bc5c0ed12 Binary files /dev/null and b/my_docs/22/star_mtg_22/figures/master169.png differ diff --git a/my_docs/22/star_mtg_22/figures/secondary.jpg b/my_docs/22/star_mtg_22/figures/secondary.jpg new file mode 100644 index 000000000..d905a95c9 Binary files /dev/null and b/my_docs/22/star_mtg_22/figures/secondary.jpg differ diff --git a/my_docs/22/star_mtg_22/figures/secondary169.jpg b/my_docs/22/star_mtg_22/figures/secondary169.jpg new file mode 100644 index 000000000..4eb017957 Binary files /dev/null and b/my_docs/22/star_mtg_22/figures/secondary169.jpg differ diff --git a/my_docs/22/star_mtg_22/figures/secondary169.png b/my_docs/22/star_mtg_22/figures/secondary169.png new file mode 100644 index 000000000..cb9060a56 Binary files /dev/null and b/my_docs/22/star_mtg_22/figures/secondary169.png differ diff --git a/my_docs/22/star_mtg_22/figures/secondary_right.jpg b/my_docs/22/star_mtg_22/figures/secondary_right.jpg new file mode 100644 index 000000000..f25f93a58 Binary files /dev/null and b/my_docs/22/star_mtg_22/figures/secondary_right.jpg differ diff --git a/my_docs/22/star_mtg_22/figures/secondary_right169.jpg b/my_docs/22/star_mtg_22/figures/secondary_right169.jpg new file mode 100644 index 000000000..567a1078f Binary files /dev/null and b/my_docs/22/star_mtg_22/figures/secondary_right169.jpg differ diff --git a/my_docs/22/star_mtg_22/themes b/my_docs/22/star_mtg_22/themes deleted file mode 120000 index a98530730..000000000 --- a/my_docs/22/star_mtg_22/themes +++ /dev/null @@ -1 +0,0 @@ -../../beamer/themes \ No newline at end of file diff --git a/my_docs/22/star_mtg_22/themes/beamercolorthemeTACC16.sty b/my_docs/22/star_mtg_22/themes/beamercolorthemeTACC16.sty new file mode 100644 index 000000000..248ae8cb6 --- /dev/null +++ b/my_docs/22/star_mtg_22/themes/beamercolorthemeTACC16.sty @@ -0,0 +1,193 @@ +% Copyright 2003 by Till Tantau . +% +% This program can be redistributed and/or modified under the terms +% of the GNU Public License, version 2. + +\mode + +\usepackage{textcase,regexpatch} + +\setbeamertemplate{blocks}[rounded][shadow=true] + + +\definecolor{TACCred}{RGB}{180,13,29} +\definecolor{TACCorange}{RGB}{210,104,43} +\definecolor{TACCblue}{RGB}{21,77,122} +%\definecolor{TACCgreen}{RGB}{30,134,104} +\definecolor{TACCgreen}{RGB}{49,168,51} + +% I downloaded a gimp color palette from +% http://maururu.net/2007/latex-beamer-color-palette/ +% Which provides rgb values (I think) for several of the +% default beamer themes. You can open this in gimp by +% opening the Palettes dialog, right-clicking anywhere and choosing +% 'Import Palette'. A color in there called 'default added blue' +% appeared to be approximately what I wanted. It had the triple +% of values 141 145 208. If you double-click on this in the +% palette editor it gives you a bunch of information. You can't +% use these values directly to set a color...it just comes out white. +% I think definecolor is expecting something normalized by 255. Yes! + + +%%% +% Set the normal text color +%%% +\setbeamercolor{normal text}{fg=black} %,bg=white} +\setbeamercolor{example text}{fg=TACCgreen} +\setbeamercolor{alerted text}{fg=TACCorange} + + +\setbeamercolor{structure}{fg=black} +%\setbeamercolor{structure}{fg=black} + +\setbeamercolor{background canvas}{parent=normal text} +\setbeamercolor{background}{parent=background canvas} + +\setbeamercolor{palette primary}{use=structure,fg=structure.fg} +\setbeamercolor{palette secondary}{use=structure,fg=structure.fg!75!black} +\setbeamercolor{palette tertiary}{use=structure,fg=structure.fg!50!black} +\setbeamercolor{palette quaternary}{fg=black} + +\setbeamercolor{palette sidebar primary}{use=normal text,fg=normal text.fg} +\setbeamercolor{palette sidebar secondary}{use=structure,fg=structure.fg} +\setbeamercolor{palette sidebar tertiary}{use=normal text,fg=normal text.fg} +\setbeamercolor{palette sidebar quaternary}{use=structure,fg=structure.fg} + +\setbeamercolor{math text}{} +\setbeamercolor{math text inlined}{parent=math text} +\setbeamercolor{math text displayed}{parent=math text} + +\setbeamercolor{normal text in math text}{} + +\setbeamercolor{local structure}{parent=structure} + +\setbeamercolor{titlelike}{parent=structure} + +\setbeamercolor{title}{parent=titlelike} +\setbeamercolor{title in head/foot}{parent=palette quaternary} +\setbeamercolor{title in sidebar}{parent=palette sidebar quaternary} + +\setbeamercolor{subtitle}{parent=title} + +\setbeamercolor{author}{} +\setbeamercolor{author in head/foot}{parent=palette primary} +\setbeamercolor{author in sidebar}{use=palette sidebar tertiary,fg=palette sidebar tertiary.fg} + +\setbeamercolor{institute}{} +\setbeamercolor{institute in head/foot}{parent=palette tertiary} +\setbeamercolor{institute in sidebar}{use=palette sidebar tertiary,fg=palette sidebar tertiary.fg} + +\setbeamercolor{date}{} +\setbeamercolor{date in head/foot}{parent=palette secondary} +\setbeamercolor{date in sidebar}{use=palette sidebar tertiary,fg=palette sidebar tertiary.fg} + +\setbeamercolor{titlegraphic}{} + +\setbeamercolor{part name}{} +\setbeamercolor{part title}{parent=titlelike} + +\setbeamercolor{section in toc}{parent=structure} +\setbeamercolor{section in toc shaded}{parent=section in toc} +\setbeamercolor{section in head/foot}{parent=palette tertiary} +\setbeamercolor{section in sidebar}{parent=palette sidebar secondary} +\setbeamercolor{section in sidebar shaded}{use=section in sidebar,fg=section in sidebar.fg!40!bg} +\setbeamercolor{section number projected}{parent=item projected} + +\setbeamercolor{subsection in toc}{} +\setbeamercolor{subsection in toc shaded}{parent=subsection in toc} +\setbeamercolor{subsection in head/foot}{parent=palette secondary} +\setbeamercolor{subsection in sidebar}{parent=palette sidebar primary} +\setbeamercolor{subsection in sidebar shaded}{use=subsection in sidebar,fg=subsection in sidebar.fg!40!bg} +\setbeamercolor{subsection number projected}{parent={subitem projected}} + +\setbeamercolor{subsubsection in toc}{parent=subsection in toc} +\setbeamercolor{subsubsection in toc shaded}{parent=subsubsection in toc} +\setbeamercolor{subsubsection in head/foot}{parent=subsection in head/foot} +\setbeamercolor{subsubsection in sidebar}{parent=subsection in sidebar} +\setbeamercolor{subsubsection in sidebar shaded}{parent=subsection in sidebar shaded} +\setbeamercolor{subsubsection number projected}{parent=subsubitem projected} + +\setbeamercolor{headline}{} +\setbeamercolor{footline}{} + +\setbeamercolor{sidebar}{} +\setbeamercolor{sidebar left}{parent=sidebar} +\setbeamercolor{sidebar right}{parent=sidebar} + +\setbeamercolor{logo}{parent=palette secondary} + +\setbeamercolor{frametitle}{parent=titlelike} +\setbeamercolor{framesubtitle}{parent=frametitle} + +\setbeamercolor{frametitle right}{parent=frametitle} + +\setbeamercolor{caption}{} +\setbeamercolor{caption name}{parent=structure} + +\setbeamercolor{button}{use=local structure,bg=local structure.fg!50!bg,fg=white} +\setbeamercolor{button border}{use=button,fg=button.bg} +\setbeamercolor{navigation symbols}{use=structure,fg=structure.fg!40!bg} +\setbeamercolor{navigation symbols dimmed}{use=structure,fg=structure.fg!20!bg} +\setbeamercolor{mini frame}{parent=section in head/foot} + +\setbeamercolor{block body}{fg=black} +\setbeamercolor{block body alerted}{fg=black} +\setbeamercolor{block body example}{fg=black} + +\setbeamercolor{block title}{bg=TACCblue,fg=white} +\setbeamercolor{block title alerted}{bg=TACCred,fg=white} +\setbeamercolor{block title example}{bg=TACCgreen,fg=white} + +\setbeamercolor{item}{parent=local structure} +\setbeamercolor{subitem}{parent=item} +\setbeamercolor{subsubitem}{parent=subitem} + +\setbeamercolor{item projected}{parent=item,use=item,fg=black,bg=item.fg} +\setbeamercolor{subitem projected}{parent=item projected} +\setbeamercolor{subsubitem projected}{parent=subitem projected} + +\setbeamercolor{enumerate item}{parent=item} +\setbeamercolor{enumerate subitem}{parent=subitem} +\setbeamercolor{enumerate subsubitem}{parent=subsubitem} + +\setbeamercolor{itemize item}{parent=item} +\setbeamercolor{itemize subitem}{parent=subitem} +\setbeamercolor{itemize subsubitem}{parent=subsubitem} + +\setbeamercolor{itemize/enumerate body}{} +\setbeamercolor{itemize/enumerate subbody}{} +\setbeamercolor{itemize/enumerate subsubbody}{} + +\setbeamercolor{description item}{parent=item} + +\setbeamercolor{bibliography item}{parent=item} + +\setbeamercolor{bibliography entry author}{use=structure,fg=structure.fg} +\setbeamercolor{bibliography entry title}{use=normal text,fg=normal text.fg} +\setbeamercolor{bibliography entry location}{use=structure,fg=structure.fg!65!bg} +\setbeamercolor{bibliography entry note}{use=structure,fg=structure.fg!65!bg} + +\setbeamercolor{separation line}{} + +\setbeamercolor{upper separation line head}{parent=separation line} +\setbeamercolor{middle separation line head}{parent=separation line} +\setbeamercolor{lower separation line head}{parent=separation line} + +\setbeamercolor{upper separation line foot}{parent=separation line} +\setbeamercolor{middle separation line foot}{parent=separation line} +\setbeamercolor{lower separation line foot}{parent=separation line} + +\setbeamercolor{abstract}{} +\setbeamercolor{abstract title}{parent=structure} + +\setbeamercolor{verse}{} + +\setbeamercolor{quotation}{} +\setbeamercolor{quote}{parent=quotation} + +\setbeamercolor{page number in head/foot}{fg=fg!50!bg} + +\setbeamercolor{qed symbol}{parent=structure} + +\mode + diff --git a/my_docs/22/star_mtg_22/themes/beamerfontthemeTACC16.sty b/my_docs/22/star_mtg_22/themes/beamerfontthemeTACC16.sty new file mode 100644 index 000000000..d0fc325cc --- /dev/null +++ b/my_docs/22/star_mtg_22/themes/beamerfontthemeTACC16.sty @@ -0,0 +1,21 @@ +% Copyright 2003 by Till Tantau +% +% This program can be redistributed and/or modified under the terms +% of the GNU Public License, version 2. + +\mode +\setbeamerfont{title}{parent=structure,size=\LARGE,series=\bfseries} +\setbeamerfont{author}{parent=structure,size=\large, series=\normalfont} +\setbeamerfont{frametitle}{parent=structure,size=\LARGE,series=\bfseries} +\setbeamerfont{framesubtitle}{parent=frametitle,size=\small} + +%\usefonttheme{professionalfonts} % using non standard fonts for beamer +%\usefonttheme{serif} % default family is serif +%\usepackage{fontspec} +%\setmainfont{Century Gothic} + +%\usepackage{fontspec} +\usepackage{libertine} + +\mode + diff --git a/my_docs/22/star_mtg_22/themes/beamerinnerthemeTACC16.sty b/my_docs/22/star_mtg_22/themes/beamerinnerthemeTACC16.sty new file mode 100644 index 000000000..f7f454e1d --- /dev/null +++ b/my_docs/22/star_mtg_22/themes/beamerinnerthemeTACC16.sty @@ -0,0 +1,11 @@ +\mode + +\setbeamertemplate{itemize item}[triangle] +\setbeamertemplate{itemize subitem}[triangle] +\setbeamertemplate{itemize subsubitem}[triangle] +\setbeamertemplate{section in toc}{$\bullet$\hskip.5em\inserttocsection} +%\setbeamertemplate{subsection in toc}{} +\setbeamertemplate{subsubsection in toc}{} + +\mode + diff --git a/my_docs/22/star_mtg_22/themes/beamerouterthemeTACC16-169.sty b/my_docs/22/star_mtg_22/themes/beamerouterthemeTACC16-169.sty new file mode 100644 index 000000000..c62f9ed04 --- /dev/null +++ b/my_docs/22/star_mtg_22/themes/beamerouterthemeTACC16-169.sty @@ -0,0 +1,247 @@ +% Copyright 2003 by Till Tantau +% +% This program can be redistributed and/or modified under the terms +% of the GNU Public License, version 2. + +\mode + +\usepackage{xcolor} +\usepackage{graphicx} +\usepackage{etoolbox} + +\pgfdeclareimage[width=\paperwidth]{titlebackground}{./figures/master169.png} +\pgfdeclareimage[width=\paperwidth]{background}{./figures/secondary169.png} + +\setbeamertemplate{background canvas}{% + \ifnum\c@framenumber=1% + \begin{picture}(0,0) + \put(-0.15,-250){% + \pgfuseimage{titlebackground} + } + %\put(0,-130.7){% + + %\begin{minipage}[b][45mm][t]{\textwidth}%{226mm} + %\begin{center} + % \usebeamerfont{title}{\MakeTextUppercase{\inserttitle}\par} + %\vspace{2ex} + %\usebeamerfont{author}{\insertauthor} + % \end{center} + %\end{minipage} + %} + \end{picture} + % On title page + \else% + % Other frames background + \begin{picture}(0,0) + \put(-0.15,-255.55){% + \pgfuseimage{background} + } + \end{picture} + \fi% +} + + +\setbeamertemplate{title page}{ +\vspace{40pt} +\begin{center} +\usebeamerfont{title} {\huge \inserttitle}\par +\vspace{4ex} +\usebeamerfont{author} { + \insertauthor +}\par +\vspace{2ex} +\usebeamerfont{institute}{ + \insertinstitute +} \par +\vspace{2ex} +\usebeamerfont{date}{ + \insertdate +} +\end{center} +} + + +\setbeamertemplate{frametitle}[default][center] +\setbeamertemplate{frametitle}{ + \makeatletter + \regexpatchcmd{\insertframetitle} + {(\c{usebeamertemplate}.*)\c{fi}} + {\c{NoCaseChange}\cB\{\1\cE\}\c{fi}} + {}{}% + \makeatother + \vskip1ex + \insertframetitle +} + +% Here we define what appears at the bottom of each slide: the "footline". +\setbeamertemplate{footline}{% + \leavevmode% + + % Horizontal line dividing the rest of the slide from the footer? + % hrule goes all the way across... + % \hrule height.3pt% + % With \rule, you can specify the thickness + % \rule[raise-height]{width}{thickness} + % \hspace{.025\textwidth}\rule{.95\textwidth}{.5pt} + + \hbox{% + \ifnum \thepage>1 + % On the left half of the footer, insert the TACC of + \begin{minipage}{.2\textwidth}% + \hskip .05\textwidth%Give horizontal space else this will set on the left edge of the slide! + % \includegraphics[width=.8\textwidth]{TACC_logo.png} + \end{minipage} + + + \begin{minipage}{\textwidth}% + % \vskip .023\textheight% + \raggedleft% + \setlength{\rightskip}{\textwidth} + \hbox{% + \begin{beamercolorbox}[wd=0.7\textwidth,ht=2.25ex,dp=1ex,left]{author in head/foot}% + \insertshorttitle{} \hskip .01\textwidth | \hskip .01\textwidth \insertdate{} \hskip .01\textwidth | \hskip .01\textwidth \insertframenumber{} + \end{beamercolorbox}% + } + + % + % If we are not on the first page, insert a page number + % For some reason, insertframenumber is buggy when you have fragile + % slides with verbatim environments in them... it tends to skip numbers + % for some reason! On the other hand, the pagenumber is incremented + % for *every* slide, including transition slides... + % \hfill\includegraphics[width=\textwidth]{tacc_ut.png} + \end{minipage}% + \begin{minipage}{.05\textwidth}% + \end{minipage}% + \fi %\thepage>1 + }% + \vskip .023\textheight% + +} + + + + +\ifTACCheadernav + +\usesectionheadtemplate +{\hfill\insertsectionhead} +{\hfill\color{fg!50!bg}\insertsectionhead} + +% Head +\ifbeamer@compress + +% Here we define how the top of the frame looks, the "headline". +\setbeamertemplate{headline} +{% + \ifnum \thepage>1 + \leavevmode% + \begin{beamercolorbox}[wd=.5\paperwidth,ht=2.5ex,dp=1.125ex]{% + section in head/foot}% + \insertsectionnavigationhorizontal{.5\paperwidth}{\hskip0pt plus1filll}{}% + \end{beamercolorbox}% + \begin{beamercolorbox}[wd=.5\paperwidth,ht=2.5ex,dp=1.125ex]{% + subsection in head/foot}% + \insertsubsectionnavigationhorizontal{% + .5\paperwidth}{}{\hskip0pt plus1filll}% + \end{beamercolorbox}% + \fi %\thepage>1 +} + +\else% Not compressed + +\setbeamertemplate{headline} +{% + \ifnum \thepage>1 + \leavevmode% + \@tempdimb=2.4375ex% + \ifnum\beamer@subsectionmax<\beamer@sectionmax% + \multiply\@tempdimb by\beamer@sectionmax% + \else% + \multiply\@tempdimb by\beamer@subsectionmax% + \fi% + \ifdim\@tempdimb>0pt% + \advance\@tempdimb by 1.125ex% + \begin{beamercolorbox}[wd=.5\paperwidth,ht=\@tempdimb]{% + section in head/foot}% + \vbox to\@tempdimb{\vfil\insertsectionnavigation{.5\paperwidth}\vfil}% + \end{beamercolorbox}% + \begin{beamercolorbox}[wd=.5\paperwidth,ht=\@tempdimb]{% + subsection in head/foot}% + \vbox to\@tempdimb{\vfil\insertsubsectionnavigation{.5\paperwidth}\vfil}% + \end{beamercolorbox}% + \fi% + \fi % \thepage>1 +} + +\fi % end if compressed +\fi % TACCheadernav + + +\ifTACCheadertree + +\setbeamertemplate{headline} +{ + \begin{beamercolorbox}[wd=\paperwidth,colsep=1.5pt]{upper separation line head} + \end{beamercolorbox} + % + % Place short title + % + \begin{beamercolorbox}[wd=\paperwidth,ht=2.5ex,dp=1.125ex,% + leftskip=.3cm,rightskip=.3cm plus1fil]{title in head/foot} + \usebeamerfont{title in head/foot}\insertshorttitle + \end{beamercolorbox} + + % + % Place section + % + \begin{beamercolorbox}[wd=\paperwidth,ht=2.5ex,dp=1.125ex,% + leftskip=.3cm,rightskip=.3cm plus1fil]{section in head/foot} + \usebeamerfont{section in head/foot}% + %\ifbeamer@tree@showhooks + \setbox\beamer@tempbox=\hbox{\insertsectionhead}% + \ifdim\wd\beamer@tempbox>1pt% + \hskip2pt\raise1.9pt\hbox{\vrule width0.4pt height1.875ex\vrule width 5pt height0.4pt}% + \hskip1pt% + \fi + \insertsectionhead + \end{beamercolorbox} + +% +% Place subsection +% +\begin{beamercolorbox}[wd=\paperwidth,ht=2.5ex,dp=1.125ex,% + leftskip=.3cm,rightskip=.3cm plus1fil]{subsection in head/foot} + \usebeamerfont{subsection in head/foot}% + %\ifbeamer@tree@showhooks + \setbox\beamer@tempbox=\hbox{\insertsubsectionhead}% + \ifdim\wd\beamer@tempbox>1pt% + \hskip9.4pt\raise1.9pt\hbox{\vrule width0.4pt height1.875ex\vrule width 5pt height0.4pt}% + \hskip1pt% + \fi + \insertsubsectionhead +\end{beamercolorbox} + +% +% Place final separation box +% + \begin{beamercolorbox}[wd=\paperwidth,colsep=1.5pt + ]{lower separation line head} + \end{beamercolorbox} + + % + % Another matching rule which helps to frame the content + % + \hspace{.025\textwidth}\rule{.95\textwidth}{.5pt} +} +\fi % TACCheadertree + + +% The following command suppresses all navigation symbols. This is +% necessary in the TACC theme, since it overlaps where we want the +% logo to be. +\setbeamertemplate{navigation symbols}{} + + +\mode + diff --git a/my_docs/22/star_mtg_22/themes/beamerouterthemeTACC16.sty b/my_docs/22/star_mtg_22/themes/beamerouterthemeTACC16.sty new file mode 100644 index 000000000..c5b178018 --- /dev/null +++ b/my_docs/22/star_mtg_22/themes/beamerouterthemeTACC16.sty @@ -0,0 +1,247 @@ +% Copyright 2003 by Till Tantau +% +% This program can be redistributed and/or modified under the terms +% of the GNU Public License, version 2. + +\mode + +\usepackage{xcolor} +\usepackage{graphicx} +\usepackage{etoolbox} + +\pgfdeclareimage[width=\paperwidth]{titlebackground}{master.jpg} +\pgfdeclareimage[width=\paperwidth]{background}{secondary.jpg} + +\setbeamertemplate{background canvas}{% + \ifnum\c@framenumber=1% + \begin{picture}(0,0) + \put(0,-273){% + \pgfuseimage{titlebackground} + } + %\put(0,-130.7){% + + %\begin{minipage}[b][45mm][t]{\textwidth}%{226mm} + %\begin{center} + % \usebeamerfont{title}{\MakeTextUppercase{\inserttitle}\par} + %\vspace{2ex} + %\usebeamerfont{author}{\insertauthor} + % \end{center} + %\end{minipage} + %} + \end{picture} + % On title page + \else% + % Other frames background + \begin{picture}(0,0) + \put(0,-273){% + \pgfuseimage{background} + } + \end{picture} + \fi% +} + + +\setbeamertemplate{title page}{ +\vspace{40pt} +\begin{center} +\usebeamerfont{title} {\huge \inserttitle}\par +\vspace{4ex} +\usebeamerfont{author} { + \insertauthor +}\par +\vspace{2ex} +\usebeamerfont{institute}{ + \insertinstitute +} \par +\vspace{2ex} +\usebeamerfont{date}{ + \insertdate +} +\end{center} +} + + +\setbeamertemplate{frametitle}[default][center] +\setbeamertemplate{frametitle}{ + \makeatletter + \regexpatchcmd{\insertframetitle} + {(\c{usebeamertemplate}.*)\c{fi}} + {\c{NoCaseChange}\cB\{\1\cE\}\c{fi}} + {}{}% + \makeatother + \vskip1ex + \insertframetitle +} + +% Here we define what appears at the bottom of each slide: the "footline". +\setbeamertemplate{footline}{% + \leavevmode% + + % Horizontal line dividing the rest of the slide from the footer? + % hrule goes all the way across... + % \hrule height.3pt% + % With \rule, you can specify the thickness + % \rule[raise-height]{width}{thickness} + % \hspace{.025\textwidth}\rule{.95\textwidth}{.5pt} + + \hbox{% + \ifnum \thepage>1 + % On the left half of the footer, insert the TACC of + \begin{minipage}{.2\textwidth}% + \hskip .05\textwidth%Give horizontal space else this will set on the left edge of the slide! + % \includegraphics[width=.8\textwidth]{figures/TACC_logo.png} + \end{minipage} + + + \begin{minipage}{\textwidth}% + % \vskip .023\textheight% + \raggedleft% + \setlength{\rightskip}{\textwidth} + \hbox{% + \begin{beamercolorbox}[wd=0.7\textwidth,ht=2.25ex,dp=1ex,left]{author in head/foot}% + \insertshorttitle{} \hskip .01\textwidth | \hskip .01\textwidth \insertdate{} \hskip .01\textwidth | \hskip .01\textwidth \insertframenumber{} + \end{beamercolorbox}% + } + + % + % If we are not on the first page, insert a page number + % For some reason, insertframenumber is buggy when you have fragile + % slides with verbatim environments in them... it tends to skip numbers + % for some reason! On the other hand, the pagenumber is incremented + % for *every* slide, including transition slides... + % \hfill\includegraphics[width=\textwidth]{figures/tacc_ut.png} + \end{minipage}% + \begin{minipage}{.05\textwidth}% + \end{minipage}% + \fi %\thepage>1 + }% + \vskip .023\textheight% + +} + + + + +\ifTACCheadernav + +\usesectionheadtemplate +{\hfill\insertsectionhead} +{\hfill\color{fg!50!bg}\insertsectionhead} + +% Head +\ifbeamer@compress + +% Here we define how the top of the frame looks, the "headline". +\setbeamertemplate{headline} +{% + \ifnum \thepage>1 + \leavevmode% + \begin{beamercolorbox}[wd=.5\paperwidth,ht=2.5ex,dp=1.125ex]{% + section in head/foot}% + \insertsectionnavigationhorizontal{.5\paperwidth}{\hskip0pt plus1filll}{}% + \end{beamercolorbox}% + \begin{beamercolorbox}[wd=.5\paperwidth,ht=2.5ex,dp=1.125ex]{% + subsection in head/foot}% + \insertsubsectionnavigationhorizontal{% + .5\paperwidth}{}{\hskip0pt plus1filll}% + \end{beamercolorbox}% + \fi %\thepage>1 +} + +\else% Not compressed + +\setbeamertemplate{headline} +{% + \ifnum \thepage>1 + \leavevmode% + \@tempdimb=2.4375ex% + \ifnum\beamer@subsectionmax<\beamer@sectionmax% + \multiply\@tempdimb by\beamer@sectionmax% + \else% + \multiply\@tempdimb by\beamer@subsectionmax% + \fi% + \ifdim\@tempdimb>0pt% + \advance\@tempdimb by 1.125ex% + \begin{beamercolorbox}[wd=.5\paperwidth,ht=\@tempdimb]{% + section in head/foot}% + \vbox to\@tempdimb{\vfil\insertsectionnavigation{.5\paperwidth}\vfil}% + \end{beamercolorbox}% + \begin{beamercolorbox}[wd=.5\paperwidth,ht=\@tempdimb]{% + subsection in head/foot}% + \vbox to\@tempdimb{\vfil\insertsubsectionnavigation{.5\paperwidth}\vfil}% + \end{beamercolorbox}% + \fi% + \fi % \thepage>1 +} + +\fi % end if compressed +\fi % TACCheadernav + + +\ifTACCheadertree + +\setbeamertemplate{headline} +{ + \begin{beamercolorbox}[wd=\paperwidth,colsep=1.5pt]{upper separation line head} + \end{beamercolorbox} + % + % Place short title + % + \begin{beamercolorbox}[wd=\paperwidth,ht=2.5ex,dp=1.125ex,% + leftskip=.3cm,rightskip=.3cm plus1fil]{title in head/foot} + \usebeamerfont{title in head/foot}\insertshorttitle + \end{beamercolorbox} + + % + % Place section + % + \begin{beamercolorbox}[wd=\paperwidth,ht=2.5ex,dp=1.125ex,% + leftskip=.3cm,rightskip=.3cm plus1fil]{section in head/foot} + \usebeamerfont{section in head/foot}% + %\ifbeamer@tree@showhooks + \setbox\beamer@tempbox=\hbox{\insertsectionhead}% + \ifdim\wd\beamer@tempbox>1pt% + \hskip2pt\raise1.9pt\hbox{\vrule width0.4pt height1.875ex\vrule width 5pt height0.4pt}% + \hskip1pt% + \fi + \insertsectionhead + \end{beamercolorbox} + +% +% Place subsection +% +\begin{beamercolorbox}[wd=\paperwidth,ht=2.5ex,dp=1.125ex,% + leftskip=.3cm,rightskip=.3cm plus1fil]{subsection in head/foot} + \usebeamerfont{subsection in head/foot}% + %\ifbeamer@tree@showhooks + \setbox\beamer@tempbox=\hbox{\insertsubsectionhead}% + \ifdim\wd\beamer@tempbox>1pt% + \hskip9.4pt\raise1.9pt\hbox{\vrule width0.4pt height1.875ex\vrule width 5pt height0.4pt}% + \hskip1pt% + \fi + \insertsubsectionhead +\end{beamercolorbox} + +% +% Place final separation box +% + \begin{beamercolorbox}[wd=\paperwidth,colsep=1.5pt + ]{lower separation line head} + \end{beamercolorbox} + + % + % Another matching rule which helps to frame the content + % + \hspace{.025\textwidth}\rule{.95\textwidth}{.5pt} +} +\fi % TACCheadertree + + +% The following command suppresses all navigation symbols. This is +% necessary in the TACC theme, since it overlaps where we want the +% logo to be. +\setbeamertemplate{navigation symbols}{} + + +\mode + diff --git a/my_docs/22/star_mtg_22/themes/beamerthemeTACC16-169.sty b/my_docs/22/star_mtg_22/themes/beamerthemeTACC16-169.sty new file mode 100644 index 000000000..22caf9a05 --- /dev/null +++ b/my_docs/22/star_mtg_22/themes/beamerthemeTACC16-169.sty @@ -0,0 +1,38 @@ +%% TACC theme for beamer + +\newif\ifTACCheadernav +\DeclareOption{headernav}{\global\TACCheadernavtrue} + +\newif\ifTACCheadertree +\DeclareOption{headertree}{\global\TACCheadertreetrue} +\ProcessOptions + +\mode + +\makeatletter + \def\beamer@calltheme#1#2#3{% + \def\beamer@themelist{#2} + \@for\beamer@themename:=\beamer@themelist\do + {\usepackage[{#1}]{\beamer@themelocation/#3\beamer@themename}}} + + \def\usefolder#1{ + \def\beamer@themelocation{#1} + } + \def\beamer@themelocation{} + +\usefolder{themes} +\usefonttheme{TACC16} +\useinnertheme{TACC16} +\useoutertheme{TACC16-169} +\usecolortheme{TACC16} + +\mode + + +\newcommand{\event}[1]{% + \makeatletter% + \def\TACC@eventname{#1}% + \makeatother} + +\newcommand{\sectionframe}[1]{\section{#1}\frame{\Large\textbf{#1}}} +\newcommand{\subsectionframe}[1]{\subsection{#1}\frame{\large\textbf{#1}}} diff --git a/my_docs/22/star_mtg_22/themes/beamerthemeTACC16.sty b/my_docs/22/star_mtg_22/themes/beamerthemeTACC16.sty new file mode 100644 index 000000000..750bdd388 --- /dev/null +++ b/my_docs/22/star_mtg_22/themes/beamerthemeTACC16.sty @@ -0,0 +1,26 @@ +%% TACC theme for beamer + +\newif\ifTACCheadernav +\DeclareOption{headernav}{\global\TACCheadernavtrue} + +\newif\ifTACCheadertree +\DeclareOption{headertree}{\global\TACCheadertreetrue} +\ProcessOptions + +\mode + +\usefonttheme{TACC16} +\useinnertheme{TACC16} +\useoutertheme{TACC16} +\usecolortheme{TACC16} + +\mode + + +\newcommand{\event}[1]{% + \makeatletter% + \def\TACC@eventname{#1}% + \makeatother} + +\newcommand{\sectionframe}[1]{\section{#1}\frame{\Large\textbf{#1}}} +\newcommand{\subsectionframe}[1]{\subsection{#1}\frame{\large\textbf{#1}}} diff --git a/my_docs/22/star_mtg_22/themes/example.pdf b/my_docs/22/star_mtg_22/themes/example.pdf new file mode 100644 index 000000000..add373eee Binary files /dev/null and b/my_docs/22/star_mtg_22/themes/example.pdf differ diff --git a/my_docs/22/star_mtg_22/themes/license.tex b/my_docs/22/star_mtg_22/themes/license.tex new file mode 100644 index 000000000..74ff86759 --- /dev/null +++ b/my_docs/22/star_mtg_22/themes/license.tex @@ -0,0 +1,14 @@ + +\begin{frame}{License} +\footnotesize +\textcopyright The University of Texas at Austin, \the\year\\ +\vspace{0.5 cm} +This work is licensed under the Creative Commons Attribution Non-Commercial 3.0 Unported License. To view a copy of this license, +visit http://creativecommons.org/licenses/by-nc/3.0/\\ +\vspace{0.5 cm} +When attributing this work, please use the following text: +"Designing and Administering Large-scale Systems", Texas Advanced Computing Center, \the\year. Available under a Creative Commons Attribution Non-Commercial 3.0 Unported License. +\newline +\newline +\includegraphics[width=1cm]{./figures/cc.png} +\end{frame} \ No newline at end of file diff --git a/my_docs/23/YT_lmod/Lmod-4color@2x.png b/my_docs/23/YT_lmod/Lmod-4color@2x.png deleted file mode 120000 index 47d505dbf..000000000 --- a/my_docs/23/YT_lmod/Lmod-4color@2x.png +++ /dev/null @@ -1 +0,0 @@ -../../beamer/Lmod-4color@2x.png \ No newline at end of file diff --git a/my_docs/23/YT_lmod/Lmod-4color@2x.png b/my_docs/23/YT_lmod/Lmod-4color@2x.png new file mode 100644 index 000000000..4810d74c3 Binary files /dev/null and b/my_docs/23/YT_lmod/Lmod-4color@2x.png differ diff --git a/my_docs/23/YT_lmod/beamercolorthemeTACC.sty b/my_docs/23/YT_lmod/beamercolorthemeTACC.sty deleted file mode 120000 index 8d27e673a..000000000 --- a/my_docs/23/YT_lmod/beamercolorthemeTACC.sty +++ /dev/null @@ -1 +0,0 @@ -../../beamer/beamercolorthemeTACC.sty \ No newline at end of file diff --git a/my_docs/23/YT_lmod/beamercolorthemeTACC.sty b/my_docs/23/YT_lmod/beamercolorthemeTACC.sty new file mode 100755 index 000000000..78beb6a4a --- /dev/null +++ b/my_docs/23/YT_lmod/beamercolorthemeTACC.sty @@ -0,0 +1,323 @@ +% Copyright 2003 by Till Tantau . +% +% This program can be redistributed and/or modified under the terms +% of the GNU Public License, version 2. + +\mode + +% I downloaded a gimp color palette from +% http://maururu.net/2007/latex-beamer-color-palette/ +% Which provides rgb values (I think) for several of the +% default beamer themes. You can open this in gimp by +% opening the Palettes dialog, right-clicking anywhere and choosing +% 'Import Palette'. A color in there called 'default added blue' +% appeared to be approximately what I wanted. It had the triple +% of values 141 145 208. If you double-click on this in the +% palette editor it gives you a bunch of information. You can't +% use these values directly to set a color...it just comes out white. +% I think definecolor is expecting something normalized by 255. Yes! + + +% bluish colors +\definecolor{defaddedblue}{rgb}{0.5529,.5686,.8157} % 141,145,208 +\definecolor{defblockheader}{rgb}{.1921,.2235,.6824} % 49,57,174 +\definecolor{flyaddedblue}{rgb}{.5961,.6118,.8431} % 152,156,215 + +% bluish-greys +\definecolor{beetleaddedblue1}{rgb}{.3333,.4039,.6196} % 85 103 158, dark +\definecolor{beetleaddedblue2}{rgb}{.4510,.5098,.7020} % 115 130 179, medium +\definecolor{beetleaddedblue3}{rgb}{.7059,.7255,.7961} % 180 185 203, light (greyest) + +% very light blue-greys +\definecolor{deflightouter1}{rgb}{.7608,.7647,.9020} % 194 195 230, dark +\definecolor{deflightouter2}{rgb}{.8 ,.8039,.9176} % 204 205 234, medium +\definecolor{deflightouter3}{rgb}{.8392,.8431,.9373} % 214 215 239, light + +% reddish colors +\definecolor{flyalertblockheader}{rgb}{.7373,.1294,.1333} % 188 33 34 +\definecolor{flyaddedred}{rgb}{.8667,.5647,.5647}% 221 144 144 +\definecolor{beaverouterframe}{rgb}{.5529,.0980,.0980}% 141 25 25 + +% greens (green is used for 'examples' in beamer) +\definecolor{defexblock}{rgb}{.9098,.9333,.9020} % 232 238 230, light +\definecolor{defaddedgreen}{rgb}{.5412,.6510,.4706} % 138 166 120, medium +\definecolor{defexblockheader}{rgb}{.1686,.3647,.0392} % 43 93 10, dark + +\definecolor{lightexblock}{rgb}{.9137,.9451,.9020} % 233 241 230, light +\definecolor{lightexblockheader}{rgb}{.8235,.8980,.8} % 210 229 204, medium +\definecolor{lightexblockheadertext}{rgb}{.2431,.5098,.0745} % 62 130 19, dark + + +%%% +% Set the normal text color +%%% +\setbeamercolor{normal text}{fg=black,bg=white} + +%%% +% Set the alerted text color +%%% +% \setbeamercolor{alerted text}{fg=red} +\setbeamercolor{alerted text}{fg=red!50!black} % half black/half red for green bg +% \setbeamercolor{alerted text}{fg=beaverouterframe} +% \setbeamercolor{alerted text}{fg=defblockheader} % doesn't stand out enough + + +% Set the 'example' text +\setbeamercolor{example text}{fg=green!50!black} + +\setbeamercolor{structure}{fg=black} + +\setbeamercolor{background canvas}{parent=normal text} +\setbeamercolor{background}{parent=background canvas} + +\setbeamercolor{palette primary}{use=structure,fg=structure.fg} +\setbeamercolor{palette secondary}{use=structure,fg=structure.fg!75!black} +\setbeamercolor{palette tertiary}{use=structure,fg=structure.fg!50!black} +\setbeamercolor{palette quaternary}{fg=black} + +\setbeamercolor{palette sidebar primary}{use=normal text,fg=normal text.fg} +\setbeamercolor{palette sidebar secondary}{use=structure,fg=structure.fg} +\setbeamercolor{palette sidebar tertiary}{use=normal text,fg=normal text.fg} +\setbeamercolor{palette sidebar quaternary}{use=structure,fg=structure.fg} + +\setbeamercolor{math text}{} +\setbeamercolor{math text inlined}{parent=math text} +\setbeamercolor{math text displayed}{parent=math text} + +\setbeamercolor{normal text in math text}{} + +\setbeamercolor{local structure}{parent=structure} + +\setbeamercolor{titlelike}{parent=structure} + +\setbeamercolor{title}{parent=titlelike} +\setbeamercolor{title in head/foot}{parent=palette quaternary} +\setbeamercolor{title in sidebar}{parent=palette sidebar quaternary} + +\setbeamercolor{subtitle}{parent=title} + +\setbeamercolor{author}{} +\setbeamercolor{author in head/foot}{parent=palette primary} +\setbeamercolor{author in sidebar}{use=palette sidebar tertiary,fg=palette sidebar tertiary.fg} + +\setbeamercolor{institute}{} +\setbeamercolor{institute in head/foot}{parent=palette tertiary} +\setbeamercolor{institute in sidebar}{use=palette sidebar tertiary,fg=palette sidebar tertiary.fg} + +\setbeamercolor{date}{} +\setbeamercolor{date in head/foot}{parent=palette secondary} +\setbeamercolor{date in sidebar}{use=palette sidebar tertiary,fg=palette sidebar tertiary.fg} + +\setbeamercolor{titlegraphic}{} + +\setbeamercolor{part name}{} +\setbeamercolor{part title}{parent=titlelike} + +\setbeamercolor{section in toc}{parent=structure} +\setbeamercolor{section in toc shaded}{parent=section in toc} +\setbeamercolor{section in head/foot}{parent=palette tertiary} +\setbeamercolor{section in sidebar}{parent=palette sidebar secondary} +\setbeamercolor{section in sidebar shaded}{use=section in sidebar,fg=section in sidebar.fg!40!bg} +\setbeamercolor{section number projected}{parent=item projected} + +\setbeamercolor{subsection in toc}{} +\setbeamercolor{subsection in toc shaded}{parent=subsection in toc} +\setbeamercolor{subsection in head/foot}{parent=palette secondary} +\setbeamercolor{subsection in sidebar}{parent=palette sidebar primary} +\setbeamercolor{subsection in sidebar shaded}{use=subsection in sidebar,fg=subsection in sidebar.fg!40!bg} +\setbeamercolor{subsection number projected}{parent={subitem projected}} + +\setbeamercolor{subsubsection in toc}{parent=subsection in toc} +\setbeamercolor{subsubsection in toc shaded}{parent=subsubsection in toc} +\setbeamercolor{subsubsection in head/foot}{parent=subsection in head/foot} +\setbeamercolor{subsubsection in sidebar}{parent=subsection in sidebar} +\setbeamercolor{subsubsection in sidebar shaded}{parent=subsection in sidebar shaded} +\setbeamercolor{subsubsection number projected}{parent=subsubitem projected} + +\setbeamercolor{headline}{} +\setbeamercolor{footline}{} + +\setbeamercolor{sidebar}{} +\setbeamercolor{sidebar left}{parent=sidebar} +\setbeamercolor{sidebar right}{parent=sidebar} + +\setbeamercolor{logo}{parent=palette secondary} + +\setbeamercolor{frametitle}{parent=titlelike} +\setbeamercolor{framesubtitle}{parent=frametitle} + +\setbeamercolor{frametitle right}{parent=frametitle} + +\setbeamercolor{caption}{} +\setbeamercolor{caption name}{parent=structure} + +\setbeamercolor{button}{use=local structure,bg=local structure.fg!50!bg,fg=white} +\setbeamercolor{button border}{use=button,fg=button.bg} +\setbeamercolor{navigation symbols}{use=structure,fg=structure.fg!40!bg} +\setbeamercolor{navigation symbols dimmed}{use=structure,fg=structure.fg!20!bg} +\setbeamercolor{mini frame}{parent=section in head/foot} + +% Color expressions are defined in the xcolor package +% +% Ex: Mixture of 40% green, 60% yellow: green!40!yellow +% +% The complement of any color can be obtained by prepending +% a minus sign: -green!40!yellow +% +% One can also combine up to three colors (in differing proportions) +% using the rgb command. For example, the following command combines +% 3 parts of the first color, with 2 parts of the second, and one part +% "red" +% +%\color{rgb:-green!40!yellow,3;green!40!yellow,2;red,1} +% Unfortunately, I don't think this works as an argument to setbeamercolor... +% "Orange" bg=green!30!yellow!30!red +% close to burnt orange: red!75!green +% lightgray is a color, but gray!25!white looks better +% +% A nice pair of greens +% (dark, a little too dark to be under black text...) -red!75!green!50!blue!25 +% (light) -red!75!green!50!blue!25!gray +% +% Some colors are only available via options to the xcolor package, eg. +% x11names,DarkOliveGreen4 +% svgnames, Chartreuse +% dvipsnames, ForestGreen +% +% but beamer does not seem to have any of these. +% +% The base color names which are always available are: +% black +% blue +% brown +% cyan +% darkgray +% gray +% green +% lightgray +% lime +% magenta +% olive +% orange +% pink +% purple +% red +% teal +% violet +% white +% yellow + +% From the beamer user guide, pg. 167 +% Inner color themes only specify the colors of elements used in inner +% themes. Most noticably, they specify the colors used for blocks. +% ... + +% Example color definition +% beamercolorthemedefault.sty:\definecolor{beamer@blendedblue}{rgb}{0.2,0.2,0.7} +% beamercolorthemedefault.sty:\setbeamercolor{structure}{fg=beamer@blendedblue} + +% The greens +% \setbeamercolor{block body}{bg=-red!75!green!50!blue!25!gray} +% \setbeamercolor{block title}{parent=structure,bg=-red!75!green!50!blue!25,fg=-red!75!green!50!blue!25!gray} + +%%% +% Set the block body and title background/foreground colors +%%% +% \setbeamercolor{block body}{bg=flyaddedblue} +% \setbeamercolor{block title}{bg=defblockheader,fg=flyaddedblue} + +% Purplish blues, too dark overall +% \setbeamercolor{block body}{bg=beetleaddedblue3} +% \setbeamercolor{block title}{bg=beetleaddedblue2,fg=beetleaddedblue3} + +% Very light blue greys +% 1. Not enough contrast +% \setbeamercolor{block body}{bg=deflightouter3} +% \setbeamercolor{block title}{bg=deflightouter2,fg=deflightouter3} + +% 2. Not enough contrast +% \setbeamercolor{block body}{bg=deflightouter3} +% \setbeamercolor{block title}{bg=deflightouter1,fg=deflightouter3} + +% 3. Combination of deflightouter and fly. The block bg is +% lighter than the all-beetle color scheme I previously thought was best. +% Currently I like this one the best +\setbeamercolor{block body}{bg=deflightouter3} +\setbeamercolor{block title}{bg=beetleaddedblue2,fg=deflightouter3} + +% 4. Greens. Looks like a highlighter. I don't really trust greens +% on projectors... It's almost too bright/hurts your eyes. +% \setbeamercolor{block body}{bg=defexblock} +% \setbeamercolor{block title}{bg=defaddedgreen,fg=defexblock} + +% This looks pretty good ... it's similar to the greens we had before +% but should be lighter. The blocks are just a little too "mint" colored +% though... +% \setbeamercolor{block body}{bg=defexblock} +% \setbeamercolor{block title}{bg=defexblockheader,fg=defexblock} + +% Pea Soup! +%\setbeamercolor{block body}{bg=defaddedgreen} +%\setbeamercolor{block title}{bg=defexblockheader,fg=defaddedgreen} + + +% Changing these didn't seem to do anything...I had to change the +% 'alerted text' color instead +\setbeamercolor{block body alerted}{} +\setbeamercolor{block body example}{} +\setbeamercolor{block title alerted}{parent=alerted text} +\setbeamercolor{block title example}{parent=example text} + +\setbeamercolor{item}{parent=local structure} +\setbeamercolor{subitem}{parent=item} +\setbeamercolor{subsubitem}{parent=subitem} + +\setbeamercolor{item projected}{parent=item,use=item,fg=white,bg=item.fg} +\setbeamercolor{subitem projected}{parent=item projected} +\setbeamercolor{subsubitem projected}{parent=subitem projected} + +\setbeamercolor{enumerate item}{parent=item} +\setbeamercolor{enumerate subitem}{parent=subitem} +\setbeamercolor{enumerate subsubitem}{parent=subsubitem} + +\setbeamercolor{itemize item}{parent=item} +\setbeamercolor{itemize subitem}{parent=subitem} +\setbeamercolor{itemize subsubitem}{parent=subsubitem} + +\setbeamercolor{itemize/enumerate body}{} +\setbeamercolor{itemize/enumerate subbody}{} +\setbeamercolor{itemize/enumerate subsubbody}{} + +\setbeamercolor{description item}{parent=item} + +\setbeamercolor{bibliography item}{parent=item} + +\setbeamercolor{bibliography entry author}{use=structure,fg=structure.fg} +\setbeamercolor{bibliography entry title}{use=normal text,fg=normal text.fg} +\setbeamercolor{bibliography entry location}{use=structure,fg=structure.fg!65!bg} +\setbeamercolor{bibliography entry note}{use=structure,fg=structure.fg!65!bg} + +\setbeamercolor{separation line}{} + +\setbeamercolor{upper separation line head}{parent=separation line} +\setbeamercolor{middle separation line head}{parent=separation line} +\setbeamercolor{lower separation line head}{parent=separation line} + +\setbeamercolor{upper separation line foot}{parent=separation line} +\setbeamercolor{middle separation line foot}{parent=separation line} +\setbeamercolor{lower separation line foot}{parent=separation line} + +\setbeamercolor{abstract}{} +\setbeamercolor{abstract title}{parent=structure} + +\setbeamercolor{verse}{} + +\setbeamercolor{quotation}{} +\setbeamercolor{quote}{parent=quotation} + +\setbeamercolor{page number in head/foot}{fg=fg!50!bg} + +\setbeamercolor{qed symbol}{parent=structure} + +\mode + diff --git a/my_docs/23/YT_lmod/beamercolorthemeTACC16.sty b/my_docs/23/YT_lmod/beamercolorthemeTACC16.sty deleted file mode 120000 index 58415801b..000000000 --- a/my_docs/23/YT_lmod/beamercolorthemeTACC16.sty +++ /dev/null @@ -1 +0,0 @@ -../../beamer/beamercolorthemeTACC16.sty \ No newline at end of file diff --git a/my_docs/23/YT_lmod/beamercolorthemeTACC16.sty b/my_docs/23/YT_lmod/beamercolorthemeTACC16.sty new file mode 100755 index 000000000..779dde91f --- /dev/null +++ b/my_docs/23/YT_lmod/beamercolorthemeTACC16.sty @@ -0,0 +1,192 @@ +% Copyright 2003 by Till Tantau . +% +% This program can be redistributed and/or modified under the terms +% of the GNU Public License, version 2. + +\mode + +\usepackage{textcase,regexpatch} + +\setbeamertemplate{blocks}[rounded][shadow=true] + + +\definecolor{TACCred}{RGB}{180,13,29} +\definecolor{TACCorange}{RGB}{210,104,43} +\definecolor{TACCblue}{RGB}{108, 134, 191} +\definecolor{TACCgreen}{RGB}{23,106,70} + +% I downloaded a gimp color palette from +% http://maururu.net/2007/latex-beamer-color-palette/ +% Which provides rgb values (I think) for several of the +% default beamer themes. You can open this in gimp by +% opening the Palettes dialog, right-clicking anywhere and choosing +% 'Import Palette'. A color in there called 'default added blue' +% appeared to be approximately what I wanted. It had the triple +% of values 141 145 208. If you double-click on this in the +% palette editor it gives you a bunch of information. You can't +% use these values directly to set a color...it just comes out white. +% I think definecolor is expecting something normalized by 255. Yes! + + +%%% +% Set the normal text color +%%% +\setbeamercolor{normal text}{fg=black} %,bg=white} +\setbeamercolor{example text}{fg=TACCgreen} +\setbeamercolor{alerted text}{fg=TACCorange} + + +\setbeamercolor{structure}{fg=black} +%\setbeamercolor{structure}{fg=black} + +\setbeamercolor{background canvas}{parent=normal text} +\setbeamercolor{background}{parent=background canvas} + +\setbeamercolor{palette primary}{use=structure,fg=structure.fg} +\setbeamercolor{palette secondary}{use=structure,fg=structure.fg!75!black} +\setbeamercolor{palette tertiary}{use=structure,fg=structure.fg!50!black} +\setbeamercolor{palette quaternary}{fg=black} + +\setbeamercolor{palette sidebar primary}{use=normal text,fg=normal text.fg} +\setbeamercolor{palette sidebar secondary}{use=structure,fg=structure.fg} +\setbeamercolor{palette sidebar tertiary}{use=normal text,fg=normal text.fg} +\setbeamercolor{palette sidebar quaternary}{use=structure,fg=structure.fg} + +\setbeamercolor{math text}{} +\setbeamercolor{math text inlined}{parent=math text} +\setbeamercolor{math text displayed}{parent=math text} + +\setbeamercolor{normal text in math text}{} + +\setbeamercolor{local structure}{parent=structure} + +\setbeamercolor{titlelike}{parent=structure} + +\setbeamercolor{title}{parent=titlelike} +\setbeamercolor{title in head/foot}{parent=palette quaternary} +\setbeamercolor{title in sidebar}{parent=palette sidebar quaternary} + +\setbeamercolor{subtitle}{parent=title} + +\setbeamercolor{author}{} +\setbeamercolor{author in head/foot}{parent=palette primary} +\setbeamercolor{author in sidebar}{use=palette sidebar tertiary,fg=palette sidebar tertiary.fg} + +\setbeamercolor{institute}{} +\setbeamercolor{institute in head/foot}{parent=palette tertiary} +\setbeamercolor{institute in sidebar}{use=palette sidebar tertiary,fg=palette sidebar tertiary.fg} + +\setbeamercolor{date}{} +\setbeamercolor{date in head/foot}{parent=palette secondary} +\setbeamercolor{date in sidebar}{use=palette sidebar tertiary,fg=palette sidebar tertiary.fg} + +\setbeamercolor{titlegraphic}{} + +\setbeamercolor{part name}{} +\setbeamercolor{part title}{parent=titlelike} + +\setbeamercolor{section in toc}{parent=structure} +\setbeamercolor{section in toc shaded}{parent=section in toc} +\setbeamercolor{section in head/foot}{parent=palette tertiary} +\setbeamercolor{section in sidebar}{parent=palette sidebar secondary} +\setbeamercolor{section in sidebar shaded}{use=section in sidebar,fg=section in sidebar.fg!40!bg} +\setbeamercolor{section number projected}{parent=item projected} + +\setbeamercolor{subsection in toc}{} +\setbeamercolor{subsection in toc shaded}{parent=subsection in toc} +\setbeamercolor{subsection in head/foot}{parent=palette secondary} +\setbeamercolor{subsection in sidebar}{parent=palette sidebar primary} +\setbeamercolor{subsection in sidebar shaded}{use=subsection in sidebar,fg=subsection in sidebar.fg!40!bg} +\setbeamercolor{subsection number projected}{parent={subitem projected}} + +\setbeamercolor{subsubsection in toc}{parent=subsection in toc} +\setbeamercolor{subsubsection in toc shaded}{parent=subsubsection in toc} +\setbeamercolor{subsubsection in head/foot}{parent=subsection in head/foot} +\setbeamercolor{subsubsection in sidebar}{parent=subsection in sidebar} +\setbeamercolor{subsubsection in sidebar shaded}{parent=subsection in sidebar shaded} +\setbeamercolor{subsubsection number projected}{parent=subsubitem projected} + +\setbeamercolor{headline}{} +\setbeamercolor{footline}{} + +\setbeamercolor{sidebar}{} +\setbeamercolor{sidebar left}{parent=sidebar} +\setbeamercolor{sidebar right}{parent=sidebar} + +\setbeamercolor{logo}{parent=palette secondary} + +\setbeamercolor{frametitle}{parent=titlelike} +\setbeamercolor{framesubtitle}{parent=frametitle} + +\setbeamercolor{frametitle right}{parent=frametitle} + +\setbeamercolor{caption}{} +\setbeamercolor{caption name}{parent=structure} + +\setbeamercolor{button}{use=local structure,bg=local structure.fg!50!bg,fg=white} +\setbeamercolor{button border}{use=button,fg=button.bg} +\setbeamercolor{navigation symbols}{use=structure,fg=structure.fg!40!bg} +\setbeamercolor{navigation symbols dimmed}{use=structure,fg=structure.fg!20!bg} +\setbeamercolor{mini frame}{parent=section in head/foot} + +\setbeamercolor{block body}{fg=black} +\setbeamercolor{block body alerted}{fg=black} +\setbeamercolor{block body example}{fg=black} + +\setbeamercolor{block title}{bg=TACCblue,fg=white} +\setbeamercolor{block title alerted}{bg=TACCred,fg=white} +\setbeamercolor{block title example}{bg=TACCgreen,fg=white} + +\setbeamercolor{item}{parent=local structure} +\setbeamercolor{subitem}{parent=item} +\setbeamercolor{subsubitem}{parent=subitem} + +\setbeamercolor{item projected}{parent=item,use=item,fg=black,bg=item.fg} +\setbeamercolor{subitem projected}{parent=item projected} +\setbeamercolor{subsubitem projected}{parent=subitem projected} + +\setbeamercolor{enumerate item}{parent=item} +\setbeamercolor{enumerate subitem}{parent=subitem} +\setbeamercolor{enumerate subsubitem}{parent=subsubitem} + +\setbeamercolor{itemize item}{parent=item} +\setbeamercolor{itemize subitem}{parent=subitem} +\setbeamercolor{itemize subsubitem}{parent=subsubitem} + +\setbeamercolor{itemize/enumerate body}{} +\setbeamercolor{itemize/enumerate subbody}{} +\setbeamercolor{itemize/enumerate subsubbody}{} + +\setbeamercolor{description item}{parent=item} + +\setbeamercolor{bibliography item}{parent=item} + +\setbeamercolor{bibliography entry author}{use=structure,fg=structure.fg} +\setbeamercolor{bibliography entry title}{use=normal text,fg=normal text.fg} +\setbeamercolor{bibliography entry location}{use=structure,fg=structure.fg!65!bg} +\setbeamercolor{bibliography entry note}{use=structure,fg=structure.fg!65!bg} + +\setbeamercolor{separation line}{} + +\setbeamercolor{upper separation line head}{parent=separation line} +\setbeamercolor{middle separation line head}{parent=separation line} +\setbeamercolor{lower separation line head}{parent=separation line} + +\setbeamercolor{upper separation line foot}{parent=separation line} +\setbeamercolor{middle separation line foot}{parent=separation line} +\setbeamercolor{lower separation line foot}{parent=separation line} + +\setbeamercolor{abstract}{} +\setbeamercolor{abstract title}{parent=structure} + +\setbeamercolor{verse}{} + +\setbeamercolor{quotation}{} +\setbeamercolor{quote}{parent=quotation} + +\setbeamercolor{page number in head/foot}{fg=fg!50!bg} + +\setbeamercolor{qed symbol}{parent=structure} + +\mode + diff --git a/my_docs/23/YT_lmod/beamerfontthemeTACC.sty b/my_docs/23/YT_lmod/beamerfontthemeTACC.sty deleted file mode 120000 index 78e971fb8..000000000 --- a/my_docs/23/YT_lmod/beamerfontthemeTACC.sty +++ /dev/null @@ -1 +0,0 @@ -../../beamer/beamerfontthemeTACC.sty \ No newline at end of file diff --git a/my_docs/23/YT_lmod/beamerfontthemeTACC.sty b/my_docs/23/YT_lmod/beamerfontthemeTACC.sty new file mode 100755 index 000000000..ef9ce1e5e --- /dev/null +++ b/my_docs/23/YT_lmod/beamerfontthemeTACC.sty @@ -0,0 +1,12 @@ +% Copyright 2003 by Till Tantau +% +% This program can be redistributed and/or modified under the terms +% of the GNU Public License, version 2. + +\mode + +\setbeamerfont{frametitle}{parent=structure,size=\LARGE,series=\bfseries} +\setbeamerfont{framesubtitle}{parent=frametitle,size=\small} + +\mode + \ No newline at end of file diff --git a/my_docs/23/YT_lmod/beamerfontthemeTACC16.sty b/my_docs/23/YT_lmod/beamerfontthemeTACC16.sty deleted file mode 120000 index a1f2fa5f9..000000000 --- a/my_docs/23/YT_lmod/beamerfontthemeTACC16.sty +++ /dev/null @@ -1 +0,0 @@ -../../beamer/beamerfontthemeTACC16.sty \ No newline at end of file diff --git a/my_docs/23/YT_lmod/beamerfontthemeTACC16.sty b/my_docs/23/YT_lmod/beamerfontthemeTACC16.sty new file mode 100755 index 000000000..b65271835 --- /dev/null +++ b/my_docs/23/YT_lmod/beamerfontthemeTACC16.sty @@ -0,0 +1,21 @@ +% Copyright 2003 by Till Tantau +% +% This program can be redistributed and/or modified under the terms +% of the GNU Public License, version 2. + +\mode +\setbeamerfont{title}{parent=structure,size=\LARGE,series=\bfseries} +\setbeamerfont{author}{parent=structure,size=\large, series=\normalfont} +\setbeamerfont{frametitle}{parent=structure,size=\LARGE,series=\bfseries} +\setbeamerfont{framesubtitle}{parent=frametitle,size=\small} + +%\usefonttheme{professionalfonts} % using non standard fonts for beamer +%\usefonttheme{serif} % default family is serif +%\usepackage{fontspec} +%\setmainfont{Century Gothic} + +\usepackage{fontspec} +\usepackage{libertine} + +\mode + diff --git a/my_docs/23/YT_lmod/beamerinnerthemeTACC.sty b/my_docs/23/YT_lmod/beamerinnerthemeTACC.sty deleted file mode 120000 index 8d5ae3921..000000000 --- a/my_docs/23/YT_lmod/beamerinnerthemeTACC.sty +++ /dev/null @@ -1 +0,0 @@ -../../beamer/beamerinnerthemeTACC.sty \ No newline at end of file diff --git a/my_docs/23/YT_lmod/beamerinnerthemeTACC.sty b/my_docs/23/YT_lmod/beamerinnerthemeTACC.sty new file mode 100755 index 000000000..29e2bce81 --- /dev/null +++ b/my_docs/23/YT_lmod/beamerinnerthemeTACC.sty @@ -0,0 +1,11 @@ +\mode + +\setbeamertemplate{itemize item}[circle] +\setbeamertemplate{itemize subitem}{{}--{}} +\setbeamertemplate{itemize subsubitem}[circle] +\setbeamertemplate{section in toc}{$\bullet$\hskip.5em\inserttocsection} +%\setbeamertemplate{subsection in toc}{} +\setbeamertemplate{subsubsection in toc}{} + +\mode + diff --git a/my_docs/23/YT_lmod/beamerinnerthemeTACC16.sty b/my_docs/23/YT_lmod/beamerinnerthemeTACC16.sty deleted file mode 120000 index 5955acc99..000000000 --- a/my_docs/23/YT_lmod/beamerinnerthemeTACC16.sty +++ /dev/null @@ -1 +0,0 @@ -../../beamer/beamerinnerthemeTACC16.sty \ No newline at end of file diff --git a/my_docs/23/YT_lmod/beamerinnerthemeTACC16.sty b/my_docs/23/YT_lmod/beamerinnerthemeTACC16.sty new file mode 100755 index 000000000..f7f454e1d --- /dev/null +++ b/my_docs/23/YT_lmod/beamerinnerthemeTACC16.sty @@ -0,0 +1,11 @@ +\mode + +\setbeamertemplate{itemize item}[triangle] +\setbeamertemplate{itemize subitem}[triangle] +\setbeamertemplate{itemize subsubitem}[triangle] +\setbeamertemplate{section in toc}{$\bullet$\hskip.5em\inserttocsection} +%\setbeamertemplate{subsection in toc}{} +\setbeamertemplate{subsubsection in toc}{} + +\mode + diff --git a/my_docs/23/YT_lmod/beamerouterthemeTACC.sty b/my_docs/23/YT_lmod/beamerouterthemeTACC.sty deleted file mode 120000 index da0a45d33..000000000 --- a/my_docs/23/YT_lmod/beamerouterthemeTACC.sty +++ /dev/null @@ -1 +0,0 @@ -../../beamer/beamerouterthemeTACC.sty \ No newline at end of file diff --git a/my_docs/23/YT_lmod/beamerouterthemeTACC.sty b/my_docs/23/YT_lmod/beamerouterthemeTACC.sty new file mode 100755 index 000000000..038580303 --- /dev/null +++ b/my_docs/23/YT_lmod/beamerouterthemeTACC.sty @@ -0,0 +1,196 @@ +% Copyright 2003 by Till Tantau +% +% This program can be redistributed and/or modified under the terms +% of the GNU Public License, version 2. + +\mode + +\setbeamertemplate{frametitle}[default][center] +\addtobeamertemplate{frametitle}{\vskip 4ex minus 4ex}{} + +% Here we define what appears at the bottom of each slide: the "footline". +\setbeamertemplate{footline}{% + \leavevmode% + + % Horizontal line dividing the rest of the slide from the footer? + % hrule goes all the way across... + % \hrule height.3pt% + % With \rule, you can specify the thickness + % \rule[raise-height]{width}{thickness} + \hspace{.025\textwidth}\rule{.95\textwidth}{.5pt} + + \hbox{% + % On the left half of the footer, insert the TACC logo + \begin{minipage}{.5\textwidth}% + \hskip .033\textwidth%Give horizontal space else this will set on the left edge of the slide! + % TACC logo with custom viewport! + \includegraphics[viewport=1 -1 135 35, clip=true, width=.4\textwidth]{figures/TACC_logo} + \end{minipage} + % + \begin{minipage}{.5\textwidth}% + \vskip .023\textheight% + \raggedleft% + \setlength{\rightskip}{.033\textwidth} + % + % If we are not on the first page, insert a page number + % For some reason, insertframenumber is buggy when you have fragile + % slides with verbatim environments in them... it tends to skip numbers + % for some reason! On the other hand, the pagenumber is incremented + % for *every* slide, including transition slides... + \ifnum \thepage>1 + % \insertshorttitle + \insertframenumber + % \insertframenumber/\inserttotalframenumber + % \insertpagenumber + \else % Do a phantom of whatever you do on other pages, so spacing matches + %$\phantom{\insertshorttitle}$ + $\phantom{\insertframenumber}$ + %$\phantom{\insertframenumber/\inserttotalframenumber}$ + %$\phantom{\insertpagenumber}$ + \fi + \hfill\includegraphics[width=.5\textwidth]{figures/UT_logo}% + \end{minipage}% + }% + \vskip .023\textheight% +} + + + + +\ifTACCheadernav + +\usesectionheadtemplate +{\hfill\insertsectionhead} +{\hfill\color{fg!50!bg}\insertsectionhead} + +% Head +\ifbeamer@compress + +% Here we define how the top of the frame looks, the "headline". +\setbeamertemplate{headline} +{% + \ifnum \thepage>1 + \leavevmode% + \begin{beamercolorbox}[wd=.5\paperwidth,ht=2.5ex,dp=1.125ex]{% + section in head/foot}% + \insertsectionnavigationhorizontal{.5\paperwidth}{\hskip0pt plus1filll}{}% + \end{beamercolorbox}% + \begin{beamercolorbox}[wd=.5\paperwidth,ht=2.5ex,dp=1.125ex]{% + subsection in head/foot}% + \insertsubsectionnavigationhorizontal{% + .5\paperwidth}{}{\hskip0pt plus1filll}% + \end{beamercolorbox}% + \fi %\thepage>1 +} + +\else% Not compressed + +\setbeamertemplate{headline} +{% + \ifnum \thepage>1 + \leavevmode% + \@tempdimb=2.4375ex% + \ifnum\beamer@subsectionmax<\beamer@sectionmax% + \multiply\@tempdimb by\beamer@sectionmax% + \else% + \multiply\@tempdimb by\beamer@subsectionmax% + \fi% + \ifdim\@tempdimb>0pt% + \advance\@tempdimb by 1.125ex% + \begin{beamercolorbox}[wd=.5\paperwidth,ht=\@tempdimb]{% + section in head/foot}% + \vbox to\@tempdimb{\vfil\insertsectionnavigation{.5\paperwidth}\vfil}% + \end{beamercolorbox}% + \begin{beamercolorbox}[wd=.5\paperwidth,ht=\@tempdimb]{% + subsection in head/foot}% + \vbox to\@tempdimb{\vfil\insertsubsectionnavigation{.5\paperwidth}\vfil}% + \end{beamercolorbox}% + \fi% + \fi % \thepage>1 +} + +\fi % end if compressed +\fi % TACCheadernav + + +\ifTACCheadertree + +\setbeamertemplate{headline} +{ + \begin{beamercolorbox}[wd=\paperwidth,colsep=1.5pt + ]{upper separation line head} + \end{beamercolorbox} + % + % Place short title + % + \begin{beamercolorbox}[wd=\paperwidth,ht=2.5ex,dp=1.125ex,% + leftskip=.3cm,rightskip=.3cm plus1fil]{title in head/foot} + \usebeamerfont{title in head/foot}\insertshorttitle + \end{beamercolorbox} + + % + % Place section + % + \begin{beamercolorbox}[wd=\paperwidth,ht=2.5ex,dp=1.125ex,% + leftskip=.3cm,rightskip=.3cm plus1fil]{section in head/foot} + \usebeamerfont{section in head/foot}% + %\ifbeamer@tree@showhooks + \setbox\beamer@tempbox=\hbox{\insertsectionhead}% + \ifdim\wd\beamer@tempbox>1pt% + \hskip2pt\raise1.9pt\hbox{\vrule width0.4pt height1.875ex\vrule width 5pt height0.4pt}% + \hskip1pt% + \fi% \ifdim + %\else% + %\hskip6pt% + %\fi% \ifbeamer + \insertsectionhead + \end{beamercolorbox} + +% +% Place subsection +% +\begin{beamercolorbox}[wd=\paperwidth,ht=2.5ex,dp=1.125ex,% + leftskip=.3cm,rightskip=.3cm plus1fil]{subsection in head/foot} + \usebeamerfont{subsection in head/foot}% + %\ifbeamer@tree@showhooks + \setbox\beamer@tempbox=\hbox{\insertsubsectionhead}% + \ifdim\wd\beamer@tempbox>1pt% + \hskip9.4pt\raise1.9pt\hbox{\vrule width0.4pt height1.875ex\vrule width 5pt height0.4pt}% + \hskip1pt% + \fi% \ifdim + %\else% + %\hskip12pt% + %\fi% \ifbeamer + \insertsubsectionhead +\end{beamercolorbox} + +% +% Place final separation box +% + \begin{beamercolorbox}[wd=\paperwidth,colsep=1.5pt + ]{lower separation line head} + \end{beamercolorbox} + + % + % Another matching rule which helps to frame the content + % + \hspace{.025\textwidth}\rule{.95\textwidth}{.5pt} +} +\fi % TACCheadertree + + +% The following command suppresses all navigation symbols. This is +% necessary in the TACC theme, since it overlaps where we want the +% logo to be. +\setbeamertemplate{navigation symbols}{} + +% Align the navigation symbols vertically (still overlaps our logo!) +%\setbeamertemplate{navigation symbols}[vertical]{} + +% Only places the slide-forward and slide-back symbol, but yes, +% this still overlaps our logo! +%\setbeamertemplate{navigation symbols}[only frame symbol]{} + + +\mode + diff --git a/my_docs/23/YT_lmod/beamerouterthemeTACC16.sty b/my_docs/23/YT_lmod/beamerouterthemeTACC16.sty deleted file mode 120000 index 54bd09537..000000000 --- a/my_docs/23/YT_lmod/beamerouterthemeTACC16.sty +++ /dev/null @@ -1 +0,0 @@ -../../beamer/beamerouterthemeTACC16.sty \ No newline at end of file diff --git a/my_docs/23/YT_lmod/beamerouterthemeTACC16.sty b/my_docs/23/YT_lmod/beamerouterthemeTACC16.sty new file mode 100755 index 000000000..d5e6388c7 --- /dev/null +++ b/my_docs/23/YT_lmod/beamerouterthemeTACC16.sty @@ -0,0 +1,312 @@ +% Antonio Gomez (agomez@tacc.utexas.edu) +% 4-20-17. Added option to put the footer on the right side + + + +\mode + +\usepackage{xcolor} +\usepackage{graphicx} +\usepackage{etoolbox} + + + +% This theme accepts the "rightfooter" option +% When used, it will put the TACC logo at the bottom of the slide on the right side +% By default, it goes to the left + +\xifaspectratio{ + {169} { + \pgfdeclareimage[width=\paperwidth]{titlebackground}{./figures/master169.jpg} + \if@rightfooterOption + \pgfdeclareimage[width=\paperwidth]{background}{./figures/secondary_right169.jpg} +\else + \pgfdeclareimage[width=\paperwidth]{background}{./figures/secondary169.jpg} +\fi +} +}[ +\pgfdeclareimage[width=\paperwidth]{titlebackground}{./figures/master.jpg} + \if@rightfooterOption + \pgfdeclareimage[width=\paperwidth]{background}{./figures/secondary_right.jpg} +\else + \pgfdeclareimage[width=\paperwidth]{background}{./figures/secondary.jpg} +\fi +] + +\setbeamertemplate{background canvas}{% +\xifaspectratio{ + {169} { + \ifnum\c@framenumber=1 % + \begin{picture}(0,0) + \put(-3,-256){% + \pgfuseimage{titlebackground} + } + \end{picture} + \else% + \begin{picture}(0,0) + \put(-3,-260){% + \pgfuseimage{background} + } + \end{picture} + \fi + } + {43} { + \ifnum\c@framenumber=1 % + \begin{picture}(0,0) + \put(-4,-274){% + \pgfuseimage{titlebackground} + } + \end{picture} + \else% + \begin{picture}(0,0) + \put(-4,-274){% + \pgfuseimage{background} + } + \end{picture} + \fi + } +} +} + + + +%\setbeamertemplate{background canvas}{% +% % On title page +% \ifnum\c@framenumber=1 % +% \begin{picture}(0,0) +% \put(0,-253){% +% \pgfuseimage{titlebackground} +% } +% \end{picture} +% +% \else% +% \xifaspectratio{ +% {169} { +% % Other frames background +% \begin{picture}(0,0) +% \put(-4,-260){% +% \pgfuseimage{background} +% } +% \end{picture} +% } +% }[ +% % Other frames background +% \begin{picture}(0,0) +% \put(-4,-274){% +% \pgfuseimage{background} +% } +% \end{picture} +% ] +% \fi% +%} + + +\setbeamertemplate{title page}{ +\vspace{40pt} +\begin{center} +\usebeamerfont{title} {\huge \inserttitle}\par +\vspace{4ex} +\usebeamerfont{author} { + \insertauthor +}\par +\vspace{2ex} +\usebeamerfont{institute}{ + \insertinstitute +} \par +\vspace{2ex} +\usebeamerfont{date}{ + \insertdate +} +\end{center} +} + + +\setbeamertemplate{frametitle}[default][center] +\setbeamertemplate{frametitle}{ + \makeatletter + \regexpatchcmd{\insertframetitle} + {(\c{usebeamertemplate}.*)\c{fi}} + {\c{NoCaseChange}\cB\{\1\cE\}\c{fi}} + {}{}% + \makeatother + \vskip1ex + \insertframetitle +} + +% Here we define what appears at the bottom of each slide: the "footline". +\setbeamertemplate{footline}{% + \leavevmode% + + % Horizontal line dividing the rest of the slide from the footer? + % hrule goes all the way across... + % \hrule height.3pt% + % With \rule, you can specify the thickness + % \rule[raise-height]{width}{thickness} + % \hspace{.025\textwidth}\rule{.95\textwidth}{.5pt} + + \hbox{% + \ifnum \thepage>1 + \if@rightfooterOption + \begin{minipage}{.2\textwidth}% + \hskip .05\textwidth%Give horizontal space else this will set on the left edge of the slide! + \end{minipage} + \else + \begin{minipage}{.4\textwidth}% + \hskip .05\textwidth%Give horizontal space else this will set on the left edge of the slide! + \end{minipage} + \fi + + + \begin{minipage}{\textwidth}% + % \vskip .023\textheight% + \raggedleft% + \setlength{\rightskip}{\textwidth} + \if@rightfooterOption + \hbox{% + \begin{beamercolorbox}[wd=0.7\textwidth,ht=2.25ex,dp=1ex,left]{author in head/foot}% + \insertshorttitle{} \hskip .01\textwidth | \hskip .01\textwidth \insertdate{} \hskip .01\textwidth | \hskip .01\textwidth \insertframenumber{} + \end{beamercolorbox}% + } + \else + \hbox{% + \begin{beamercolorbox}[wd=0.5\textwidth,ht=2.25ex,dp=1ex,left]{author in head/foot}% + \insertshorttitle{} \hskip .01\textwidth | \hskip .01\textwidth \insertdate{} \hskip .01\textwidth | \hskip .01\textwidth \insertframenumber{} + \end{beamercolorbox}% + } + \fi + + \end{minipage}% + \begin{minipage}{.05\textwidth}% + \end{minipage}% + \fi %\thepage>1 + }% + \vskip .023\textheight% + +} + + + + +\ifTACCheadernav + +\usesectionheadtemplate +{\hfill\insertsectionhead} +{\hfill\color{fg!50!bg}\insertsectionhead} + +% Head +\ifbeamer@compress + +% Here we define how the top of the frame looks, the "headline". +\setbeamertemplate{headline} +{% + \ifnum \thepage>1 + \leavevmode% + \begin{beamercolorbox}[wd=.5\paperwidth,ht=2.5ex,dp=1.125ex]{% + section in head/foot}% + \insertsectionnavigationhorizontal{.5\paperwidth}{\hskip0pt plus1filll}{}% + \end{beamercolorbox}% + \begin{beamercolorbox}[wd=.5\paperwidth,ht=2.5ex,dp=1.125ex]{% + subsection in head/foot}% + \insertsubsectionnavigationhorizontal{% + .5\paperwidth}{}{\hskip0pt plus1filll}% + \end{beamercolorbox}% + \fi %\thepage>1 +} + +\else% Not compressed + +\setbeamertemplate{headline} +{% + \ifnum \thepage>1 + \leavevmode% + \@tempdimb=2.4375ex% + \ifnum\beamer@subsectionmax<\beamer@sectionmax% + \multiply\@tempdimb by\beamer@sectionmax% + \else% + \multiply\@tempdimb by\beamer@subsectionmax% + \fi% + \ifdim\@tempdimb>0pt% + \advance\@tempdimb by 1.125ex% + \begin{beamercolorbox}[wd=.5\paperwidth,ht=\@tempdimb]{% + section in head/foot}% + \vbox to\@tempdimb{\vfil\insertsectionnavigation{.5\paperwidth}\vfil}% + \end{beamercolorbox}% + \begin{beamercolorbox}[wd=.5\paperwidth,ht=\@tempdimb]{% + subsection in head/foot}% + \vbox to\@tempdimb{\vfil\insertsubsectionnavigation{.5\paperwidth}\vfil}% + \end{beamercolorbox}% + \fi% + \fi % \thepage>1 +} + +\fi % end if compressed +\fi % TACCheadernav + + +\ifTACCheadertree + +\setbeamertemplate{headline} +{ + \begin{beamercolorbox}[wd=\paperwidth,colsep=1.5pt]{upper separation line head} + \end{beamercolorbox} + % + % Place short title + % + \begin{beamercolorbox}[wd=\paperwidth,ht=2.5ex,dp=1.125ex,% + leftskip=.3cm,rightskip=.3cm plus1fil]{title in head/foot} + \usebeamerfont{title in head/foot}\insertshorttitle + \end{beamercolorbox} + + % + % Place section + % + \begin{beamercolorbox}[wd=\paperwidth,ht=2.5ex,dp=1.125ex,% + leftskip=.3cm,rightskip=.3cm plus1fil]{section in head/foot} + \usebeamerfont{section in head/foot}% + %\ifbeamer@tree@showhooks + \setbox\beamer@tempbox=\hbox{\insertsectionhead}% + \ifdim\wd\beamer@tempbox>1pt% + \hskip2pt\raise1.9pt\hbox{\vrule width0.4pt height1.875ex\vrule width 5pt height0.4pt}% + \hskip1pt% + \fi + \insertsectionhead + \end{beamercolorbox} + +% +% Place subsection +% +\begin{beamercolorbox}[wd=\paperwidth,ht=2.5ex,dp=1.125ex,% + leftskip=.3cm,rightskip=.3cm plus1fil]{subsection in head/foot} + \usebeamerfont{subsection in head/foot}% + %\ifbeamer@tree@showhooks + \setbox\beamer@tempbox=\hbox{\insertsubsectionhead}% + \ifdim\wd\beamer@tempbox>1pt% + \hskip9.4pt\raise1.9pt\hbox{\vrule width0.4pt height1.875ex\vrule width 5pt height0.4pt}% + \hskip1pt% + \fi + \insertsubsectionhead +\end{beamercolorbox} + +% +% Place final separation box +% + \begin{beamercolorbox}[wd=\paperwidth,colsep=1.5pt + ]{lower separation line head} + \end{beamercolorbox} + + % + % Another matching rule which helps to frame the content + % + \hspace{.025\textwidth}\rule{.95\textwidth}{.5pt} +} +\fi % TACCheadertree + + +% The following command suppresses all navigation symbols. This is +% necessary in the TACC theme, since it overlaps where we want the +% logo to be. +\setbeamertemplate{navigation symbols}{} + + +\mode + diff --git a/my_docs/23/YT_lmod/beamerthemeTACC.sty b/my_docs/23/YT_lmod/beamerthemeTACC.sty deleted file mode 120000 index 5c339abd4..000000000 --- a/my_docs/23/YT_lmod/beamerthemeTACC.sty +++ /dev/null @@ -1 +0,0 @@ -../../beamer/beamerthemeTACC.sty \ No newline at end of file diff --git a/my_docs/23/YT_lmod/beamerthemeTACC.sty b/my_docs/23/YT_lmod/beamerthemeTACC.sty new file mode 100755 index 000000000..c6a1b1269 --- /dev/null +++ b/my_docs/23/YT_lmod/beamerthemeTACC.sty @@ -0,0 +1,26 @@ +%% TACC theme for beamer + +\newif\ifTACCheadernav +\DeclareOption{headernav}{\global\TACCheadernavtrue} + +\newif\ifTACCheadertree +\DeclareOption{headertree}{\global\TACCheadertreetrue} +\ProcessOptions + +\mode + +\usefonttheme{TACC} +\usecolortheme{TACC} +\useinnertheme{TACC} +\useoutertheme{TACC} + +\mode + + +\newcommand{\event}[1]{% + \makeatletter% + \def\TACC@eventname{#1}% + \makeatother} + +\newcommand{\sectionframe}[1]{\section{#1}\frame{\Large\textbf{#1}}} +\newcommand{\subsectionframe}[1]{\subsection{#1}\frame{\large\textbf{#1}}} diff --git a/my_docs/23/YT_lmod/beamerthemeTACC16.sty b/my_docs/23/YT_lmod/beamerthemeTACC16.sty deleted file mode 120000 index 7a9d4d296..000000000 --- a/my_docs/23/YT_lmod/beamerthemeTACC16.sty +++ /dev/null @@ -1 +0,0 @@ -../../beamer/beamerthemeTACC16.sty \ No newline at end of file diff --git a/my_docs/23/YT_lmod/beamerthemeTACC16.sty b/my_docs/23/YT_lmod/beamerthemeTACC16.sty new file mode 100755 index 000000000..b522d0207 --- /dev/null +++ b/my_docs/23/YT_lmod/beamerthemeTACC16.sty @@ -0,0 +1,61 @@ +%% TACC theme for beamer + + +\newif\if@rightfooterOption +\@rightfooterOptionfalse +\DeclareOption{rightfooter}{\@rightfooterOptiontrue} +\ProcessOptions + + +\newif\ifTACCheadernav +\DeclareOption{headernav}{\global\TACCheadernavtrue} + +\newif\ifTACCheadertree +\DeclareOption{headertree}{\global\TACCheadertreetrue} +\ProcessOptions + +\usepackage{xparse} +\ExplSyntaxOn +\NewDocumentCommand{\ifaspectratio}{mmm} + { + % Recover the option from those passed to the class + \keys_set:nf { zunbeltz/beameroptions } { \use:c { opt@beamer.cls } } + \str_if_eq:nVTF { #1 } \l_zunbeltz_aspectratio_tl { #2 } { #3 } + } +\NewDocumentCommand{\xifaspectratio}{mO{}} + { + % Recover the option from those passed to the class + \keys_set:nf { zunbeltz/beameroptions } { \use:c { opt@beamer.cls } } + \str_case:VnF \l_zunbeltz_aspectratio_tl { #1 } { #2 } + } +% We need to define only one key, the other are treated as `unknown' +\keys_define:nn { zunbeltz/beameroptions } + { + aspectratio .tl_set:N = \l_zunbeltz_aspectratio_tl, + aspectratio .initial:n = 43, + unknown .code:n = {}, + } + +% Generate the variants we need +\cs_generate_variant:Nn \keys_set:nn { nf } +\cs_generate_variant:Nn \str_if_eq:nnTF { nV } +\cs_generate_variant:Nn \str_case:nnF { V } +\ExplSyntaxOff + +\mode + +\usefonttheme{TACC16} +\useinnertheme{TACC16} +\useoutertheme{TACC16} +\usecolortheme{TACC16} + +\mode + + +\newcommand{\event}[1]{% + \makeatletter% + \def\TACC@eventname{#1}% + \makeatother} + +\newcommand{\sectionframe}[1]{\section{#1}\frame{\Large\textbf{#1}}} +\newcommand{\subsectionframe}[1]{\subsection{#1}\frame{\large\textbf{#1}}} diff --git a/my_docs/23/YT_lmod/figures b/my_docs/23/YT_lmod/figures deleted file mode 120000 index ddafd8974..000000000 --- a/my_docs/23/YT_lmod/figures +++ /dev/null @@ -1 +0,0 @@ -../../beamer/figures \ No newline at end of file diff --git a/my_docs/23/YT_lmod/figures/TACC_logo.pdf b/my_docs/23/YT_lmod/figures/TACC_logo.pdf new file mode 100755 index 000000000..c018a20cb Binary files /dev/null and b/my_docs/23/YT_lmod/figures/TACC_logo.pdf differ diff --git a/my_docs/23/YT_lmod/figures/UT_logo.pdf b/my_docs/23/YT_lmod/figures/UT_logo.pdf new file mode 100755 index 000000000..d5b42e752 Binary files /dev/null and b/my_docs/23/YT_lmod/figures/UT_logo.pdf differ diff --git a/my_docs/23/YT_lmod/figures/cc.png b/my_docs/23/YT_lmod/figures/cc.png new file mode 100644 index 000000000..8a532ff8f Binary files /dev/null and b/my_docs/23/YT_lmod/figures/cc.png differ diff --git a/my_docs/23/YT_lmod/figures/isa.png b/my_docs/23/YT_lmod/figures/isa.png new file mode 100644 index 000000000..f95d985e7 Binary files /dev/null and b/my_docs/23/YT_lmod/figures/isa.png differ diff --git a/my_docs/23/YT_lmod/figures/master.jpg b/my_docs/23/YT_lmod/figures/master.jpg new file mode 100644 index 000000000..f5c56c04a Binary files /dev/null and b/my_docs/23/YT_lmod/figures/master.jpg differ diff --git a/my_docs/23/YT_lmod/figures/master169.jpg b/my_docs/23/YT_lmod/figures/master169.jpg new file mode 100644 index 000000000..b215776eb Binary files /dev/null and b/my_docs/23/YT_lmod/figures/master169.jpg differ diff --git a/my_docs/23/YT_lmod/figures/master169.png b/my_docs/23/YT_lmod/figures/master169.png new file mode 100644 index 000000000..bc5c0ed12 Binary files /dev/null and b/my_docs/23/YT_lmod/figures/master169.png differ diff --git a/my_docs/23/YT_lmod/figures/secondary.jpg b/my_docs/23/YT_lmod/figures/secondary.jpg new file mode 100644 index 000000000..d905a95c9 Binary files /dev/null and b/my_docs/23/YT_lmod/figures/secondary.jpg differ diff --git a/my_docs/23/YT_lmod/figures/secondary169.jpg b/my_docs/23/YT_lmod/figures/secondary169.jpg new file mode 100644 index 000000000..4eb017957 Binary files /dev/null and b/my_docs/23/YT_lmod/figures/secondary169.jpg differ diff --git a/my_docs/23/YT_lmod/figures/secondary169.png b/my_docs/23/YT_lmod/figures/secondary169.png new file mode 100644 index 000000000..cb9060a56 Binary files /dev/null and b/my_docs/23/YT_lmod/figures/secondary169.png differ diff --git a/my_docs/23/YT_lmod/figures/secondary_right.jpg b/my_docs/23/YT_lmod/figures/secondary_right.jpg new file mode 100644 index 000000000..f25f93a58 Binary files /dev/null and b/my_docs/23/YT_lmod/figures/secondary_right.jpg differ diff --git a/my_docs/23/YT_lmod/figures/secondary_right169.jpg b/my_docs/23/YT_lmod/figures/secondary_right169.jpg new file mode 100644 index 000000000..567a1078f Binary files /dev/null and b/my_docs/23/YT_lmod/figures/secondary_right169.jpg differ diff --git a/my_docs/23/YT_lmod/themes b/my_docs/23/YT_lmod/themes deleted file mode 120000 index a98530730..000000000 --- a/my_docs/23/YT_lmod/themes +++ /dev/null @@ -1 +0,0 @@ -../../beamer/themes \ No newline at end of file diff --git a/my_docs/23/YT_lmod/themes/beamercolorthemeTACC16.sty b/my_docs/23/YT_lmod/themes/beamercolorthemeTACC16.sty new file mode 100644 index 000000000..248ae8cb6 --- /dev/null +++ b/my_docs/23/YT_lmod/themes/beamercolorthemeTACC16.sty @@ -0,0 +1,193 @@ +% Copyright 2003 by Till Tantau . +% +% This program can be redistributed and/or modified under the terms +% of the GNU Public License, version 2. + +\mode + +\usepackage{textcase,regexpatch} + +\setbeamertemplate{blocks}[rounded][shadow=true] + + +\definecolor{TACCred}{RGB}{180,13,29} +\definecolor{TACCorange}{RGB}{210,104,43} +\definecolor{TACCblue}{RGB}{21,77,122} +%\definecolor{TACCgreen}{RGB}{30,134,104} +\definecolor{TACCgreen}{RGB}{49,168,51} + +% I downloaded a gimp color palette from +% http://maururu.net/2007/latex-beamer-color-palette/ +% Which provides rgb values (I think) for several of the +% default beamer themes. You can open this in gimp by +% opening the Palettes dialog, right-clicking anywhere and choosing +% 'Import Palette'. A color in there called 'default added blue' +% appeared to be approximately what I wanted. It had the triple +% of values 141 145 208. If you double-click on this in the +% palette editor it gives you a bunch of information. You can't +% use these values directly to set a color...it just comes out white. +% I think definecolor is expecting something normalized by 255. Yes! + + +%%% +% Set the normal text color +%%% +\setbeamercolor{normal text}{fg=black} %,bg=white} +\setbeamercolor{example text}{fg=TACCgreen} +\setbeamercolor{alerted text}{fg=TACCorange} + + +\setbeamercolor{structure}{fg=black} +%\setbeamercolor{structure}{fg=black} + +\setbeamercolor{background canvas}{parent=normal text} +\setbeamercolor{background}{parent=background canvas} + +\setbeamercolor{palette primary}{use=structure,fg=structure.fg} +\setbeamercolor{palette secondary}{use=structure,fg=structure.fg!75!black} +\setbeamercolor{palette tertiary}{use=structure,fg=structure.fg!50!black} +\setbeamercolor{palette quaternary}{fg=black} + +\setbeamercolor{palette sidebar primary}{use=normal text,fg=normal text.fg} +\setbeamercolor{palette sidebar secondary}{use=structure,fg=structure.fg} +\setbeamercolor{palette sidebar tertiary}{use=normal text,fg=normal text.fg} +\setbeamercolor{palette sidebar quaternary}{use=structure,fg=structure.fg} + +\setbeamercolor{math text}{} +\setbeamercolor{math text inlined}{parent=math text} +\setbeamercolor{math text displayed}{parent=math text} + +\setbeamercolor{normal text in math text}{} + +\setbeamercolor{local structure}{parent=structure} + +\setbeamercolor{titlelike}{parent=structure} + +\setbeamercolor{title}{parent=titlelike} +\setbeamercolor{title in head/foot}{parent=palette quaternary} +\setbeamercolor{title in sidebar}{parent=palette sidebar quaternary} + +\setbeamercolor{subtitle}{parent=title} + +\setbeamercolor{author}{} +\setbeamercolor{author in head/foot}{parent=palette primary} +\setbeamercolor{author in sidebar}{use=palette sidebar tertiary,fg=palette sidebar tertiary.fg} + +\setbeamercolor{institute}{} +\setbeamercolor{institute in head/foot}{parent=palette tertiary} +\setbeamercolor{institute in sidebar}{use=palette sidebar tertiary,fg=palette sidebar tertiary.fg} + +\setbeamercolor{date}{} +\setbeamercolor{date in head/foot}{parent=palette secondary} +\setbeamercolor{date in sidebar}{use=palette sidebar tertiary,fg=palette sidebar tertiary.fg} + +\setbeamercolor{titlegraphic}{} + +\setbeamercolor{part name}{} +\setbeamercolor{part title}{parent=titlelike} + +\setbeamercolor{section in toc}{parent=structure} +\setbeamercolor{section in toc shaded}{parent=section in toc} +\setbeamercolor{section in head/foot}{parent=palette tertiary} +\setbeamercolor{section in sidebar}{parent=palette sidebar secondary} +\setbeamercolor{section in sidebar shaded}{use=section in sidebar,fg=section in sidebar.fg!40!bg} +\setbeamercolor{section number projected}{parent=item projected} + +\setbeamercolor{subsection in toc}{} +\setbeamercolor{subsection in toc shaded}{parent=subsection in toc} +\setbeamercolor{subsection in head/foot}{parent=palette secondary} +\setbeamercolor{subsection in sidebar}{parent=palette sidebar primary} +\setbeamercolor{subsection in sidebar shaded}{use=subsection in sidebar,fg=subsection in sidebar.fg!40!bg} +\setbeamercolor{subsection number projected}{parent={subitem projected}} + +\setbeamercolor{subsubsection in toc}{parent=subsection in toc} +\setbeamercolor{subsubsection in toc shaded}{parent=subsubsection in toc} +\setbeamercolor{subsubsection in head/foot}{parent=subsection in head/foot} +\setbeamercolor{subsubsection in sidebar}{parent=subsection in sidebar} +\setbeamercolor{subsubsection in sidebar shaded}{parent=subsection in sidebar shaded} +\setbeamercolor{subsubsection number projected}{parent=subsubitem projected} + +\setbeamercolor{headline}{} +\setbeamercolor{footline}{} + +\setbeamercolor{sidebar}{} +\setbeamercolor{sidebar left}{parent=sidebar} +\setbeamercolor{sidebar right}{parent=sidebar} + +\setbeamercolor{logo}{parent=palette secondary} + +\setbeamercolor{frametitle}{parent=titlelike} +\setbeamercolor{framesubtitle}{parent=frametitle} + +\setbeamercolor{frametitle right}{parent=frametitle} + +\setbeamercolor{caption}{} +\setbeamercolor{caption name}{parent=structure} + +\setbeamercolor{button}{use=local structure,bg=local structure.fg!50!bg,fg=white} +\setbeamercolor{button border}{use=button,fg=button.bg} +\setbeamercolor{navigation symbols}{use=structure,fg=structure.fg!40!bg} +\setbeamercolor{navigation symbols dimmed}{use=structure,fg=structure.fg!20!bg} +\setbeamercolor{mini frame}{parent=section in head/foot} + +\setbeamercolor{block body}{fg=black} +\setbeamercolor{block body alerted}{fg=black} +\setbeamercolor{block body example}{fg=black} + +\setbeamercolor{block title}{bg=TACCblue,fg=white} +\setbeamercolor{block title alerted}{bg=TACCred,fg=white} +\setbeamercolor{block title example}{bg=TACCgreen,fg=white} + +\setbeamercolor{item}{parent=local structure} +\setbeamercolor{subitem}{parent=item} +\setbeamercolor{subsubitem}{parent=subitem} + +\setbeamercolor{item projected}{parent=item,use=item,fg=black,bg=item.fg} +\setbeamercolor{subitem projected}{parent=item projected} +\setbeamercolor{subsubitem projected}{parent=subitem projected} + +\setbeamercolor{enumerate item}{parent=item} +\setbeamercolor{enumerate subitem}{parent=subitem} +\setbeamercolor{enumerate subsubitem}{parent=subsubitem} + +\setbeamercolor{itemize item}{parent=item} +\setbeamercolor{itemize subitem}{parent=subitem} +\setbeamercolor{itemize subsubitem}{parent=subsubitem} + +\setbeamercolor{itemize/enumerate body}{} +\setbeamercolor{itemize/enumerate subbody}{} +\setbeamercolor{itemize/enumerate subsubbody}{} + +\setbeamercolor{description item}{parent=item} + +\setbeamercolor{bibliography item}{parent=item} + +\setbeamercolor{bibliography entry author}{use=structure,fg=structure.fg} +\setbeamercolor{bibliography entry title}{use=normal text,fg=normal text.fg} +\setbeamercolor{bibliography entry location}{use=structure,fg=structure.fg!65!bg} +\setbeamercolor{bibliography entry note}{use=structure,fg=structure.fg!65!bg} + +\setbeamercolor{separation line}{} + +\setbeamercolor{upper separation line head}{parent=separation line} +\setbeamercolor{middle separation line head}{parent=separation line} +\setbeamercolor{lower separation line head}{parent=separation line} + +\setbeamercolor{upper separation line foot}{parent=separation line} +\setbeamercolor{middle separation line foot}{parent=separation line} +\setbeamercolor{lower separation line foot}{parent=separation line} + +\setbeamercolor{abstract}{} +\setbeamercolor{abstract title}{parent=structure} + +\setbeamercolor{verse}{} + +\setbeamercolor{quotation}{} +\setbeamercolor{quote}{parent=quotation} + +\setbeamercolor{page number in head/foot}{fg=fg!50!bg} + +\setbeamercolor{qed symbol}{parent=structure} + +\mode + diff --git a/my_docs/23/YT_lmod/themes/beamerfontthemeTACC16.sty b/my_docs/23/YT_lmod/themes/beamerfontthemeTACC16.sty new file mode 100644 index 000000000..d0fc325cc --- /dev/null +++ b/my_docs/23/YT_lmod/themes/beamerfontthemeTACC16.sty @@ -0,0 +1,21 @@ +% Copyright 2003 by Till Tantau +% +% This program can be redistributed and/or modified under the terms +% of the GNU Public License, version 2. + +\mode +\setbeamerfont{title}{parent=structure,size=\LARGE,series=\bfseries} +\setbeamerfont{author}{parent=structure,size=\large, series=\normalfont} +\setbeamerfont{frametitle}{parent=structure,size=\LARGE,series=\bfseries} +\setbeamerfont{framesubtitle}{parent=frametitle,size=\small} + +%\usefonttheme{professionalfonts} % using non standard fonts for beamer +%\usefonttheme{serif} % default family is serif +%\usepackage{fontspec} +%\setmainfont{Century Gothic} + +%\usepackage{fontspec} +\usepackage{libertine} + +\mode + diff --git a/my_docs/23/YT_lmod/themes/beamerinnerthemeTACC16.sty b/my_docs/23/YT_lmod/themes/beamerinnerthemeTACC16.sty new file mode 100644 index 000000000..f7f454e1d --- /dev/null +++ b/my_docs/23/YT_lmod/themes/beamerinnerthemeTACC16.sty @@ -0,0 +1,11 @@ +\mode + +\setbeamertemplate{itemize item}[triangle] +\setbeamertemplate{itemize subitem}[triangle] +\setbeamertemplate{itemize subsubitem}[triangle] +\setbeamertemplate{section in toc}{$\bullet$\hskip.5em\inserttocsection} +%\setbeamertemplate{subsection in toc}{} +\setbeamertemplate{subsubsection in toc}{} + +\mode + diff --git a/my_docs/23/YT_lmod/themes/beamerouterthemeTACC16-169.sty b/my_docs/23/YT_lmod/themes/beamerouterthemeTACC16-169.sty new file mode 100644 index 000000000..c62f9ed04 --- /dev/null +++ b/my_docs/23/YT_lmod/themes/beamerouterthemeTACC16-169.sty @@ -0,0 +1,247 @@ +% Copyright 2003 by Till Tantau +% +% This program can be redistributed and/or modified under the terms +% of the GNU Public License, version 2. + +\mode + +\usepackage{xcolor} +\usepackage{graphicx} +\usepackage{etoolbox} + +\pgfdeclareimage[width=\paperwidth]{titlebackground}{./figures/master169.png} +\pgfdeclareimage[width=\paperwidth]{background}{./figures/secondary169.png} + +\setbeamertemplate{background canvas}{% + \ifnum\c@framenumber=1% + \begin{picture}(0,0) + \put(-0.15,-250){% + \pgfuseimage{titlebackground} + } + %\put(0,-130.7){% + + %\begin{minipage}[b][45mm][t]{\textwidth}%{226mm} + %\begin{center} + % \usebeamerfont{title}{\MakeTextUppercase{\inserttitle}\par} + %\vspace{2ex} + %\usebeamerfont{author}{\insertauthor} + % \end{center} + %\end{minipage} + %} + \end{picture} + % On title page + \else% + % Other frames background + \begin{picture}(0,0) + \put(-0.15,-255.55){% + \pgfuseimage{background} + } + \end{picture} + \fi% +} + + +\setbeamertemplate{title page}{ +\vspace{40pt} +\begin{center} +\usebeamerfont{title} {\huge \inserttitle}\par +\vspace{4ex} +\usebeamerfont{author} { + \insertauthor +}\par +\vspace{2ex} +\usebeamerfont{institute}{ + \insertinstitute +} \par +\vspace{2ex} +\usebeamerfont{date}{ + \insertdate +} +\end{center} +} + + +\setbeamertemplate{frametitle}[default][center] +\setbeamertemplate{frametitle}{ + \makeatletter + \regexpatchcmd{\insertframetitle} + {(\c{usebeamertemplate}.*)\c{fi}} + {\c{NoCaseChange}\cB\{\1\cE\}\c{fi}} + {}{}% + \makeatother + \vskip1ex + \insertframetitle +} + +% Here we define what appears at the bottom of each slide: the "footline". +\setbeamertemplate{footline}{% + \leavevmode% + + % Horizontal line dividing the rest of the slide from the footer? + % hrule goes all the way across... + % \hrule height.3pt% + % With \rule, you can specify the thickness + % \rule[raise-height]{width}{thickness} + % \hspace{.025\textwidth}\rule{.95\textwidth}{.5pt} + + \hbox{% + \ifnum \thepage>1 + % On the left half of the footer, insert the TACC of + \begin{minipage}{.2\textwidth}% + \hskip .05\textwidth%Give horizontal space else this will set on the left edge of the slide! + % \includegraphics[width=.8\textwidth]{TACC_logo.png} + \end{minipage} + + + \begin{minipage}{\textwidth}% + % \vskip .023\textheight% + \raggedleft% + \setlength{\rightskip}{\textwidth} + \hbox{% + \begin{beamercolorbox}[wd=0.7\textwidth,ht=2.25ex,dp=1ex,left]{author in head/foot}% + \insertshorttitle{} \hskip .01\textwidth | \hskip .01\textwidth \insertdate{} \hskip .01\textwidth | \hskip .01\textwidth \insertframenumber{} + \end{beamercolorbox}% + } + + % + % If we are not on the first page, insert a page number + % For some reason, insertframenumber is buggy when you have fragile + % slides with verbatim environments in them... it tends to skip numbers + % for some reason! On the other hand, the pagenumber is incremented + % for *every* slide, including transition slides... + % \hfill\includegraphics[width=\textwidth]{tacc_ut.png} + \end{minipage}% + \begin{minipage}{.05\textwidth}% + \end{minipage}% + \fi %\thepage>1 + }% + \vskip .023\textheight% + +} + + + + +\ifTACCheadernav + +\usesectionheadtemplate +{\hfill\insertsectionhead} +{\hfill\color{fg!50!bg}\insertsectionhead} + +% Head +\ifbeamer@compress + +% Here we define how the top of the frame looks, the "headline". +\setbeamertemplate{headline} +{% + \ifnum \thepage>1 + \leavevmode% + \begin{beamercolorbox}[wd=.5\paperwidth,ht=2.5ex,dp=1.125ex]{% + section in head/foot}% + \insertsectionnavigationhorizontal{.5\paperwidth}{\hskip0pt plus1filll}{}% + \end{beamercolorbox}% + \begin{beamercolorbox}[wd=.5\paperwidth,ht=2.5ex,dp=1.125ex]{% + subsection in head/foot}% + \insertsubsectionnavigationhorizontal{% + .5\paperwidth}{}{\hskip0pt plus1filll}% + \end{beamercolorbox}% + \fi %\thepage>1 +} + +\else% Not compressed + +\setbeamertemplate{headline} +{% + \ifnum \thepage>1 + \leavevmode% + \@tempdimb=2.4375ex% + \ifnum\beamer@subsectionmax<\beamer@sectionmax% + \multiply\@tempdimb by\beamer@sectionmax% + \else% + \multiply\@tempdimb by\beamer@subsectionmax% + \fi% + \ifdim\@tempdimb>0pt% + \advance\@tempdimb by 1.125ex% + \begin{beamercolorbox}[wd=.5\paperwidth,ht=\@tempdimb]{% + section in head/foot}% + \vbox to\@tempdimb{\vfil\insertsectionnavigation{.5\paperwidth}\vfil}% + \end{beamercolorbox}% + \begin{beamercolorbox}[wd=.5\paperwidth,ht=\@tempdimb]{% + subsection in head/foot}% + \vbox to\@tempdimb{\vfil\insertsubsectionnavigation{.5\paperwidth}\vfil}% + \end{beamercolorbox}% + \fi% + \fi % \thepage>1 +} + +\fi % end if compressed +\fi % TACCheadernav + + +\ifTACCheadertree + +\setbeamertemplate{headline} +{ + \begin{beamercolorbox}[wd=\paperwidth,colsep=1.5pt]{upper separation line head} + \end{beamercolorbox} + % + % Place short title + % + \begin{beamercolorbox}[wd=\paperwidth,ht=2.5ex,dp=1.125ex,% + leftskip=.3cm,rightskip=.3cm plus1fil]{title in head/foot} + \usebeamerfont{title in head/foot}\insertshorttitle + \end{beamercolorbox} + + % + % Place section + % + \begin{beamercolorbox}[wd=\paperwidth,ht=2.5ex,dp=1.125ex,% + leftskip=.3cm,rightskip=.3cm plus1fil]{section in head/foot} + \usebeamerfont{section in head/foot}% + %\ifbeamer@tree@showhooks + \setbox\beamer@tempbox=\hbox{\insertsectionhead}% + \ifdim\wd\beamer@tempbox>1pt% + \hskip2pt\raise1.9pt\hbox{\vrule width0.4pt height1.875ex\vrule width 5pt height0.4pt}% + \hskip1pt% + \fi + \insertsectionhead + \end{beamercolorbox} + +% +% Place subsection +% +\begin{beamercolorbox}[wd=\paperwidth,ht=2.5ex,dp=1.125ex,% + leftskip=.3cm,rightskip=.3cm plus1fil]{subsection in head/foot} + \usebeamerfont{subsection in head/foot}% + %\ifbeamer@tree@showhooks + \setbox\beamer@tempbox=\hbox{\insertsubsectionhead}% + \ifdim\wd\beamer@tempbox>1pt% + \hskip9.4pt\raise1.9pt\hbox{\vrule width0.4pt height1.875ex\vrule width 5pt height0.4pt}% + \hskip1pt% + \fi + \insertsubsectionhead +\end{beamercolorbox} + +% +% Place final separation box +% + \begin{beamercolorbox}[wd=\paperwidth,colsep=1.5pt + ]{lower separation line head} + \end{beamercolorbox} + + % + % Another matching rule which helps to frame the content + % + \hspace{.025\textwidth}\rule{.95\textwidth}{.5pt} +} +\fi % TACCheadertree + + +% The following command suppresses all navigation symbols. This is +% necessary in the TACC theme, since it overlaps where we want the +% logo to be. +\setbeamertemplate{navigation symbols}{} + + +\mode + diff --git a/my_docs/23/YT_lmod/themes/beamerouterthemeTACC16.sty b/my_docs/23/YT_lmod/themes/beamerouterthemeTACC16.sty new file mode 100644 index 000000000..c5b178018 --- /dev/null +++ b/my_docs/23/YT_lmod/themes/beamerouterthemeTACC16.sty @@ -0,0 +1,247 @@ +% Copyright 2003 by Till Tantau +% +% This program can be redistributed and/or modified under the terms +% of the GNU Public License, version 2. + +\mode + +\usepackage{xcolor} +\usepackage{graphicx} +\usepackage{etoolbox} + +\pgfdeclareimage[width=\paperwidth]{titlebackground}{master.jpg} +\pgfdeclareimage[width=\paperwidth]{background}{secondary.jpg} + +\setbeamertemplate{background canvas}{% + \ifnum\c@framenumber=1% + \begin{picture}(0,0) + \put(0,-273){% + \pgfuseimage{titlebackground} + } + %\put(0,-130.7){% + + %\begin{minipage}[b][45mm][t]{\textwidth}%{226mm} + %\begin{center} + % \usebeamerfont{title}{\MakeTextUppercase{\inserttitle}\par} + %\vspace{2ex} + %\usebeamerfont{author}{\insertauthor} + % \end{center} + %\end{minipage} + %} + \end{picture} + % On title page + \else% + % Other frames background + \begin{picture}(0,0) + \put(0,-273){% + \pgfuseimage{background} + } + \end{picture} + \fi% +} + + +\setbeamertemplate{title page}{ +\vspace{40pt} +\begin{center} +\usebeamerfont{title} {\huge \inserttitle}\par +\vspace{4ex} +\usebeamerfont{author} { + \insertauthor +}\par +\vspace{2ex} +\usebeamerfont{institute}{ + \insertinstitute +} \par +\vspace{2ex} +\usebeamerfont{date}{ + \insertdate +} +\end{center} +} + + +\setbeamertemplate{frametitle}[default][center] +\setbeamertemplate{frametitle}{ + \makeatletter + \regexpatchcmd{\insertframetitle} + {(\c{usebeamertemplate}.*)\c{fi}} + {\c{NoCaseChange}\cB\{\1\cE\}\c{fi}} + {}{}% + \makeatother + \vskip1ex + \insertframetitle +} + +% Here we define what appears at the bottom of each slide: the "footline". +\setbeamertemplate{footline}{% + \leavevmode% + + % Horizontal line dividing the rest of the slide from the footer? + % hrule goes all the way across... + % \hrule height.3pt% + % With \rule, you can specify the thickness + % \rule[raise-height]{width}{thickness} + % \hspace{.025\textwidth}\rule{.95\textwidth}{.5pt} + + \hbox{% + \ifnum \thepage>1 + % On the left half of the footer, insert the TACC of + \begin{minipage}{.2\textwidth}% + \hskip .05\textwidth%Give horizontal space else this will set on the left edge of the slide! + % \includegraphics[width=.8\textwidth]{figures/TACC_logo.png} + \end{minipage} + + + \begin{minipage}{\textwidth}% + % \vskip .023\textheight% + \raggedleft% + \setlength{\rightskip}{\textwidth} + \hbox{% + \begin{beamercolorbox}[wd=0.7\textwidth,ht=2.25ex,dp=1ex,left]{author in head/foot}% + \insertshorttitle{} \hskip .01\textwidth | \hskip .01\textwidth \insertdate{} \hskip .01\textwidth | \hskip .01\textwidth \insertframenumber{} + \end{beamercolorbox}% + } + + % + % If we are not on the first page, insert a page number + % For some reason, insertframenumber is buggy when you have fragile + % slides with verbatim environments in them... it tends to skip numbers + % for some reason! On the other hand, the pagenumber is incremented + % for *every* slide, including transition slides... + % \hfill\includegraphics[width=\textwidth]{figures/tacc_ut.png} + \end{minipage}% + \begin{minipage}{.05\textwidth}% + \end{minipage}% + \fi %\thepage>1 + }% + \vskip .023\textheight% + +} + + + + +\ifTACCheadernav + +\usesectionheadtemplate +{\hfill\insertsectionhead} +{\hfill\color{fg!50!bg}\insertsectionhead} + +% Head +\ifbeamer@compress + +% Here we define how the top of the frame looks, the "headline". +\setbeamertemplate{headline} +{% + \ifnum \thepage>1 + \leavevmode% + \begin{beamercolorbox}[wd=.5\paperwidth,ht=2.5ex,dp=1.125ex]{% + section in head/foot}% + \insertsectionnavigationhorizontal{.5\paperwidth}{\hskip0pt plus1filll}{}% + \end{beamercolorbox}% + \begin{beamercolorbox}[wd=.5\paperwidth,ht=2.5ex,dp=1.125ex]{% + subsection in head/foot}% + \insertsubsectionnavigationhorizontal{% + .5\paperwidth}{}{\hskip0pt plus1filll}% + \end{beamercolorbox}% + \fi %\thepage>1 +} + +\else% Not compressed + +\setbeamertemplate{headline} +{% + \ifnum \thepage>1 + \leavevmode% + \@tempdimb=2.4375ex% + \ifnum\beamer@subsectionmax<\beamer@sectionmax% + \multiply\@tempdimb by\beamer@sectionmax% + \else% + \multiply\@tempdimb by\beamer@subsectionmax% + \fi% + \ifdim\@tempdimb>0pt% + \advance\@tempdimb by 1.125ex% + \begin{beamercolorbox}[wd=.5\paperwidth,ht=\@tempdimb]{% + section in head/foot}% + \vbox to\@tempdimb{\vfil\insertsectionnavigation{.5\paperwidth}\vfil}% + \end{beamercolorbox}% + \begin{beamercolorbox}[wd=.5\paperwidth,ht=\@tempdimb]{% + subsection in head/foot}% + \vbox to\@tempdimb{\vfil\insertsubsectionnavigation{.5\paperwidth}\vfil}% + \end{beamercolorbox}% + \fi% + \fi % \thepage>1 +} + +\fi % end if compressed +\fi % TACCheadernav + + +\ifTACCheadertree + +\setbeamertemplate{headline} +{ + \begin{beamercolorbox}[wd=\paperwidth,colsep=1.5pt]{upper separation line head} + \end{beamercolorbox} + % + % Place short title + % + \begin{beamercolorbox}[wd=\paperwidth,ht=2.5ex,dp=1.125ex,% + leftskip=.3cm,rightskip=.3cm plus1fil]{title in head/foot} + \usebeamerfont{title in head/foot}\insertshorttitle + \end{beamercolorbox} + + % + % Place section + % + \begin{beamercolorbox}[wd=\paperwidth,ht=2.5ex,dp=1.125ex,% + leftskip=.3cm,rightskip=.3cm plus1fil]{section in head/foot} + \usebeamerfont{section in head/foot}% + %\ifbeamer@tree@showhooks + \setbox\beamer@tempbox=\hbox{\insertsectionhead}% + \ifdim\wd\beamer@tempbox>1pt% + \hskip2pt\raise1.9pt\hbox{\vrule width0.4pt height1.875ex\vrule width 5pt height0.4pt}% + \hskip1pt% + \fi + \insertsectionhead + \end{beamercolorbox} + +% +% Place subsection +% +\begin{beamercolorbox}[wd=\paperwidth,ht=2.5ex,dp=1.125ex,% + leftskip=.3cm,rightskip=.3cm plus1fil]{subsection in head/foot} + \usebeamerfont{subsection in head/foot}% + %\ifbeamer@tree@showhooks + \setbox\beamer@tempbox=\hbox{\insertsubsectionhead}% + \ifdim\wd\beamer@tempbox>1pt% + \hskip9.4pt\raise1.9pt\hbox{\vrule width0.4pt height1.875ex\vrule width 5pt height0.4pt}% + \hskip1pt% + \fi + \insertsubsectionhead +\end{beamercolorbox} + +% +% Place final separation box +% + \begin{beamercolorbox}[wd=\paperwidth,colsep=1.5pt + ]{lower separation line head} + \end{beamercolorbox} + + % + % Another matching rule which helps to frame the content + % + \hspace{.025\textwidth}\rule{.95\textwidth}{.5pt} +} +\fi % TACCheadertree + + +% The following command suppresses all navigation symbols. This is +% necessary in the TACC theme, since it overlaps where we want the +% logo to be. +\setbeamertemplate{navigation symbols}{} + + +\mode + diff --git a/my_docs/23/YT_lmod/themes/beamerthemeTACC16-169.sty b/my_docs/23/YT_lmod/themes/beamerthemeTACC16-169.sty new file mode 100644 index 000000000..22caf9a05 --- /dev/null +++ b/my_docs/23/YT_lmod/themes/beamerthemeTACC16-169.sty @@ -0,0 +1,38 @@ +%% TACC theme for beamer + +\newif\ifTACCheadernav +\DeclareOption{headernav}{\global\TACCheadernavtrue} + +\newif\ifTACCheadertree +\DeclareOption{headertree}{\global\TACCheadertreetrue} +\ProcessOptions + +\mode + +\makeatletter + \def\beamer@calltheme#1#2#3{% + \def\beamer@themelist{#2} + \@for\beamer@themename:=\beamer@themelist\do + {\usepackage[{#1}]{\beamer@themelocation/#3\beamer@themename}}} + + \def\usefolder#1{ + \def\beamer@themelocation{#1} + } + \def\beamer@themelocation{} + +\usefolder{themes} +\usefonttheme{TACC16} +\useinnertheme{TACC16} +\useoutertheme{TACC16-169} +\usecolortheme{TACC16} + +\mode + + +\newcommand{\event}[1]{% + \makeatletter% + \def\TACC@eventname{#1}% + \makeatother} + +\newcommand{\sectionframe}[1]{\section{#1}\frame{\Large\textbf{#1}}} +\newcommand{\subsectionframe}[1]{\subsection{#1}\frame{\large\textbf{#1}}} diff --git a/my_docs/23/YT_lmod/themes/beamerthemeTACC16.sty b/my_docs/23/YT_lmod/themes/beamerthemeTACC16.sty new file mode 100644 index 000000000..750bdd388 --- /dev/null +++ b/my_docs/23/YT_lmod/themes/beamerthemeTACC16.sty @@ -0,0 +1,26 @@ +%% TACC theme for beamer + +\newif\ifTACCheadernav +\DeclareOption{headernav}{\global\TACCheadernavtrue} + +\newif\ifTACCheadertree +\DeclareOption{headertree}{\global\TACCheadertreetrue} +\ProcessOptions + +\mode + +\usefonttheme{TACC16} +\useinnertheme{TACC16} +\useoutertheme{TACC16} +\usecolortheme{TACC16} + +\mode + + +\newcommand{\event}[1]{% + \makeatletter% + \def\TACC@eventname{#1}% + \makeatother} + +\newcommand{\sectionframe}[1]{\section{#1}\frame{\Large\textbf{#1}}} +\newcommand{\subsectionframe}[1]{\subsection{#1}\frame{\large\textbf{#1}}} diff --git a/my_docs/23/YT_lmod/themes/example.pdf b/my_docs/23/YT_lmod/themes/example.pdf new file mode 100644 index 000000000..add373eee Binary files /dev/null and b/my_docs/23/YT_lmod/themes/example.pdf differ diff --git a/my_docs/23/YT_lmod/themes/license.tex b/my_docs/23/YT_lmod/themes/license.tex new file mode 100644 index 000000000..74ff86759 --- /dev/null +++ b/my_docs/23/YT_lmod/themes/license.tex @@ -0,0 +1,14 @@ + +\begin{frame}{License} +\footnotesize +\textcopyright The University of Texas at Austin, \the\year\\ +\vspace{0.5 cm} +This work is licensed under the Creative Commons Attribution Non-Commercial 3.0 Unported License. To view a copy of this license, +visit http://creativecommons.org/licenses/by-nc/3.0/\\ +\vspace{0.5 cm} +When attributing this work, please use the following text: +"Designing and Administering Large-scale Systems", Texas Advanced Computing Center, \the\year. Available under a Creative Commons Attribution Non-Commercial 3.0 Unported License. +\newline +\newline +\includegraphics[width=1cm]{./figures/cc.png} +\end{frame} \ No newline at end of file diff --git a/my_docs/23/lmod_zoom_mtg_2023_01_10/Lmod-4color@2x.png b/my_docs/23/lmod_zoom_mtg_2023_01_10/Lmod-4color@2x.png deleted file mode 120000 index 47d505dbf..000000000 --- a/my_docs/23/lmod_zoom_mtg_2023_01_10/Lmod-4color@2x.png +++ /dev/null @@ -1 +0,0 @@ -../../beamer/Lmod-4color@2x.png \ No newline at end of file diff --git a/my_docs/23/lmod_zoom_mtg_2023_01_10/Lmod-4color@2x.png b/my_docs/23/lmod_zoom_mtg_2023_01_10/Lmod-4color@2x.png new file mode 100644 index 000000000..4810d74c3 Binary files /dev/null and b/my_docs/23/lmod_zoom_mtg_2023_01_10/Lmod-4color@2x.png differ diff --git a/my_docs/23/lmod_zoom_mtg_2023_01_10/beamercolorthemeTACC.sty b/my_docs/23/lmod_zoom_mtg_2023_01_10/beamercolorthemeTACC.sty deleted file mode 120000 index 8d27e673a..000000000 --- a/my_docs/23/lmod_zoom_mtg_2023_01_10/beamercolorthemeTACC.sty +++ /dev/null @@ -1 +0,0 @@ -../../beamer/beamercolorthemeTACC.sty \ No newline at end of file diff --git a/my_docs/23/lmod_zoom_mtg_2023_01_10/beamercolorthemeTACC.sty b/my_docs/23/lmod_zoom_mtg_2023_01_10/beamercolorthemeTACC.sty new file mode 100755 index 000000000..78beb6a4a --- /dev/null +++ b/my_docs/23/lmod_zoom_mtg_2023_01_10/beamercolorthemeTACC.sty @@ -0,0 +1,323 @@ +% Copyright 2003 by Till Tantau . +% +% This program can be redistributed and/or modified under the terms +% of the GNU Public License, version 2. + +\mode + +% I downloaded a gimp color palette from +% http://maururu.net/2007/latex-beamer-color-palette/ +% Which provides rgb values (I think) for several of the +% default beamer themes. You can open this in gimp by +% opening the Palettes dialog, right-clicking anywhere and choosing +% 'Import Palette'. A color in there called 'default added blue' +% appeared to be approximately what I wanted. It had the triple +% of values 141 145 208. If you double-click on this in the +% palette editor it gives you a bunch of information. You can't +% use these values directly to set a color...it just comes out white. +% I think definecolor is expecting something normalized by 255. Yes! + + +% bluish colors +\definecolor{defaddedblue}{rgb}{0.5529,.5686,.8157} % 141,145,208 +\definecolor{defblockheader}{rgb}{.1921,.2235,.6824} % 49,57,174 +\definecolor{flyaddedblue}{rgb}{.5961,.6118,.8431} % 152,156,215 + +% bluish-greys +\definecolor{beetleaddedblue1}{rgb}{.3333,.4039,.6196} % 85 103 158, dark +\definecolor{beetleaddedblue2}{rgb}{.4510,.5098,.7020} % 115 130 179, medium +\definecolor{beetleaddedblue3}{rgb}{.7059,.7255,.7961} % 180 185 203, light (greyest) + +% very light blue-greys +\definecolor{deflightouter1}{rgb}{.7608,.7647,.9020} % 194 195 230, dark +\definecolor{deflightouter2}{rgb}{.8 ,.8039,.9176} % 204 205 234, medium +\definecolor{deflightouter3}{rgb}{.8392,.8431,.9373} % 214 215 239, light + +% reddish colors +\definecolor{flyalertblockheader}{rgb}{.7373,.1294,.1333} % 188 33 34 +\definecolor{flyaddedred}{rgb}{.8667,.5647,.5647}% 221 144 144 +\definecolor{beaverouterframe}{rgb}{.5529,.0980,.0980}% 141 25 25 + +% greens (green is used for 'examples' in beamer) +\definecolor{defexblock}{rgb}{.9098,.9333,.9020} % 232 238 230, light +\definecolor{defaddedgreen}{rgb}{.5412,.6510,.4706} % 138 166 120, medium +\definecolor{defexblockheader}{rgb}{.1686,.3647,.0392} % 43 93 10, dark + +\definecolor{lightexblock}{rgb}{.9137,.9451,.9020} % 233 241 230, light +\definecolor{lightexblockheader}{rgb}{.8235,.8980,.8} % 210 229 204, medium +\definecolor{lightexblockheadertext}{rgb}{.2431,.5098,.0745} % 62 130 19, dark + + +%%% +% Set the normal text color +%%% +\setbeamercolor{normal text}{fg=black,bg=white} + +%%% +% Set the alerted text color +%%% +% \setbeamercolor{alerted text}{fg=red} +\setbeamercolor{alerted text}{fg=red!50!black} % half black/half red for green bg +% \setbeamercolor{alerted text}{fg=beaverouterframe} +% \setbeamercolor{alerted text}{fg=defblockheader} % doesn't stand out enough + + +% Set the 'example' text +\setbeamercolor{example text}{fg=green!50!black} + +\setbeamercolor{structure}{fg=black} + +\setbeamercolor{background canvas}{parent=normal text} +\setbeamercolor{background}{parent=background canvas} + +\setbeamercolor{palette primary}{use=structure,fg=structure.fg} +\setbeamercolor{palette secondary}{use=structure,fg=structure.fg!75!black} +\setbeamercolor{palette tertiary}{use=structure,fg=structure.fg!50!black} +\setbeamercolor{palette quaternary}{fg=black} + +\setbeamercolor{palette sidebar primary}{use=normal text,fg=normal text.fg} +\setbeamercolor{palette sidebar secondary}{use=structure,fg=structure.fg} +\setbeamercolor{palette sidebar tertiary}{use=normal text,fg=normal text.fg} +\setbeamercolor{palette sidebar quaternary}{use=structure,fg=structure.fg} + +\setbeamercolor{math text}{} +\setbeamercolor{math text inlined}{parent=math text} +\setbeamercolor{math text displayed}{parent=math text} + +\setbeamercolor{normal text in math text}{} + +\setbeamercolor{local structure}{parent=structure} + +\setbeamercolor{titlelike}{parent=structure} + +\setbeamercolor{title}{parent=titlelike} +\setbeamercolor{title in head/foot}{parent=palette quaternary} +\setbeamercolor{title in sidebar}{parent=palette sidebar quaternary} + +\setbeamercolor{subtitle}{parent=title} + +\setbeamercolor{author}{} +\setbeamercolor{author in head/foot}{parent=palette primary} +\setbeamercolor{author in sidebar}{use=palette sidebar tertiary,fg=palette sidebar tertiary.fg} + +\setbeamercolor{institute}{} +\setbeamercolor{institute in head/foot}{parent=palette tertiary} +\setbeamercolor{institute in sidebar}{use=palette sidebar tertiary,fg=palette sidebar tertiary.fg} + +\setbeamercolor{date}{} +\setbeamercolor{date in head/foot}{parent=palette secondary} +\setbeamercolor{date in sidebar}{use=palette sidebar tertiary,fg=palette sidebar tertiary.fg} + +\setbeamercolor{titlegraphic}{} + +\setbeamercolor{part name}{} +\setbeamercolor{part title}{parent=titlelike} + +\setbeamercolor{section in toc}{parent=structure} +\setbeamercolor{section in toc shaded}{parent=section in toc} +\setbeamercolor{section in head/foot}{parent=palette tertiary} +\setbeamercolor{section in sidebar}{parent=palette sidebar secondary} +\setbeamercolor{section in sidebar shaded}{use=section in sidebar,fg=section in sidebar.fg!40!bg} +\setbeamercolor{section number projected}{parent=item projected} + +\setbeamercolor{subsection in toc}{} +\setbeamercolor{subsection in toc shaded}{parent=subsection in toc} +\setbeamercolor{subsection in head/foot}{parent=palette secondary} +\setbeamercolor{subsection in sidebar}{parent=palette sidebar primary} +\setbeamercolor{subsection in sidebar shaded}{use=subsection in sidebar,fg=subsection in sidebar.fg!40!bg} +\setbeamercolor{subsection number projected}{parent={subitem projected}} + +\setbeamercolor{subsubsection in toc}{parent=subsection in toc} +\setbeamercolor{subsubsection in toc shaded}{parent=subsubsection in toc} +\setbeamercolor{subsubsection in head/foot}{parent=subsection in head/foot} +\setbeamercolor{subsubsection in sidebar}{parent=subsection in sidebar} +\setbeamercolor{subsubsection in sidebar shaded}{parent=subsection in sidebar shaded} +\setbeamercolor{subsubsection number projected}{parent=subsubitem projected} + +\setbeamercolor{headline}{} +\setbeamercolor{footline}{} + +\setbeamercolor{sidebar}{} +\setbeamercolor{sidebar left}{parent=sidebar} +\setbeamercolor{sidebar right}{parent=sidebar} + +\setbeamercolor{logo}{parent=palette secondary} + +\setbeamercolor{frametitle}{parent=titlelike} +\setbeamercolor{framesubtitle}{parent=frametitle} + +\setbeamercolor{frametitle right}{parent=frametitle} + +\setbeamercolor{caption}{} +\setbeamercolor{caption name}{parent=structure} + +\setbeamercolor{button}{use=local structure,bg=local structure.fg!50!bg,fg=white} +\setbeamercolor{button border}{use=button,fg=button.bg} +\setbeamercolor{navigation symbols}{use=structure,fg=structure.fg!40!bg} +\setbeamercolor{navigation symbols dimmed}{use=structure,fg=structure.fg!20!bg} +\setbeamercolor{mini frame}{parent=section in head/foot} + +% Color expressions are defined in the xcolor package +% +% Ex: Mixture of 40% green, 60% yellow: green!40!yellow +% +% The complement of any color can be obtained by prepending +% a minus sign: -green!40!yellow +% +% One can also combine up to three colors (in differing proportions) +% using the rgb command. For example, the following command combines +% 3 parts of the first color, with 2 parts of the second, and one part +% "red" +% +%\color{rgb:-green!40!yellow,3;green!40!yellow,2;red,1} +% Unfortunately, I don't think this works as an argument to setbeamercolor... +% "Orange" bg=green!30!yellow!30!red +% close to burnt orange: red!75!green +% lightgray is a color, but gray!25!white looks better +% +% A nice pair of greens +% (dark, a little too dark to be under black text...) -red!75!green!50!blue!25 +% (light) -red!75!green!50!blue!25!gray +% +% Some colors are only available via options to the xcolor package, eg. +% x11names,DarkOliveGreen4 +% svgnames, Chartreuse +% dvipsnames, ForestGreen +% +% but beamer does not seem to have any of these. +% +% The base color names which are always available are: +% black +% blue +% brown +% cyan +% darkgray +% gray +% green +% lightgray +% lime +% magenta +% olive +% orange +% pink +% purple +% red +% teal +% violet +% white +% yellow + +% From the beamer user guide, pg. 167 +% Inner color themes only specify the colors of elements used in inner +% themes. Most noticably, they specify the colors used for blocks. +% ... + +% Example color definition +% beamercolorthemedefault.sty:\definecolor{beamer@blendedblue}{rgb}{0.2,0.2,0.7} +% beamercolorthemedefault.sty:\setbeamercolor{structure}{fg=beamer@blendedblue} + +% The greens +% \setbeamercolor{block body}{bg=-red!75!green!50!blue!25!gray} +% \setbeamercolor{block title}{parent=structure,bg=-red!75!green!50!blue!25,fg=-red!75!green!50!blue!25!gray} + +%%% +% Set the block body and title background/foreground colors +%%% +% \setbeamercolor{block body}{bg=flyaddedblue} +% \setbeamercolor{block title}{bg=defblockheader,fg=flyaddedblue} + +% Purplish blues, too dark overall +% \setbeamercolor{block body}{bg=beetleaddedblue3} +% \setbeamercolor{block title}{bg=beetleaddedblue2,fg=beetleaddedblue3} + +% Very light blue greys +% 1. Not enough contrast +% \setbeamercolor{block body}{bg=deflightouter3} +% \setbeamercolor{block title}{bg=deflightouter2,fg=deflightouter3} + +% 2. Not enough contrast +% \setbeamercolor{block body}{bg=deflightouter3} +% \setbeamercolor{block title}{bg=deflightouter1,fg=deflightouter3} + +% 3. Combination of deflightouter and fly. The block bg is +% lighter than the all-beetle color scheme I previously thought was best. +% Currently I like this one the best +\setbeamercolor{block body}{bg=deflightouter3} +\setbeamercolor{block title}{bg=beetleaddedblue2,fg=deflightouter3} + +% 4. Greens. Looks like a highlighter. I don't really trust greens +% on projectors... It's almost too bright/hurts your eyes. +% \setbeamercolor{block body}{bg=defexblock} +% \setbeamercolor{block title}{bg=defaddedgreen,fg=defexblock} + +% This looks pretty good ... it's similar to the greens we had before +% but should be lighter. The blocks are just a little too "mint" colored +% though... +% \setbeamercolor{block body}{bg=defexblock} +% \setbeamercolor{block title}{bg=defexblockheader,fg=defexblock} + +% Pea Soup! +%\setbeamercolor{block body}{bg=defaddedgreen} +%\setbeamercolor{block title}{bg=defexblockheader,fg=defaddedgreen} + + +% Changing these didn't seem to do anything...I had to change the +% 'alerted text' color instead +\setbeamercolor{block body alerted}{} +\setbeamercolor{block body example}{} +\setbeamercolor{block title alerted}{parent=alerted text} +\setbeamercolor{block title example}{parent=example text} + +\setbeamercolor{item}{parent=local structure} +\setbeamercolor{subitem}{parent=item} +\setbeamercolor{subsubitem}{parent=subitem} + +\setbeamercolor{item projected}{parent=item,use=item,fg=white,bg=item.fg} +\setbeamercolor{subitem projected}{parent=item projected} +\setbeamercolor{subsubitem projected}{parent=subitem projected} + +\setbeamercolor{enumerate item}{parent=item} +\setbeamercolor{enumerate subitem}{parent=subitem} +\setbeamercolor{enumerate subsubitem}{parent=subsubitem} + +\setbeamercolor{itemize item}{parent=item} +\setbeamercolor{itemize subitem}{parent=subitem} +\setbeamercolor{itemize subsubitem}{parent=subsubitem} + +\setbeamercolor{itemize/enumerate body}{} +\setbeamercolor{itemize/enumerate subbody}{} +\setbeamercolor{itemize/enumerate subsubbody}{} + +\setbeamercolor{description item}{parent=item} + +\setbeamercolor{bibliography item}{parent=item} + +\setbeamercolor{bibliography entry author}{use=structure,fg=structure.fg} +\setbeamercolor{bibliography entry title}{use=normal text,fg=normal text.fg} +\setbeamercolor{bibliography entry location}{use=structure,fg=structure.fg!65!bg} +\setbeamercolor{bibliography entry note}{use=structure,fg=structure.fg!65!bg} + +\setbeamercolor{separation line}{} + +\setbeamercolor{upper separation line head}{parent=separation line} +\setbeamercolor{middle separation line head}{parent=separation line} +\setbeamercolor{lower separation line head}{parent=separation line} + +\setbeamercolor{upper separation line foot}{parent=separation line} +\setbeamercolor{middle separation line foot}{parent=separation line} +\setbeamercolor{lower separation line foot}{parent=separation line} + +\setbeamercolor{abstract}{} +\setbeamercolor{abstract title}{parent=structure} + +\setbeamercolor{verse}{} + +\setbeamercolor{quotation}{} +\setbeamercolor{quote}{parent=quotation} + +\setbeamercolor{page number in head/foot}{fg=fg!50!bg} + +\setbeamercolor{qed symbol}{parent=structure} + +\mode + diff --git a/my_docs/23/lmod_zoom_mtg_2023_01_10/beamercolorthemeTACC16.sty b/my_docs/23/lmod_zoom_mtg_2023_01_10/beamercolorthemeTACC16.sty deleted file mode 120000 index 58415801b..000000000 --- a/my_docs/23/lmod_zoom_mtg_2023_01_10/beamercolorthemeTACC16.sty +++ /dev/null @@ -1 +0,0 @@ -../../beamer/beamercolorthemeTACC16.sty \ No newline at end of file diff --git a/my_docs/23/lmod_zoom_mtg_2023_01_10/beamercolorthemeTACC16.sty b/my_docs/23/lmod_zoom_mtg_2023_01_10/beamercolorthemeTACC16.sty new file mode 100755 index 000000000..779dde91f --- /dev/null +++ b/my_docs/23/lmod_zoom_mtg_2023_01_10/beamercolorthemeTACC16.sty @@ -0,0 +1,192 @@ +% Copyright 2003 by Till Tantau . +% +% This program can be redistributed and/or modified under the terms +% of the GNU Public License, version 2. + +\mode + +\usepackage{textcase,regexpatch} + +\setbeamertemplate{blocks}[rounded][shadow=true] + + +\definecolor{TACCred}{RGB}{180,13,29} +\definecolor{TACCorange}{RGB}{210,104,43} +\definecolor{TACCblue}{RGB}{108, 134, 191} +\definecolor{TACCgreen}{RGB}{23,106,70} + +% I downloaded a gimp color palette from +% http://maururu.net/2007/latex-beamer-color-palette/ +% Which provides rgb values (I think) for several of the +% default beamer themes. You can open this in gimp by +% opening the Palettes dialog, right-clicking anywhere and choosing +% 'Import Palette'. A color in there called 'default added blue' +% appeared to be approximately what I wanted. It had the triple +% of values 141 145 208. If you double-click on this in the +% palette editor it gives you a bunch of information. You can't +% use these values directly to set a color...it just comes out white. +% I think definecolor is expecting something normalized by 255. Yes! + + +%%% +% Set the normal text color +%%% +\setbeamercolor{normal text}{fg=black} %,bg=white} +\setbeamercolor{example text}{fg=TACCgreen} +\setbeamercolor{alerted text}{fg=TACCorange} + + +\setbeamercolor{structure}{fg=black} +%\setbeamercolor{structure}{fg=black} + +\setbeamercolor{background canvas}{parent=normal text} +\setbeamercolor{background}{parent=background canvas} + +\setbeamercolor{palette primary}{use=structure,fg=structure.fg} +\setbeamercolor{palette secondary}{use=structure,fg=structure.fg!75!black} +\setbeamercolor{palette tertiary}{use=structure,fg=structure.fg!50!black} +\setbeamercolor{palette quaternary}{fg=black} + +\setbeamercolor{palette sidebar primary}{use=normal text,fg=normal text.fg} +\setbeamercolor{palette sidebar secondary}{use=structure,fg=structure.fg} +\setbeamercolor{palette sidebar tertiary}{use=normal text,fg=normal text.fg} +\setbeamercolor{palette sidebar quaternary}{use=structure,fg=structure.fg} + +\setbeamercolor{math text}{} +\setbeamercolor{math text inlined}{parent=math text} +\setbeamercolor{math text displayed}{parent=math text} + +\setbeamercolor{normal text in math text}{} + +\setbeamercolor{local structure}{parent=structure} + +\setbeamercolor{titlelike}{parent=structure} + +\setbeamercolor{title}{parent=titlelike} +\setbeamercolor{title in head/foot}{parent=palette quaternary} +\setbeamercolor{title in sidebar}{parent=palette sidebar quaternary} + +\setbeamercolor{subtitle}{parent=title} + +\setbeamercolor{author}{} +\setbeamercolor{author in head/foot}{parent=palette primary} +\setbeamercolor{author in sidebar}{use=palette sidebar tertiary,fg=palette sidebar tertiary.fg} + +\setbeamercolor{institute}{} +\setbeamercolor{institute in head/foot}{parent=palette tertiary} +\setbeamercolor{institute in sidebar}{use=palette sidebar tertiary,fg=palette sidebar tertiary.fg} + +\setbeamercolor{date}{} +\setbeamercolor{date in head/foot}{parent=palette secondary} +\setbeamercolor{date in sidebar}{use=palette sidebar tertiary,fg=palette sidebar tertiary.fg} + +\setbeamercolor{titlegraphic}{} + +\setbeamercolor{part name}{} +\setbeamercolor{part title}{parent=titlelike} + +\setbeamercolor{section in toc}{parent=structure} +\setbeamercolor{section in toc shaded}{parent=section in toc} +\setbeamercolor{section in head/foot}{parent=palette tertiary} +\setbeamercolor{section in sidebar}{parent=palette sidebar secondary} +\setbeamercolor{section in sidebar shaded}{use=section in sidebar,fg=section in sidebar.fg!40!bg} +\setbeamercolor{section number projected}{parent=item projected} + +\setbeamercolor{subsection in toc}{} +\setbeamercolor{subsection in toc shaded}{parent=subsection in toc} +\setbeamercolor{subsection in head/foot}{parent=palette secondary} +\setbeamercolor{subsection in sidebar}{parent=palette sidebar primary} +\setbeamercolor{subsection in sidebar shaded}{use=subsection in sidebar,fg=subsection in sidebar.fg!40!bg} +\setbeamercolor{subsection number projected}{parent={subitem projected}} + +\setbeamercolor{subsubsection in toc}{parent=subsection in toc} +\setbeamercolor{subsubsection in toc shaded}{parent=subsubsection in toc} +\setbeamercolor{subsubsection in head/foot}{parent=subsection in head/foot} +\setbeamercolor{subsubsection in sidebar}{parent=subsection in sidebar} +\setbeamercolor{subsubsection in sidebar shaded}{parent=subsection in sidebar shaded} +\setbeamercolor{subsubsection number projected}{parent=subsubitem projected} + +\setbeamercolor{headline}{} +\setbeamercolor{footline}{} + +\setbeamercolor{sidebar}{} +\setbeamercolor{sidebar left}{parent=sidebar} +\setbeamercolor{sidebar right}{parent=sidebar} + +\setbeamercolor{logo}{parent=palette secondary} + +\setbeamercolor{frametitle}{parent=titlelike} +\setbeamercolor{framesubtitle}{parent=frametitle} + +\setbeamercolor{frametitle right}{parent=frametitle} + +\setbeamercolor{caption}{} +\setbeamercolor{caption name}{parent=structure} + +\setbeamercolor{button}{use=local structure,bg=local structure.fg!50!bg,fg=white} +\setbeamercolor{button border}{use=button,fg=button.bg} +\setbeamercolor{navigation symbols}{use=structure,fg=structure.fg!40!bg} +\setbeamercolor{navigation symbols dimmed}{use=structure,fg=structure.fg!20!bg} +\setbeamercolor{mini frame}{parent=section in head/foot} + +\setbeamercolor{block body}{fg=black} +\setbeamercolor{block body alerted}{fg=black} +\setbeamercolor{block body example}{fg=black} + +\setbeamercolor{block title}{bg=TACCblue,fg=white} +\setbeamercolor{block title alerted}{bg=TACCred,fg=white} +\setbeamercolor{block title example}{bg=TACCgreen,fg=white} + +\setbeamercolor{item}{parent=local structure} +\setbeamercolor{subitem}{parent=item} +\setbeamercolor{subsubitem}{parent=subitem} + +\setbeamercolor{item projected}{parent=item,use=item,fg=black,bg=item.fg} +\setbeamercolor{subitem projected}{parent=item projected} +\setbeamercolor{subsubitem projected}{parent=subitem projected} + +\setbeamercolor{enumerate item}{parent=item} +\setbeamercolor{enumerate subitem}{parent=subitem} +\setbeamercolor{enumerate subsubitem}{parent=subsubitem} + +\setbeamercolor{itemize item}{parent=item} +\setbeamercolor{itemize subitem}{parent=subitem} +\setbeamercolor{itemize subsubitem}{parent=subsubitem} + +\setbeamercolor{itemize/enumerate body}{} +\setbeamercolor{itemize/enumerate subbody}{} +\setbeamercolor{itemize/enumerate subsubbody}{} + +\setbeamercolor{description item}{parent=item} + +\setbeamercolor{bibliography item}{parent=item} + +\setbeamercolor{bibliography entry author}{use=structure,fg=structure.fg} +\setbeamercolor{bibliography entry title}{use=normal text,fg=normal text.fg} +\setbeamercolor{bibliography entry location}{use=structure,fg=structure.fg!65!bg} +\setbeamercolor{bibliography entry note}{use=structure,fg=structure.fg!65!bg} + +\setbeamercolor{separation line}{} + +\setbeamercolor{upper separation line head}{parent=separation line} +\setbeamercolor{middle separation line head}{parent=separation line} +\setbeamercolor{lower separation line head}{parent=separation line} + +\setbeamercolor{upper separation line foot}{parent=separation line} +\setbeamercolor{middle separation line foot}{parent=separation line} +\setbeamercolor{lower separation line foot}{parent=separation line} + +\setbeamercolor{abstract}{} +\setbeamercolor{abstract title}{parent=structure} + +\setbeamercolor{verse}{} + +\setbeamercolor{quotation}{} +\setbeamercolor{quote}{parent=quotation} + +\setbeamercolor{page number in head/foot}{fg=fg!50!bg} + +\setbeamercolor{qed symbol}{parent=structure} + +\mode + diff --git a/my_docs/23/lmod_zoom_mtg_2023_01_10/beamerfontthemeTACC.sty b/my_docs/23/lmod_zoom_mtg_2023_01_10/beamerfontthemeTACC.sty deleted file mode 120000 index 78e971fb8..000000000 --- a/my_docs/23/lmod_zoom_mtg_2023_01_10/beamerfontthemeTACC.sty +++ /dev/null @@ -1 +0,0 @@ -../../beamer/beamerfontthemeTACC.sty \ No newline at end of file diff --git a/my_docs/23/lmod_zoom_mtg_2023_01_10/beamerfontthemeTACC.sty b/my_docs/23/lmod_zoom_mtg_2023_01_10/beamerfontthemeTACC.sty new file mode 100755 index 000000000..ef9ce1e5e --- /dev/null +++ b/my_docs/23/lmod_zoom_mtg_2023_01_10/beamerfontthemeTACC.sty @@ -0,0 +1,12 @@ +% Copyright 2003 by Till Tantau +% +% This program can be redistributed and/or modified under the terms +% of the GNU Public License, version 2. + +\mode + +\setbeamerfont{frametitle}{parent=structure,size=\LARGE,series=\bfseries} +\setbeamerfont{framesubtitle}{parent=frametitle,size=\small} + +\mode + \ No newline at end of file diff --git a/my_docs/23/lmod_zoom_mtg_2023_01_10/beamerfontthemeTACC16.sty b/my_docs/23/lmod_zoom_mtg_2023_01_10/beamerfontthemeTACC16.sty deleted file mode 120000 index a1f2fa5f9..000000000 --- a/my_docs/23/lmod_zoom_mtg_2023_01_10/beamerfontthemeTACC16.sty +++ /dev/null @@ -1 +0,0 @@ -../../beamer/beamerfontthemeTACC16.sty \ No newline at end of file diff --git a/my_docs/23/lmod_zoom_mtg_2023_01_10/beamerfontthemeTACC16.sty b/my_docs/23/lmod_zoom_mtg_2023_01_10/beamerfontthemeTACC16.sty new file mode 100755 index 000000000..b65271835 --- /dev/null +++ b/my_docs/23/lmod_zoom_mtg_2023_01_10/beamerfontthemeTACC16.sty @@ -0,0 +1,21 @@ +% Copyright 2003 by Till Tantau +% +% This program can be redistributed and/or modified under the terms +% of the GNU Public License, version 2. + +\mode +\setbeamerfont{title}{parent=structure,size=\LARGE,series=\bfseries} +\setbeamerfont{author}{parent=structure,size=\large, series=\normalfont} +\setbeamerfont{frametitle}{parent=structure,size=\LARGE,series=\bfseries} +\setbeamerfont{framesubtitle}{parent=frametitle,size=\small} + +%\usefonttheme{professionalfonts} % using non standard fonts for beamer +%\usefonttheme{serif} % default family is serif +%\usepackage{fontspec} +%\setmainfont{Century Gothic} + +\usepackage{fontspec} +\usepackage{libertine} + +\mode + diff --git a/my_docs/23/lmod_zoom_mtg_2023_01_10/beamerinnerthemeTACC.sty b/my_docs/23/lmod_zoom_mtg_2023_01_10/beamerinnerthemeTACC.sty deleted file mode 120000 index 8d5ae3921..000000000 --- a/my_docs/23/lmod_zoom_mtg_2023_01_10/beamerinnerthemeTACC.sty +++ /dev/null @@ -1 +0,0 @@ -../../beamer/beamerinnerthemeTACC.sty \ No newline at end of file diff --git a/my_docs/23/lmod_zoom_mtg_2023_01_10/beamerinnerthemeTACC.sty b/my_docs/23/lmod_zoom_mtg_2023_01_10/beamerinnerthemeTACC.sty new file mode 100755 index 000000000..29e2bce81 --- /dev/null +++ b/my_docs/23/lmod_zoom_mtg_2023_01_10/beamerinnerthemeTACC.sty @@ -0,0 +1,11 @@ +\mode + +\setbeamertemplate{itemize item}[circle] +\setbeamertemplate{itemize subitem}{{}--{}} +\setbeamertemplate{itemize subsubitem}[circle] +\setbeamertemplate{section in toc}{$\bullet$\hskip.5em\inserttocsection} +%\setbeamertemplate{subsection in toc}{} +\setbeamertemplate{subsubsection in toc}{} + +\mode + diff --git a/my_docs/23/lmod_zoom_mtg_2023_01_10/beamerinnerthemeTACC16.sty b/my_docs/23/lmod_zoom_mtg_2023_01_10/beamerinnerthemeTACC16.sty deleted file mode 120000 index 5955acc99..000000000 --- a/my_docs/23/lmod_zoom_mtg_2023_01_10/beamerinnerthemeTACC16.sty +++ /dev/null @@ -1 +0,0 @@ -../../beamer/beamerinnerthemeTACC16.sty \ No newline at end of file diff --git a/my_docs/23/lmod_zoom_mtg_2023_01_10/beamerinnerthemeTACC16.sty b/my_docs/23/lmod_zoom_mtg_2023_01_10/beamerinnerthemeTACC16.sty new file mode 100755 index 000000000..f7f454e1d --- /dev/null +++ b/my_docs/23/lmod_zoom_mtg_2023_01_10/beamerinnerthemeTACC16.sty @@ -0,0 +1,11 @@ +\mode + +\setbeamertemplate{itemize item}[triangle] +\setbeamertemplate{itemize subitem}[triangle] +\setbeamertemplate{itemize subsubitem}[triangle] +\setbeamertemplate{section in toc}{$\bullet$\hskip.5em\inserttocsection} +%\setbeamertemplate{subsection in toc}{} +\setbeamertemplate{subsubsection in toc}{} + +\mode + diff --git a/my_docs/23/lmod_zoom_mtg_2023_01_10/beamerouterthemeTACC.sty b/my_docs/23/lmod_zoom_mtg_2023_01_10/beamerouterthemeTACC.sty deleted file mode 120000 index da0a45d33..000000000 --- a/my_docs/23/lmod_zoom_mtg_2023_01_10/beamerouterthemeTACC.sty +++ /dev/null @@ -1 +0,0 @@ -../../beamer/beamerouterthemeTACC.sty \ No newline at end of file diff --git a/my_docs/23/lmod_zoom_mtg_2023_01_10/beamerouterthemeTACC.sty b/my_docs/23/lmod_zoom_mtg_2023_01_10/beamerouterthemeTACC.sty new file mode 100755 index 000000000..038580303 --- /dev/null +++ b/my_docs/23/lmod_zoom_mtg_2023_01_10/beamerouterthemeTACC.sty @@ -0,0 +1,196 @@ +% Copyright 2003 by Till Tantau +% +% This program can be redistributed and/or modified under the terms +% of the GNU Public License, version 2. + +\mode + +\setbeamertemplate{frametitle}[default][center] +\addtobeamertemplate{frametitle}{\vskip 4ex minus 4ex}{} + +% Here we define what appears at the bottom of each slide: the "footline". +\setbeamertemplate{footline}{% + \leavevmode% + + % Horizontal line dividing the rest of the slide from the footer? + % hrule goes all the way across... + % \hrule height.3pt% + % With \rule, you can specify the thickness + % \rule[raise-height]{width}{thickness} + \hspace{.025\textwidth}\rule{.95\textwidth}{.5pt} + + \hbox{% + % On the left half of the footer, insert the TACC logo + \begin{minipage}{.5\textwidth}% + \hskip .033\textwidth%Give horizontal space else this will set on the left edge of the slide! + % TACC logo with custom viewport! + \includegraphics[viewport=1 -1 135 35, clip=true, width=.4\textwidth]{figures/TACC_logo} + \end{minipage} + % + \begin{minipage}{.5\textwidth}% + \vskip .023\textheight% + \raggedleft% + \setlength{\rightskip}{.033\textwidth} + % + % If we are not on the first page, insert a page number + % For some reason, insertframenumber is buggy when you have fragile + % slides with verbatim environments in them... it tends to skip numbers + % for some reason! On the other hand, the pagenumber is incremented + % for *every* slide, including transition slides... + \ifnum \thepage>1 + % \insertshorttitle + \insertframenumber + % \insertframenumber/\inserttotalframenumber + % \insertpagenumber + \else % Do a phantom of whatever you do on other pages, so spacing matches + %$\phantom{\insertshorttitle}$ + $\phantom{\insertframenumber}$ + %$\phantom{\insertframenumber/\inserttotalframenumber}$ + %$\phantom{\insertpagenumber}$ + \fi + \hfill\includegraphics[width=.5\textwidth]{figures/UT_logo}% + \end{minipage}% + }% + \vskip .023\textheight% +} + + + + +\ifTACCheadernav + +\usesectionheadtemplate +{\hfill\insertsectionhead} +{\hfill\color{fg!50!bg}\insertsectionhead} + +% Head +\ifbeamer@compress + +% Here we define how the top of the frame looks, the "headline". +\setbeamertemplate{headline} +{% + \ifnum \thepage>1 + \leavevmode% + \begin{beamercolorbox}[wd=.5\paperwidth,ht=2.5ex,dp=1.125ex]{% + section in head/foot}% + \insertsectionnavigationhorizontal{.5\paperwidth}{\hskip0pt plus1filll}{}% + \end{beamercolorbox}% + \begin{beamercolorbox}[wd=.5\paperwidth,ht=2.5ex,dp=1.125ex]{% + subsection in head/foot}% + \insertsubsectionnavigationhorizontal{% + .5\paperwidth}{}{\hskip0pt plus1filll}% + \end{beamercolorbox}% + \fi %\thepage>1 +} + +\else% Not compressed + +\setbeamertemplate{headline} +{% + \ifnum \thepage>1 + \leavevmode% + \@tempdimb=2.4375ex% + \ifnum\beamer@subsectionmax<\beamer@sectionmax% + \multiply\@tempdimb by\beamer@sectionmax% + \else% + \multiply\@tempdimb by\beamer@subsectionmax% + \fi% + \ifdim\@tempdimb>0pt% + \advance\@tempdimb by 1.125ex% + \begin{beamercolorbox}[wd=.5\paperwidth,ht=\@tempdimb]{% + section in head/foot}% + \vbox to\@tempdimb{\vfil\insertsectionnavigation{.5\paperwidth}\vfil}% + \end{beamercolorbox}% + \begin{beamercolorbox}[wd=.5\paperwidth,ht=\@tempdimb]{% + subsection in head/foot}% + \vbox to\@tempdimb{\vfil\insertsubsectionnavigation{.5\paperwidth}\vfil}% + \end{beamercolorbox}% + \fi% + \fi % \thepage>1 +} + +\fi % end if compressed +\fi % TACCheadernav + + +\ifTACCheadertree + +\setbeamertemplate{headline} +{ + \begin{beamercolorbox}[wd=\paperwidth,colsep=1.5pt + ]{upper separation line head} + \end{beamercolorbox} + % + % Place short title + % + \begin{beamercolorbox}[wd=\paperwidth,ht=2.5ex,dp=1.125ex,% + leftskip=.3cm,rightskip=.3cm plus1fil]{title in head/foot} + \usebeamerfont{title in head/foot}\insertshorttitle + \end{beamercolorbox} + + % + % Place section + % + \begin{beamercolorbox}[wd=\paperwidth,ht=2.5ex,dp=1.125ex,% + leftskip=.3cm,rightskip=.3cm plus1fil]{section in head/foot} + \usebeamerfont{section in head/foot}% + %\ifbeamer@tree@showhooks + \setbox\beamer@tempbox=\hbox{\insertsectionhead}% + \ifdim\wd\beamer@tempbox>1pt% + \hskip2pt\raise1.9pt\hbox{\vrule width0.4pt height1.875ex\vrule width 5pt height0.4pt}% + \hskip1pt% + \fi% \ifdim + %\else% + %\hskip6pt% + %\fi% \ifbeamer + \insertsectionhead + \end{beamercolorbox} + +% +% Place subsection +% +\begin{beamercolorbox}[wd=\paperwidth,ht=2.5ex,dp=1.125ex,% + leftskip=.3cm,rightskip=.3cm plus1fil]{subsection in head/foot} + \usebeamerfont{subsection in head/foot}% + %\ifbeamer@tree@showhooks + \setbox\beamer@tempbox=\hbox{\insertsubsectionhead}% + \ifdim\wd\beamer@tempbox>1pt% + \hskip9.4pt\raise1.9pt\hbox{\vrule width0.4pt height1.875ex\vrule width 5pt height0.4pt}% + \hskip1pt% + \fi% \ifdim + %\else% + %\hskip12pt% + %\fi% \ifbeamer + \insertsubsectionhead +\end{beamercolorbox} + +% +% Place final separation box +% + \begin{beamercolorbox}[wd=\paperwidth,colsep=1.5pt + ]{lower separation line head} + \end{beamercolorbox} + + % + % Another matching rule which helps to frame the content + % + \hspace{.025\textwidth}\rule{.95\textwidth}{.5pt} +} +\fi % TACCheadertree + + +% The following command suppresses all navigation symbols. This is +% necessary in the TACC theme, since it overlaps where we want the +% logo to be. +\setbeamertemplate{navigation symbols}{} + +% Align the navigation symbols vertically (still overlaps our logo!) +%\setbeamertemplate{navigation symbols}[vertical]{} + +% Only places the slide-forward and slide-back symbol, but yes, +% this still overlaps our logo! +%\setbeamertemplate{navigation symbols}[only frame symbol]{} + + +\mode + diff --git a/my_docs/23/lmod_zoom_mtg_2023_01_10/beamerouterthemeTACC16.sty b/my_docs/23/lmod_zoom_mtg_2023_01_10/beamerouterthemeTACC16.sty deleted file mode 120000 index 54bd09537..000000000 --- a/my_docs/23/lmod_zoom_mtg_2023_01_10/beamerouterthemeTACC16.sty +++ /dev/null @@ -1 +0,0 @@ -../../beamer/beamerouterthemeTACC16.sty \ No newline at end of file diff --git a/my_docs/23/lmod_zoom_mtg_2023_01_10/beamerouterthemeTACC16.sty b/my_docs/23/lmod_zoom_mtg_2023_01_10/beamerouterthemeTACC16.sty new file mode 100755 index 000000000..d5e6388c7 --- /dev/null +++ b/my_docs/23/lmod_zoom_mtg_2023_01_10/beamerouterthemeTACC16.sty @@ -0,0 +1,312 @@ +% Antonio Gomez (agomez@tacc.utexas.edu) +% 4-20-17. Added option to put the footer on the right side + + + +\mode + +\usepackage{xcolor} +\usepackage{graphicx} +\usepackage{etoolbox} + + + +% This theme accepts the "rightfooter" option +% When used, it will put the TACC logo at the bottom of the slide on the right side +% By default, it goes to the left + +\xifaspectratio{ + {169} { + \pgfdeclareimage[width=\paperwidth]{titlebackground}{./figures/master169.jpg} + \if@rightfooterOption + \pgfdeclareimage[width=\paperwidth]{background}{./figures/secondary_right169.jpg} +\else + \pgfdeclareimage[width=\paperwidth]{background}{./figures/secondary169.jpg} +\fi +} +}[ +\pgfdeclareimage[width=\paperwidth]{titlebackground}{./figures/master.jpg} + \if@rightfooterOption + \pgfdeclareimage[width=\paperwidth]{background}{./figures/secondary_right.jpg} +\else + \pgfdeclareimage[width=\paperwidth]{background}{./figures/secondary.jpg} +\fi +] + +\setbeamertemplate{background canvas}{% +\xifaspectratio{ + {169} { + \ifnum\c@framenumber=1 % + \begin{picture}(0,0) + \put(-3,-256){% + \pgfuseimage{titlebackground} + } + \end{picture} + \else% + \begin{picture}(0,0) + \put(-3,-260){% + \pgfuseimage{background} + } + \end{picture} + \fi + } + {43} { + \ifnum\c@framenumber=1 % + \begin{picture}(0,0) + \put(-4,-274){% + \pgfuseimage{titlebackground} + } + \end{picture} + \else% + \begin{picture}(0,0) + \put(-4,-274){% + \pgfuseimage{background} + } + \end{picture} + \fi + } +} +} + + + +%\setbeamertemplate{background canvas}{% +% % On title page +% \ifnum\c@framenumber=1 % +% \begin{picture}(0,0) +% \put(0,-253){% +% \pgfuseimage{titlebackground} +% } +% \end{picture} +% +% \else% +% \xifaspectratio{ +% {169} { +% % Other frames background +% \begin{picture}(0,0) +% \put(-4,-260){% +% \pgfuseimage{background} +% } +% \end{picture} +% } +% }[ +% % Other frames background +% \begin{picture}(0,0) +% \put(-4,-274){% +% \pgfuseimage{background} +% } +% \end{picture} +% ] +% \fi% +%} + + +\setbeamertemplate{title page}{ +\vspace{40pt} +\begin{center} +\usebeamerfont{title} {\huge \inserttitle}\par +\vspace{4ex} +\usebeamerfont{author} { + \insertauthor +}\par +\vspace{2ex} +\usebeamerfont{institute}{ + \insertinstitute +} \par +\vspace{2ex} +\usebeamerfont{date}{ + \insertdate +} +\end{center} +} + + +\setbeamertemplate{frametitle}[default][center] +\setbeamertemplate{frametitle}{ + \makeatletter + \regexpatchcmd{\insertframetitle} + {(\c{usebeamertemplate}.*)\c{fi}} + {\c{NoCaseChange}\cB\{\1\cE\}\c{fi}} + {}{}% + \makeatother + \vskip1ex + \insertframetitle +} + +% Here we define what appears at the bottom of each slide: the "footline". +\setbeamertemplate{footline}{% + \leavevmode% + + % Horizontal line dividing the rest of the slide from the footer? + % hrule goes all the way across... + % \hrule height.3pt% + % With \rule, you can specify the thickness + % \rule[raise-height]{width}{thickness} + % \hspace{.025\textwidth}\rule{.95\textwidth}{.5pt} + + \hbox{% + \ifnum \thepage>1 + \if@rightfooterOption + \begin{minipage}{.2\textwidth}% + \hskip .05\textwidth%Give horizontal space else this will set on the left edge of the slide! + \end{minipage} + \else + \begin{minipage}{.4\textwidth}% + \hskip .05\textwidth%Give horizontal space else this will set on the left edge of the slide! + \end{minipage} + \fi + + + \begin{minipage}{\textwidth}% + % \vskip .023\textheight% + \raggedleft% + \setlength{\rightskip}{\textwidth} + \if@rightfooterOption + \hbox{% + \begin{beamercolorbox}[wd=0.7\textwidth,ht=2.25ex,dp=1ex,left]{author in head/foot}% + \insertshorttitle{} \hskip .01\textwidth | \hskip .01\textwidth \insertdate{} \hskip .01\textwidth | \hskip .01\textwidth \insertframenumber{} + \end{beamercolorbox}% + } + \else + \hbox{% + \begin{beamercolorbox}[wd=0.5\textwidth,ht=2.25ex,dp=1ex,left]{author in head/foot}% + \insertshorttitle{} \hskip .01\textwidth | \hskip .01\textwidth \insertdate{} \hskip .01\textwidth | \hskip .01\textwidth \insertframenumber{} + \end{beamercolorbox}% + } + \fi + + \end{minipage}% + \begin{minipage}{.05\textwidth}% + \end{minipage}% + \fi %\thepage>1 + }% + \vskip .023\textheight% + +} + + + + +\ifTACCheadernav + +\usesectionheadtemplate +{\hfill\insertsectionhead} +{\hfill\color{fg!50!bg}\insertsectionhead} + +% Head +\ifbeamer@compress + +% Here we define how the top of the frame looks, the "headline". +\setbeamertemplate{headline} +{% + \ifnum \thepage>1 + \leavevmode% + \begin{beamercolorbox}[wd=.5\paperwidth,ht=2.5ex,dp=1.125ex]{% + section in head/foot}% + \insertsectionnavigationhorizontal{.5\paperwidth}{\hskip0pt plus1filll}{}% + \end{beamercolorbox}% + \begin{beamercolorbox}[wd=.5\paperwidth,ht=2.5ex,dp=1.125ex]{% + subsection in head/foot}% + \insertsubsectionnavigationhorizontal{% + .5\paperwidth}{}{\hskip0pt plus1filll}% + \end{beamercolorbox}% + \fi %\thepage>1 +} + +\else% Not compressed + +\setbeamertemplate{headline} +{% + \ifnum \thepage>1 + \leavevmode% + \@tempdimb=2.4375ex% + \ifnum\beamer@subsectionmax<\beamer@sectionmax% + \multiply\@tempdimb by\beamer@sectionmax% + \else% + \multiply\@tempdimb by\beamer@subsectionmax% + \fi% + \ifdim\@tempdimb>0pt% + \advance\@tempdimb by 1.125ex% + \begin{beamercolorbox}[wd=.5\paperwidth,ht=\@tempdimb]{% + section in head/foot}% + \vbox to\@tempdimb{\vfil\insertsectionnavigation{.5\paperwidth}\vfil}% + \end{beamercolorbox}% + \begin{beamercolorbox}[wd=.5\paperwidth,ht=\@tempdimb]{% + subsection in head/foot}% + \vbox to\@tempdimb{\vfil\insertsubsectionnavigation{.5\paperwidth}\vfil}% + \end{beamercolorbox}% + \fi% + \fi % \thepage>1 +} + +\fi % end if compressed +\fi % TACCheadernav + + +\ifTACCheadertree + +\setbeamertemplate{headline} +{ + \begin{beamercolorbox}[wd=\paperwidth,colsep=1.5pt]{upper separation line head} + \end{beamercolorbox} + % + % Place short title + % + \begin{beamercolorbox}[wd=\paperwidth,ht=2.5ex,dp=1.125ex,% + leftskip=.3cm,rightskip=.3cm plus1fil]{title in head/foot} + \usebeamerfont{title in head/foot}\insertshorttitle + \end{beamercolorbox} + + % + % Place section + % + \begin{beamercolorbox}[wd=\paperwidth,ht=2.5ex,dp=1.125ex,% + leftskip=.3cm,rightskip=.3cm plus1fil]{section in head/foot} + \usebeamerfont{section in head/foot}% + %\ifbeamer@tree@showhooks + \setbox\beamer@tempbox=\hbox{\insertsectionhead}% + \ifdim\wd\beamer@tempbox>1pt% + \hskip2pt\raise1.9pt\hbox{\vrule width0.4pt height1.875ex\vrule width 5pt height0.4pt}% + \hskip1pt% + \fi + \insertsectionhead + \end{beamercolorbox} + +% +% Place subsection +% +\begin{beamercolorbox}[wd=\paperwidth,ht=2.5ex,dp=1.125ex,% + leftskip=.3cm,rightskip=.3cm plus1fil]{subsection in head/foot} + \usebeamerfont{subsection in head/foot}% + %\ifbeamer@tree@showhooks + \setbox\beamer@tempbox=\hbox{\insertsubsectionhead}% + \ifdim\wd\beamer@tempbox>1pt% + \hskip9.4pt\raise1.9pt\hbox{\vrule width0.4pt height1.875ex\vrule width 5pt height0.4pt}% + \hskip1pt% + \fi + \insertsubsectionhead +\end{beamercolorbox} + +% +% Place final separation box +% + \begin{beamercolorbox}[wd=\paperwidth,colsep=1.5pt + ]{lower separation line head} + \end{beamercolorbox} + + % + % Another matching rule which helps to frame the content + % + \hspace{.025\textwidth}\rule{.95\textwidth}{.5pt} +} +\fi % TACCheadertree + + +% The following command suppresses all navigation symbols. This is +% necessary in the TACC theme, since it overlaps where we want the +% logo to be. +\setbeamertemplate{navigation symbols}{} + + +\mode + diff --git a/my_docs/23/lmod_zoom_mtg_2023_01_10/beamerthemeTACC.sty b/my_docs/23/lmod_zoom_mtg_2023_01_10/beamerthemeTACC.sty deleted file mode 120000 index 5c339abd4..000000000 --- a/my_docs/23/lmod_zoom_mtg_2023_01_10/beamerthemeTACC.sty +++ /dev/null @@ -1 +0,0 @@ -../../beamer/beamerthemeTACC.sty \ No newline at end of file diff --git a/my_docs/23/lmod_zoom_mtg_2023_01_10/beamerthemeTACC.sty b/my_docs/23/lmod_zoom_mtg_2023_01_10/beamerthemeTACC.sty new file mode 100755 index 000000000..c6a1b1269 --- /dev/null +++ b/my_docs/23/lmod_zoom_mtg_2023_01_10/beamerthemeTACC.sty @@ -0,0 +1,26 @@ +%% TACC theme for beamer + +\newif\ifTACCheadernav +\DeclareOption{headernav}{\global\TACCheadernavtrue} + +\newif\ifTACCheadertree +\DeclareOption{headertree}{\global\TACCheadertreetrue} +\ProcessOptions + +\mode + +\usefonttheme{TACC} +\usecolortheme{TACC} +\useinnertheme{TACC} +\useoutertheme{TACC} + +\mode + + +\newcommand{\event}[1]{% + \makeatletter% + \def\TACC@eventname{#1}% + \makeatother} + +\newcommand{\sectionframe}[1]{\section{#1}\frame{\Large\textbf{#1}}} +\newcommand{\subsectionframe}[1]{\subsection{#1}\frame{\large\textbf{#1}}} diff --git a/my_docs/23/lmod_zoom_mtg_2023_01_10/beamerthemeTACC16.sty b/my_docs/23/lmod_zoom_mtg_2023_01_10/beamerthemeTACC16.sty deleted file mode 120000 index 7a9d4d296..000000000 --- a/my_docs/23/lmod_zoom_mtg_2023_01_10/beamerthemeTACC16.sty +++ /dev/null @@ -1 +0,0 @@ -../../beamer/beamerthemeTACC16.sty \ No newline at end of file diff --git a/my_docs/23/lmod_zoom_mtg_2023_01_10/beamerthemeTACC16.sty b/my_docs/23/lmod_zoom_mtg_2023_01_10/beamerthemeTACC16.sty new file mode 100755 index 000000000..b522d0207 --- /dev/null +++ b/my_docs/23/lmod_zoom_mtg_2023_01_10/beamerthemeTACC16.sty @@ -0,0 +1,61 @@ +%% TACC theme for beamer + + +\newif\if@rightfooterOption +\@rightfooterOptionfalse +\DeclareOption{rightfooter}{\@rightfooterOptiontrue} +\ProcessOptions + + +\newif\ifTACCheadernav +\DeclareOption{headernav}{\global\TACCheadernavtrue} + +\newif\ifTACCheadertree +\DeclareOption{headertree}{\global\TACCheadertreetrue} +\ProcessOptions + +\usepackage{xparse} +\ExplSyntaxOn +\NewDocumentCommand{\ifaspectratio}{mmm} + { + % Recover the option from those passed to the class + \keys_set:nf { zunbeltz/beameroptions } { \use:c { opt@beamer.cls } } + \str_if_eq:nVTF { #1 } \l_zunbeltz_aspectratio_tl { #2 } { #3 } + } +\NewDocumentCommand{\xifaspectratio}{mO{}} + { + % Recover the option from those passed to the class + \keys_set:nf { zunbeltz/beameroptions } { \use:c { opt@beamer.cls } } + \str_case:VnF \l_zunbeltz_aspectratio_tl { #1 } { #2 } + } +% We need to define only one key, the other are treated as `unknown' +\keys_define:nn { zunbeltz/beameroptions } + { + aspectratio .tl_set:N = \l_zunbeltz_aspectratio_tl, + aspectratio .initial:n = 43, + unknown .code:n = {}, + } + +% Generate the variants we need +\cs_generate_variant:Nn \keys_set:nn { nf } +\cs_generate_variant:Nn \str_if_eq:nnTF { nV } +\cs_generate_variant:Nn \str_case:nnF { V } +\ExplSyntaxOff + +\mode + +\usefonttheme{TACC16} +\useinnertheme{TACC16} +\useoutertheme{TACC16} +\usecolortheme{TACC16} + +\mode + + +\newcommand{\event}[1]{% + \makeatletter% + \def\TACC@eventname{#1}% + \makeatother} + +\newcommand{\sectionframe}[1]{\section{#1}\frame{\Large\textbf{#1}}} +\newcommand{\subsectionframe}[1]{\subsection{#1}\frame{\large\textbf{#1}}} diff --git a/my_docs/23/lmod_zoom_mtg_2023_01_10/figures b/my_docs/23/lmod_zoom_mtg_2023_01_10/figures deleted file mode 120000 index ddafd8974..000000000 --- a/my_docs/23/lmod_zoom_mtg_2023_01_10/figures +++ /dev/null @@ -1 +0,0 @@ -../../beamer/figures \ No newline at end of file diff --git a/my_docs/23/lmod_zoom_mtg_2023_01_10/figures/TACC_logo.pdf b/my_docs/23/lmod_zoom_mtg_2023_01_10/figures/TACC_logo.pdf new file mode 100755 index 000000000..c018a20cb Binary files /dev/null and b/my_docs/23/lmod_zoom_mtg_2023_01_10/figures/TACC_logo.pdf differ diff --git a/my_docs/23/lmod_zoom_mtg_2023_01_10/figures/UT_logo.pdf b/my_docs/23/lmod_zoom_mtg_2023_01_10/figures/UT_logo.pdf new file mode 100755 index 000000000..d5b42e752 Binary files /dev/null and b/my_docs/23/lmod_zoom_mtg_2023_01_10/figures/UT_logo.pdf differ diff --git a/my_docs/23/lmod_zoom_mtg_2023_01_10/figures/cc.png b/my_docs/23/lmod_zoom_mtg_2023_01_10/figures/cc.png new file mode 100644 index 000000000..8a532ff8f Binary files /dev/null and b/my_docs/23/lmod_zoom_mtg_2023_01_10/figures/cc.png differ diff --git a/my_docs/23/lmod_zoom_mtg_2023_01_10/figures/isa.png b/my_docs/23/lmod_zoom_mtg_2023_01_10/figures/isa.png new file mode 100644 index 000000000..f95d985e7 Binary files /dev/null and b/my_docs/23/lmod_zoom_mtg_2023_01_10/figures/isa.png differ diff --git a/my_docs/23/lmod_zoom_mtg_2023_01_10/figures/master.jpg b/my_docs/23/lmod_zoom_mtg_2023_01_10/figures/master.jpg new file mode 100644 index 000000000..f5c56c04a Binary files /dev/null and b/my_docs/23/lmod_zoom_mtg_2023_01_10/figures/master.jpg differ diff --git a/my_docs/23/lmod_zoom_mtg_2023_01_10/figures/master169.jpg b/my_docs/23/lmod_zoom_mtg_2023_01_10/figures/master169.jpg new file mode 100644 index 000000000..b215776eb Binary files /dev/null and b/my_docs/23/lmod_zoom_mtg_2023_01_10/figures/master169.jpg differ diff --git a/my_docs/23/lmod_zoom_mtg_2023_01_10/figures/master169.png b/my_docs/23/lmod_zoom_mtg_2023_01_10/figures/master169.png new file mode 100644 index 000000000..bc5c0ed12 Binary files /dev/null and b/my_docs/23/lmod_zoom_mtg_2023_01_10/figures/master169.png differ diff --git a/my_docs/23/lmod_zoom_mtg_2023_01_10/figures/secondary.jpg b/my_docs/23/lmod_zoom_mtg_2023_01_10/figures/secondary.jpg new file mode 100644 index 000000000..d905a95c9 Binary files /dev/null and b/my_docs/23/lmod_zoom_mtg_2023_01_10/figures/secondary.jpg differ diff --git a/my_docs/23/lmod_zoom_mtg_2023_01_10/figures/secondary169.jpg b/my_docs/23/lmod_zoom_mtg_2023_01_10/figures/secondary169.jpg new file mode 100644 index 000000000..4eb017957 Binary files /dev/null and b/my_docs/23/lmod_zoom_mtg_2023_01_10/figures/secondary169.jpg differ diff --git a/my_docs/23/lmod_zoom_mtg_2023_01_10/figures/secondary169.png b/my_docs/23/lmod_zoom_mtg_2023_01_10/figures/secondary169.png new file mode 100644 index 000000000..cb9060a56 Binary files /dev/null and b/my_docs/23/lmod_zoom_mtg_2023_01_10/figures/secondary169.png differ diff --git a/my_docs/23/lmod_zoom_mtg_2023_01_10/figures/secondary_right.jpg b/my_docs/23/lmod_zoom_mtg_2023_01_10/figures/secondary_right.jpg new file mode 100644 index 000000000..f25f93a58 Binary files /dev/null and b/my_docs/23/lmod_zoom_mtg_2023_01_10/figures/secondary_right.jpg differ diff --git a/my_docs/23/lmod_zoom_mtg_2023_01_10/figures/secondary_right169.jpg b/my_docs/23/lmod_zoom_mtg_2023_01_10/figures/secondary_right169.jpg new file mode 100644 index 000000000..567a1078f Binary files /dev/null and b/my_docs/23/lmod_zoom_mtg_2023_01_10/figures/secondary_right169.jpg differ diff --git a/my_docs/23/lmod_zoom_mtg_2023_01_10/themes b/my_docs/23/lmod_zoom_mtg_2023_01_10/themes deleted file mode 120000 index a98530730..000000000 --- a/my_docs/23/lmod_zoom_mtg_2023_01_10/themes +++ /dev/null @@ -1 +0,0 @@ -../../beamer/themes \ No newline at end of file diff --git a/my_docs/23/lmod_zoom_mtg_2023_01_10/themes/beamercolorthemeTACC16.sty b/my_docs/23/lmod_zoom_mtg_2023_01_10/themes/beamercolorthemeTACC16.sty new file mode 100644 index 000000000..248ae8cb6 --- /dev/null +++ b/my_docs/23/lmod_zoom_mtg_2023_01_10/themes/beamercolorthemeTACC16.sty @@ -0,0 +1,193 @@ +% Copyright 2003 by Till Tantau . +% +% This program can be redistributed and/or modified under the terms +% of the GNU Public License, version 2. + +\mode + +\usepackage{textcase,regexpatch} + +\setbeamertemplate{blocks}[rounded][shadow=true] + + +\definecolor{TACCred}{RGB}{180,13,29} +\definecolor{TACCorange}{RGB}{210,104,43} +\definecolor{TACCblue}{RGB}{21,77,122} +%\definecolor{TACCgreen}{RGB}{30,134,104} +\definecolor{TACCgreen}{RGB}{49,168,51} + +% I downloaded a gimp color palette from +% http://maururu.net/2007/latex-beamer-color-palette/ +% Which provides rgb values (I think) for several of the +% default beamer themes. You can open this in gimp by +% opening the Palettes dialog, right-clicking anywhere and choosing +% 'Import Palette'. A color in there called 'default added blue' +% appeared to be approximately what I wanted. It had the triple +% of values 141 145 208. If you double-click on this in the +% palette editor it gives you a bunch of information. You can't +% use these values directly to set a color...it just comes out white. +% I think definecolor is expecting something normalized by 255. Yes! + + +%%% +% Set the normal text color +%%% +\setbeamercolor{normal text}{fg=black} %,bg=white} +\setbeamercolor{example text}{fg=TACCgreen} +\setbeamercolor{alerted text}{fg=TACCorange} + + +\setbeamercolor{structure}{fg=black} +%\setbeamercolor{structure}{fg=black} + +\setbeamercolor{background canvas}{parent=normal text} +\setbeamercolor{background}{parent=background canvas} + +\setbeamercolor{palette primary}{use=structure,fg=structure.fg} +\setbeamercolor{palette secondary}{use=structure,fg=structure.fg!75!black} +\setbeamercolor{palette tertiary}{use=structure,fg=structure.fg!50!black} +\setbeamercolor{palette quaternary}{fg=black} + +\setbeamercolor{palette sidebar primary}{use=normal text,fg=normal text.fg} +\setbeamercolor{palette sidebar secondary}{use=structure,fg=structure.fg} +\setbeamercolor{palette sidebar tertiary}{use=normal text,fg=normal text.fg} +\setbeamercolor{palette sidebar quaternary}{use=structure,fg=structure.fg} + +\setbeamercolor{math text}{} +\setbeamercolor{math text inlined}{parent=math text} +\setbeamercolor{math text displayed}{parent=math text} + +\setbeamercolor{normal text in math text}{} + +\setbeamercolor{local structure}{parent=structure} + +\setbeamercolor{titlelike}{parent=structure} + +\setbeamercolor{title}{parent=titlelike} +\setbeamercolor{title in head/foot}{parent=palette quaternary} +\setbeamercolor{title in sidebar}{parent=palette sidebar quaternary} + +\setbeamercolor{subtitle}{parent=title} + +\setbeamercolor{author}{} +\setbeamercolor{author in head/foot}{parent=palette primary} +\setbeamercolor{author in sidebar}{use=palette sidebar tertiary,fg=palette sidebar tertiary.fg} + +\setbeamercolor{institute}{} +\setbeamercolor{institute in head/foot}{parent=palette tertiary} +\setbeamercolor{institute in sidebar}{use=palette sidebar tertiary,fg=palette sidebar tertiary.fg} + +\setbeamercolor{date}{} +\setbeamercolor{date in head/foot}{parent=palette secondary} +\setbeamercolor{date in sidebar}{use=palette sidebar tertiary,fg=palette sidebar tertiary.fg} + +\setbeamercolor{titlegraphic}{} + +\setbeamercolor{part name}{} +\setbeamercolor{part title}{parent=titlelike} + +\setbeamercolor{section in toc}{parent=structure} +\setbeamercolor{section in toc shaded}{parent=section in toc} +\setbeamercolor{section in head/foot}{parent=palette tertiary} +\setbeamercolor{section in sidebar}{parent=palette sidebar secondary} +\setbeamercolor{section in sidebar shaded}{use=section in sidebar,fg=section in sidebar.fg!40!bg} +\setbeamercolor{section number projected}{parent=item projected} + +\setbeamercolor{subsection in toc}{} +\setbeamercolor{subsection in toc shaded}{parent=subsection in toc} +\setbeamercolor{subsection in head/foot}{parent=palette secondary} +\setbeamercolor{subsection in sidebar}{parent=palette sidebar primary} +\setbeamercolor{subsection in sidebar shaded}{use=subsection in sidebar,fg=subsection in sidebar.fg!40!bg} +\setbeamercolor{subsection number projected}{parent={subitem projected}} + +\setbeamercolor{subsubsection in toc}{parent=subsection in toc} +\setbeamercolor{subsubsection in toc shaded}{parent=subsubsection in toc} +\setbeamercolor{subsubsection in head/foot}{parent=subsection in head/foot} +\setbeamercolor{subsubsection in sidebar}{parent=subsection in sidebar} +\setbeamercolor{subsubsection in sidebar shaded}{parent=subsection in sidebar shaded} +\setbeamercolor{subsubsection number projected}{parent=subsubitem projected} + +\setbeamercolor{headline}{} +\setbeamercolor{footline}{} + +\setbeamercolor{sidebar}{} +\setbeamercolor{sidebar left}{parent=sidebar} +\setbeamercolor{sidebar right}{parent=sidebar} + +\setbeamercolor{logo}{parent=palette secondary} + +\setbeamercolor{frametitle}{parent=titlelike} +\setbeamercolor{framesubtitle}{parent=frametitle} + +\setbeamercolor{frametitle right}{parent=frametitle} + +\setbeamercolor{caption}{} +\setbeamercolor{caption name}{parent=structure} + +\setbeamercolor{button}{use=local structure,bg=local structure.fg!50!bg,fg=white} +\setbeamercolor{button border}{use=button,fg=button.bg} +\setbeamercolor{navigation symbols}{use=structure,fg=structure.fg!40!bg} +\setbeamercolor{navigation symbols dimmed}{use=structure,fg=structure.fg!20!bg} +\setbeamercolor{mini frame}{parent=section in head/foot} + +\setbeamercolor{block body}{fg=black} +\setbeamercolor{block body alerted}{fg=black} +\setbeamercolor{block body example}{fg=black} + +\setbeamercolor{block title}{bg=TACCblue,fg=white} +\setbeamercolor{block title alerted}{bg=TACCred,fg=white} +\setbeamercolor{block title example}{bg=TACCgreen,fg=white} + +\setbeamercolor{item}{parent=local structure} +\setbeamercolor{subitem}{parent=item} +\setbeamercolor{subsubitem}{parent=subitem} + +\setbeamercolor{item projected}{parent=item,use=item,fg=black,bg=item.fg} +\setbeamercolor{subitem projected}{parent=item projected} +\setbeamercolor{subsubitem projected}{parent=subitem projected} + +\setbeamercolor{enumerate item}{parent=item} +\setbeamercolor{enumerate subitem}{parent=subitem} +\setbeamercolor{enumerate subsubitem}{parent=subsubitem} + +\setbeamercolor{itemize item}{parent=item} +\setbeamercolor{itemize subitem}{parent=subitem} +\setbeamercolor{itemize subsubitem}{parent=subsubitem} + +\setbeamercolor{itemize/enumerate body}{} +\setbeamercolor{itemize/enumerate subbody}{} +\setbeamercolor{itemize/enumerate subsubbody}{} + +\setbeamercolor{description item}{parent=item} + +\setbeamercolor{bibliography item}{parent=item} + +\setbeamercolor{bibliography entry author}{use=structure,fg=structure.fg} +\setbeamercolor{bibliography entry title}{use=normal text,fg=normal text.fg} +\setbeamercolor{bibliography entry location}{use=structure,fg=structure.fg!65!bg} +\setbeamercolor{bibliography entry note}{use=structure,fg=structure.fg!65!bg} + +\setbeamercolor{separation line}{} + +\setbeamercolor{upper separation line head}{parent=separation line} +\setbeamercolor{middle separation line head}{parent=separation line} +\setbeamercolor{lower separation line head}{parent=separation line} + +\setbeamercolor{upper separation line foot}{parent=separation line} +\setbeamercolor{middle separation line foot}{parent=separation line} +\setbeamercolor{lower separation line foot}{parent=separation line} + +\setbeamercolor{abstract}{} +\setbeamercolor{abstract title}{parent=structure} + +\setbeamercolor{verse}{} + +\setbeamercolor{quotation}{} +\setbeamercolor{quote}{parent=quotation} + +\setbeamercolor{page number in head/foot}{fg=fg!50!bg} + +\setbeamercolor{qed symbol}{parent=structure} + +\mode + diff --git a/my_docs/23/lmod_zoom_mtg_2023_01_10/themes/beamerfontthemeTACC16.sty b/my_docs/23/lmod_zoom_mtg_2023_01_10/themes/beamerfontthemeTACC16.sty new file mode 100644 index 000000000..d0fc325cc --- /dev/null +++ b/my_docs/23/lmod_zoom_mtg_2023_01_10/themes/beamerfontthemeTACC16.sty @@ -0,0 +1,21 @@ +% Copyright 2003 by Till Tantau +% +% This program can be redistributed and/or modified under the terms +% of the GNU Public License, version 2. + +\mode +\setbeamerfont{title}{parent=structure,size=\LARGE,series=\bfseries} +\setbeamerfont{author}{parent=structure,size=\large, series=\normalfont} +\setbeamerfont{frametitle}{parent=structure,size=\LARGE,series=\bfseries} +\setbeamerfont{framesubtitle}{parent=frametitle,size=\small} + +%\usefonttheme{professionalfonts} % using non standard fonts for beamer +%\usefonttheme{serif} % default family is serif +%\usepackage{fontspec} +%\setmainfont{Century Gothic} + +%\usepackage{fontspec} +\usepackage{libertine} + +\mode + diff --git a/my_docs/23/lmod_zoom_mtg_2023_01_10/themes/beamerinnerthemeTACC16.sty b/my_docs/23/lmod_zoom_mtg_2023_01_10/themes/beamerinnerthemeTACC16.sty new file mode 100644 index 000000000..f7f454e1d --- /dev/null +++ b/my_docs/23/lmod_zoom_mtg_2023_01_10/themes/beamerinnerthemeTACC16.sty @@ -0,0 +1,11 @@ +\mode + +\setbeamertemplate{itemize item}[triangle] +\setbeamertemplate{itemize subitem}[triangle] +\setbeamertemplate{itemize subsubitem}[triangle] +\setbeamertemplate{section in toc}{$\bullet$\hskip.5em\inserttocsection} +%\setbeamertemplate{subsection in toc}{} +\setbeamertemplate{subsubsection in toc}{} + +\mode + diff --git a/my_docs/23/lmod_zoom_mtg_2023_01_10/themes/beamerouterthemeTACC16-169.sty b/my_docs/23/lmod_zoom_mtg_2023_01_10/themes/beamerouterthemeTACC16-169.sty new file mode 100644 index 000000000..c62f9ed04 --- /dev/null +++ b/my_docs/23/lmod_zoom_mtg_2023_01_10/themes/beamerouterthemeTACC16-169.sty @@ -0,0 +1,247 @@ +% Copyright 2003 by Till Tantau +% +% This program can be redistributed and/or modified under the terms +% of the GNU Public License, version 2. + +\mode + +\usepackage{xcolor} +\usepackage{graphicx} +\usepackage{etoolbox} + +\pgfdeclareimage[width=\paperwidth]{titlebackground}{./figures/master169.png} +\pgfdeclareimage[width=\paperwidth]{background}{./figures/secondary169.png} + +\setbeamertemplate{background canvas}{% + \ifnum\c@framenumber=1% + \begin{picture}(0,0) + \put(-0.15,-250){% + \pgfuseimage{titlebackground} + } + %\put(0,-130.7){% + + %\begin{minipage}[b][45mm][t]{\textwidth}%{226mm} + %\begin{center} + % \usebeamerfont{title}{\MakeTextUppercase{\inserttitle}\par} + %\vspace{2ex} + %\usebeamerfont{author}{\insertauthor} + % \end{center} + %\end{minipage} + %} + \end{picture} + % On title page + \else% + % Other frames background + \begin{picture}(0,0) + \put(-0.15,-255.55){% + \pgfuseimage{background} + } + \end{picture} + \fi% +} + + +\setbeamertemplate{title page}{ +\vspace{40pt} +\begin{center} +\usebeamerfont{title} {\huge \inserttitle}\par +\vspace{4ex} +\usebeamerfont{author} { + \insertauthor +}\par +\vspace{2ex} +\usebeamerfont{institute}{ + \insertinstitute +} \par +\vspace{2ex} +\usebeamerfont{date}{ + \insertdate +} +\end{center} +} + + +\setbeamertemplate{frametitle}[default][center] +\setbeamertemplate{frametitle}{ + \makeatletter + \regexpatchcmd{\insertframetitle} + {(\c{usebeamertemplate}.*)\c{fi}} + {\c{NoCaseChange}\cB\{\1\cE\}\c{fi}} + {}{}% + \makeatother + \vskip1ex + \insertframetitle +} + +% Here we define what appears at the bottom of each slide: the "footline". +\setbeamertemplate{footline}{% + \leavevmode% + + % Horizontal line dividing the rest of the slide from the footer? + % hrule goes all the way across... + % \hrule height.3pt% + % With \rule, you can specify the thickness + % \rule[raise-height]{width}{thickness} + % \hspace{.025\textwidth}\rule{.95\textwidth}{.5pt} + + \hbox{% + \ifnum \thepage>1 + % On the left half of the footer, insert the TACC of + \begin{minipage}{.2\textwidth}% + \hskip .05\textwidth%Give horizontal space else this will set on the left edge of the slide! + % \includegraphics[width=.8\textwidth]{TACC_logo.png} + \end{minipage} + + + \begin{minipage}{\textwidth}% + % \vskip .023\textheight% + \raggedleft% + \setlength{\rightskip}{\textwidth} + \hbox{% + \begin{beamercolorbox}[wd=0.7\textwidth,ht=2.25ex,dp=1ex,left]{author in head/foot}% + \insertshorttitle{} \hskip .01\textwidth | \hskip .01\textwidth \insertdate{} \hskip .01\textwidth | \hskip .01\textwidth \insertframenumber{} + \end{beamercolorbox}% + } + + % + % If we are not on the first page, insert a page number + % For some reason, insertframenumber is buggy when you have fragile + % slides with verbatim environments in them... it tends to skip numbers + % for some reason! On the other hand, the pagenumber is incremented + % for *every* slide, including transition slides... + % \hfill\includegraphics[width=\textwidth]{tacc_ut.png} + \end{minipage}% + \begin{minipage}{.05\textwidth}% + \end{minipage}% + \fi %\thepage>1 + }% + \vskip .023\textheight% + +} + + + + +\ifTACCheadernav + +\usesectionheadtemplate +{\hfill\insertsectionhead} +{\hfill\color{fg!50!bg}\insertsectionhead} + +% Head +\ifbeamer@compress + +% Here we define how the top of the frame looks, the "headline". +\setbeamertemplate{headline} +{% + \ifnum \thepage>1 + \leavevmode% + \begin{beamercolorbox}[wd=.5\paperwidth,ht=2.5ex,dp=1.125ex]{% + section in head/foot}% + \insertsectionnavigationhorizontal{.5\paperwidth}{\hskip0pt plus1filll}{}% + \end{beamercolorbox}% + \begin{beamercolorbox}[wd=.5\paperwidth,ht=2.5ex,dp=1.125ex]{% + subsection in head/foot}% + \insertsubsectionnavigationhorizontal{% + .5\paperwidth}{}{\hskip0pt plus1filll}% + \end{beamercolorbox}% + \fi %\thepage>1 +} + +\else% Not compressed + +\setbeamertemplate{headline} +{% + \ifnum \thepage>1 + \leavevmode% + \@tempdimb=2.4375ex% + \ifnum\beamer@subsectionmax<\beamer@sectionmax% + \multiply\@tempdimb by\beamer@sectionmax% + \else% + \multiply\@tempdimb by\beamer@subsectionmax% + \fi% + \ifdim\@tempdimb>0pt% + \advance\@tempdimb by 1.125ex% + \begin{beamercolorbox}[wd=.5\paperwidth,ht=\@tempdimb]{% + section in head/foot}% + \vbox to\@tempdimb{\vfil\insertsectionnavigation{.5\paperwidth}\vfil}% + \end{beamercolorbox}% + \begin{beamercolorbox}[wd=.5\paperwidth,ht=\@tempdimb]{% + subsection in head/foot}% + \vbox to\@tempdimb{\vfil\insertsubsectionnavigation{.5\paperwidth}\vfil}% + \end{beamercolorbox}% + \fi% + \fi % \thepage>1 +} + +\fi % end if compressed +\fi % TACCheadernav + + +\ifTACCheadertree + +\setbeamertemplate{headline} +{ + \begin{beamercolorbox}[wd=\paperwidth,colsep=1.5pt]{upper separation line head} + \end{beamercolorbox} + % + % Place short title + % + \begin{beamercolorbox}[wd=\paperwidth,ht=2.5ex,dp=1.125ex,% + leftskip=.3cm,rightskip=.3cm plus1fil]{title in head/foot} + \usebeamerfont{title in head/foot}\insertshorttitle + \end{beamercolorbox} + + % + % Place section + % + \begin{beamercolorbox}[wd=\paperwidth,ht=2.5ex,dp=1.125ex,% + leftskip=.3cm,rightskip=.3cm plus1fil]{section in head/foot} + \usebeamerfont{section in head/foot}% + %\ifbeamer@tree@showhooks + \setbox\beamer@tempbox=\hbox{\insertsectionhead}% + \ifdim\wd\beamer@tempbox>1pt% + \hskip2pt\raise1.9pt\hbox{\vrule width0.4pt height1.875ex\vrule width 5pt height0.4pt}% + \hskip1pt% + \fi + \insertsectionhead + \end{beamercolorbox} + +% +% Place subsection +% +\begin{beamercolorbox}[wd=\paperwidth,ht=2.5ex,dp=1.125ex,% + leftskip=.3cm,rightskip=.3cm plus1fil]{subsection in head/foot} + \usebeamerfont{subsection in head/foot}% + %\ifbeamer@tree@showhooks + \setbox\beamer@tempbox=\hbox{\insertsubsectionhead}% + \ifdim\wd\beamer@tempbox>1pt% + \hskip9.4pt\raise1.9pt\hbox{\vrule width0.4pt height1.875ex\vrule width 5pt height0.4pt}% + \hskip1pt% + \fi + \insertsubsectionhead +\end{beamercolorbox} + +% +% Place final separation box +% + \begin{beamercolorbox}[wd=\paperwidth,colsep=1.5pt + ]{lower separation line head} + \end{beamercolorbox} + + % + % Another matching rule which helps to frame the content + % + \hspace{.025\textwidth}\rule{.95\textwidth}{.5pt} +} +\fi % TACCheadertree + + +% The following command suppresses all navigation symbols. This is +% necessary in the TACC theme, since it overlaps where we want the +% logo to be. +\setbeamertemplate{navigation symbols}{} + + +\mode + diff --git a/my_docs/23/lmod_zoom_mtg_2023_01_10/themes/beamerouterthemeTACC16.sty b/my_docs/23/lmod_zoom_mtg_2023_01_10/themes/beamerouterthemeTACC16.sty new file mode 100644 index 000000000..c5b178018 --- /dev/null +++ b/my_docs/23/lmod_zoom_mtg_2023_01_10/themes/beamerouterthemeTACC16.sty @@ -0,0 +1,247 @@ +% Copyright 2003 by Till Tantau +% +% This program can be redistributed and/or modified under the terms +% of the GNU Public License, version 2. + +\mode + +\usepackage{xcolor} +\usepackage{graphicx} +\usepackage{etoolbox} + +\pgfdeclareimage[width=\paperwidth]{titlebackground}{master.jpg} +\pgfdeclareimage[width=\paperwidth]{background}{secondary.jpg} + +\setbeamertemplate{background canvas}{% + \ifnum\c@framenumber=1% + \begin{picture}(0,0) + \put(0,-273){% + \pgfuseimage{titlebackground} + } + %\put(0,-130.7){% + + %\begin{minipage}[b][45mm][t]{\textwidth}%{226mm} + %\begin{center} + % \usebeamerfont{title}{\MakeTextUppercase{\inserttitle}\par} + %\vspace{2ex} + %\usebeamerfont{author}{\insertauthor} + % \end{center} + %\end{minipage} + %} + \end{picture} + % On title page + \else% + % Other frames background + \begin{picture}(0,0) + \put(0,-273){% + \pgfuseimage{background} + } + \end{picture} + \fi% +} + + +\setbeamertemplate{title page}{ +\vspace{40pt} +\begin{center} +\usebeamerfont{title} {\huge \inserttitle}\par +\vspace{4ex} +\usebeamerfont{author} { + \insertauthor +}\par +\vspace{2ex} +\usebeamerfont{institute}{ + \insertinstitute +} \par +\vspace{2ex} +\usebeamerfont{date}{ + \insertdate +} +\end{center} +} + + +\setbeamertemplate{frametitle}[default][center] +\setbeamertemplate{frametitle}{ + \makeatletter + \regexpatchcmd{\insertframetitle} + {(\c{usebeamertemplate}.*)\c{fi}} + {\c{NoCaseChange}\cB\{\1\cE\}\c{fi}} + {}{}% + \makeatother + \vskip1ex + \insertframetitle +} + +% Here we define what appears at the bottom of each slide: the "footline". +\setbeamertemplate{footline}{% + \leavevmode% + + % Horizontal line dividing the rest of the slide from the footer? + % hrule goes all the way across... + % \hrule height.3pt% + % With \rule, you can specify the thickness + % \rule[raise-height]{width}{thickness} + % \hspace{.025\textwidth}\rule{.95\textwidth}{.5pt} + + \hbox{% + \ifnum \thepage>1 + % On the left half of the footer, insert the TACC of + \begin{minipage}{.2\textwidth}% + \hskip .05\textwidth%Give horizontal space else this will set on the left edge of the slide! + % \includegraphics[width=.8\textwidth]{figures/TACC_logo.png} + \end{minipage} + + + \begin{minipage}{\textwidth}% + % \vskip .023\textheight% + \raggedleft% + \setlength{\rightskip}{\textwidth} + \hbox{% + \begin{beamercolorbox}[wd=0.7\textwidth,ht=2.25ex,dp=1ex,left]{author in head/foot}% + \insertshorttitle{} \hskip .01\textwidth | \hskip .01\textwidth \insertdate{} \hskip .01\textwidth | \hskip .01\textwidth \insertframenumber{} + \end{beamercolorbox}% + } + + % + % If we are not on the first page, insert a page number + % For some reason, insertframenumber is buggy when you have fragile + % slides with verbatim environments in them... it tends to skip numbers + % for some reason! On the other hand, the pagenumber is incremented + % for *every* slide, including transition slides... + % \hfill\includegraphics[width=\textwidth]{figures/tacc_ut.png} + \end{minipage}% + \begin{minipage}{.05\textwidth}% + \end{minipage}% + \fi %\thepage>1 + }% + \vskip .023\textheight% + +} + + + + +\ifTACCheadernav + +\usesectionheadtemplate +{\hfill\insertsectionhead} +{\hfill\color{fg!50!bg}\insertsectionhead} + +% Head +\ifbeamer@compress + +% Here we define how the top of the frame looks, the "headline". +\setbeamertemplate{headline} +{% + \ifnum \thepage>1 + \leavevmode% + \begin{beamercolorbox}[wd=.5\paperwidth,ht=2.5ex,dp=1.125ex]{% + section in head/foot}% + \insertsectionnavigationhorizontal{.5\paperwidth}{\hskip0pt plus1filll}{}% + \end{beamercolorbox}% + \begin{beamercolorbox}[wd=.5\paperwidth,ht=2.5ex,dp=1.125ex]{% + subsection in head/foot}% + \insertsubsectionnavigationhorizontal{% + .5\paperwidth}{}{\hskip0pt plus1filll}% + \end{beamercolorbox}% + \fi %\thepage>1 +} + +\else% Not compressed + +\setbeamertemplate{headline} +{% + \ifnum \thepage>1 + \leavevmode% + \@tempdimb=2.4375ex% + \ifnum\beamer@subsectionmax<\beamer@sectionmax% + \multiply\@tempdimb by\beamer@sectionmax% + \else% + \multiply\@tempdimb by\beamer@subsectionmax% + \fi% + \ifdim\@tempdimb>0pt% + \advance\@tempdimb by 1.125ex% + \begin{beamercolorbox}[wd=.5\paperwidth,ht=\@tempdimb]{% + section in head/foot}% + \vbox to\@tempdimb{\vfil\insertsectionnavigation{.5\paperwidth}\vfil}% + \end{beamercolorbox}% + \begin{beamercolorbox}[wd=.5\paperwidth,ht=\@tempdimb]{% + subsection in head/foot}% + \vbox to\@tempdimb{\vfil\insertsubsectionnavigation{.5\paperwidth}\vfil}% + \end{beamercolorbox}% + \fi% + \fi % \thepage>1 +} + +\fi % end if compressed +\fi % TACCheadernav + + +\ifTACCheadertree + +\setbeamertemplate{headline} +{ + \begin{beamercolorbox}[wd=\paperwidth,colsep=1.5pt]{upper separation line head} + \end{beamercolorbox} + % + % Place short title + % + \begin{beamercolorbox}[wd=\paperwidth,ht=2.5ex,dp=1.125ex,% + leftskip=.3cm,rightskip=.3cm plus1fil]{title in head/foot} + \usebeamerfont{title in head/foot}\insertshorttitle + \end{beamercolorbox} + + % + % Place section + % + \begin{beamercolorbox}[wd=\paperwidth,ht=2.5ex,dp=1.125ex,% + leftskip=.3cm,rightskip=.3cm plus1fil]{section in head/foot} + \usebeamerfont{section in head/foot}% + %\ifbeamer@tree@showhooks + \setbox\beamer@tempbox=\hbox{\insertsectionhead}% + \ifdim\wd\beamer@tempbox>1pt% + \hskip2pt\raise1.9pt\hbox{\vrule width0.4pt height1.875ex\vrule width 5pt height0.4pt}% + \hskip1pt% + \fi + \insertsectionhead + \end{beamercolorbox} + +% +% Place subsection +% +\begin{beamercolorbox}[wd=\paperwidth,ht=2.5ex,dp=1.125ex,% + leftskip=.3cm,rightskip=.3cm plus1fil]{subsection in head/foot} + \usebeamerfont{subsection in head/foot}% + %\ifbeamer@tree@showhooks + \setbox\beamer@tempbox=\hbox{\insertsubsectionhead}% + \ifdim\wd\beamer@tempbox>1pt% + \hskip9.4pt\raise1.9pt\hbox{\vrule width0.4pt height1.875ex\vrule width 5pt height0.4pt}% + \hskip1pt% + \fi + \insertsubsectionhead +\end{beamercolorbox} + +% +% Place final separation box +% + \begin{beamercolorbox}[wd=\paperwidth,colsep=1.5pt + ]{lower separation line head} + \end{beamercolorbox} + + % + % Another matching rule which helps to frame the content + % + \hspace{.025\textwidth}\rule{.95\textwidth}{.5pt} +} +\fi % TACCheadertree + + +% The following command suppresses all navigation symbols. This is +% necessary in the TACC theme, since it overlaps where we want the +% logo to be. +\setbeamertemplate{navigation symbols}{} + + +\mode + diff --git a/my_docs/23/lmod_zoom_mtg_2023_01_10/themes/beamerthemeTACC16-169.sty b/my_docs/23/lmod_zoom_mtg_2023_01_10/themes/beamerthemeTACC16-169.sty new file mode 100644 index 000000000..22caf9a05 --- /dev/null +++ b/my_docs/23/lmod_zoom_mtg_2023_01_10/themes/beamerthemeTACC16-169.sty @@ -0,0 +1,38 @@ +%% TACC theme for beamer + +\newif\ifTACCheadernav +\DeclareOption{headernav}{\global\TACCheadernavtrue} + +\newif\ifTACCheadertree +\DeclareOption{headertree}{\global\TACCheadertreetrue} +\ProcessOptions + +\mode + +\makeatletter + \def\beamer@calltheme#1#2#3{% + \def\beamer@themelist{#2} + \@for\beamer@themename:=\beamer@themelist\do + {\usepackage[{#1}]{\beamer@themelocation/#3\beamer@themename}}} + + \def\usefolder#1{ + \def\beamer@themelocation{#1} + } + \def\beamer@themelocation{} + +\usefolder{themes} +\usefonttheme{TACC16} +\useinnertheme{TACC16} +\useoutertheme{TACC16-169} +\usecolortheme{TACC16} + +\mode + + +\newcommand{\event}[1]{% + \makeatletter% + \def\TACC@eventname{#1}% + \makeatother} + +\newcommand{\sectionframe}[1]{\section{#1}\frame{\Large\textbf{#1}}} +\newcommand{\subsectionframe}[1]{\subsection{#1}\frame{\large\textbf{#1}}} diff --git a/my_docs/23/lmod_zoom_mtg_2023_01_10/themes/beamerthemeTACC16.sty b/my_docs/23/lmod_zoom_mtg_2023_01_10/themes/beamerthemeTACC16.sty new file mode 100644 index 000000000..750bdd388 --- /dev/null +++ b/my_docs/23/lmod_zoom_mtg_2023_01_10/themes/beamerthemeTACC16.sty @@ -0,0 +1,26 @@ +%% TACC theme for beamer + +\newif\ifTACCheadernav +\DeclareOption{headernav}{\global\TACCheadernavtrue} + +\newif\ifTACCheadertree +\DeclareOption{headertree}{\global\TACCheadertreetrue} +\ProcessOptions + +\mode + +\usefonttheme{TACC16} +\useinnertheme{TACC16} +\useoutertheme{TACC16} +\usecolortheme{TACC16} + +\mode + + +\newcommand{\event}[1]{% + \makeatletter% + \def\TACC@eventname{#1}% + \makeatother} + +\newcommand{\sectionframe}[1]{\section{#1}\frame{\Large\textbf{#1}}} +\newcommand{\subsectionframe}[1]{\subsection{#1}\frame{\large\textbf{#1}}} diff --git a/my_docs/23/lmod_zoom_mtg_2023_01_10/themes/example.pdf b/my_docs/23/lmod_zoom_mtg_2023_01_10/themes/example.pdf new file mode 100644 index 000000000..add373eee Binary files /dev/null and b/my_docs/23/lmod_zoom_mtg_2023_01_10/themes/example.pdf differ diff --git a/my_docs/23/lmod_zoom_mtg_2023_01_10/themes/license.tex b/my_docs/23/lmod_zoom_mtg_2023_01_10/themes/license.tex new file mode 100644 index 000000000..74ff86759 --- /dev/null +++ b/my_docs/23/lmod_zoom_mtg_2023_01_10/themes/license.tex @@ -0,0 +1,14 @@ + +\begin{frame}{License} +\footnotesize +\textcopyright The University of Texas at Austin, \the\year\\ +\vspace{0.5 cm} +This work is licensed under the Creative Commons Attribution Non-Commercial 3.0 Unported License. To view a copy of this license, +visit http://creativecommons.org/licenses/by-nc/3.0/\\ +\vspace{0.5 cm} +When attributing this work, please use the following text: +"Designing and Administering Large-scale Systems", Texas Advanced Computing Center, \the\year. Available under a Creative Commons Attribution Non-Commercial 3.0 Unported License. +\newline +\newline +\includegraphics[width=1cm]{./figures/cc.png} +\end{frame} \ No newline at end of file diff --git a/my_docs/23/lmod_zoom_mtg_2023_02_14/Lmod-4color@2x.png b/my_docs/23/lmod_zoom_mtg_2023_02_14/Lmod-4color@2x.png deleted file mode 120000 index 47d505dbf..000000000 --- a/my_docs/23/lmod_zoom_mtg_2023_02_14/Lmod-4color@2x.png +++ /dev/null @@ -1 +0,0 @@ -../../beamer/Lmod-4color@2x.png \ No newline at end of file diff --git a/my_docs/23/lmod_zoom_mtg_2023_02_14/Lmod-4color@2x.png b/my_docs/23/lmod_zoom_mtg_2023_02_14/Lmod-4color@2x.png new file mode 100644 index 000000000..4810d74c3 Binary files /dev/null and b/my_docs/23/lmod_zoom_mtg_2023_02_14/Lmod-4color@2x.png differ diff --git a/my_docs/23/lmod_zoom_mtg_2023_02_14/beamercolorthemeTACC.sty b/my_docs/23/lmod_zoom_mtg_2023_02_14/beamercolorthemeTACC.sty deleted file mode 120000 index 8d27e673a..000000000 --- a/my_docs/23/lmod_zoom_mtg_2023_02_14/beamercolorthemeTACC.sty +++ /dev/null @@ -1 +0,0 @@ -../../beamer/beamercolorthemeTACC.sty \ No newline at end of file diff --git a/my_docs/23/lmod_zoom_mtg_2023_02_14/beamercolorthemeTACC.sty b/my_docs/23/lmod_zoom_mtg_2023_02_14/beamercolorthemeTACC.sty new file mode 100755 index 000000000..78beb6a4a --- /dev/null +++ b/my_docs/23/lmod_zoom_mtg_2023_02_14/beamercolorthemeTACC.sty @@ -0,0 +1,323 @@ +% Copyright 2003 by Till Tantau . +% +% This program can be redistributed and/or modified under the terms +% of the GNU Public License, version 2. + +\mode + +% I downloaded a gimp color palette from +% http://maururu.net/2007/latex-beamer-color-palette/ +% Which provides rgb values (I think) for several of the +% default beamer themes. You can open this in gimp by +% opening the Palettes dialog, right-clicking anywhere and choosing +% 'Import Palette'. A color in there called 'default added blue' +% appeared to be approximately what I wanted. It had the triple +% of values 141 145 208. If you double-click on this in the +% palette editor it gives you a bunch of information. You can't +% use these values directly to set a color...it just comes out white. +% I think definecolor is expecting something normalized by 255. Yes! + + +% bluish colors +\definecolor{defaddedblue}{rgb}{0.5529,.5686,.8157} % 141,145,208 +\definecolor{defblockheader}{rgb}{.1921,.2235,.6824} % 49,57,174 +\definecolor{flyaddedblue}{rgb}{.5961,.6118,.8431} % 152,156,215 + +% bluish-greys +\definecolor{beetleaddedblue1}{rgb}{.3333,.4039,.6196} % 85 103 158, dark +\definecolor{beetleaddedblue2}{rgb}{.4510,.5098,.7020} % 115 130 179, medium +\definecolor{beetleaddedblue3}{rgb}{.7059,.7255,.7961} % 180 185 203, light (greyest) + +% very light blue-greys +\definecolor{deflightouter1}{rgb}{.7608,.7647,.9020} % 194 195 230, dark +\definecolor{deflightouter2}{rgb}{.8 ,.8039,.9176} % 204 205 234, medium +\definecolor{deflightouter3}{rgb}{.8392,.8431,.9373} % 214 215 239, light + +% reddish colors +\definecolor{flyalertblockheader}{rgb}{.7373,.1294,.1333} % 188 33 34 +\definecolor{flyaddedred}{rgb}{.8667,.5647,.5647}% 221 144 144 +\definecolor{beaverouterframe}{rgb}{.5529,.0980,.0980}% 141 25 25 + +% greens (green is used for 'examples' in beamer) +\definecolor{defexblock}{rgb}{.9098,.9333,.9020} % 232 238 230, light +\definecolor{defaddedgreen}{rgb}{.5412,.6510,.4706} % 138 166 120, medium +\definecolor{defexblockheader}{rgb}{.1686,.3647,.0392} % 43 93 10, dark + +\definecolor{lightexblock}{rgb}{.9137,.9451,.9020} % 233 241 230, light +\definecolor{lightexblockheader}{rgb}{.8235,.8980,.8} % 210 229 204, medium +\definecolor{lightexblockheadertext}{rgb}{.2431,.5098,.0745} % 62 130 19, dark + + +%%% +% Set the normal text color +%%% +\setbeamercolor{normal text}{fg=black,bg=white} + +%%% +% Set the alerted text color +%%% +% \setbeamercolor{alerted text}{fg=red} +\setbeamercolor{alerted text}{fg=red!50!black} % half black/half red for green bg +% \setbeamercolor{alerted text}{fg=beaverouterframe} +% \setbeamercolor{alerted text}{fg=defblockheader} % doesn't stand out enough + + +% Set the 'example' text +\setbeamercolor{example text}{fg=green!50!black} + +\setbeamercolor{structure}{fg=black} + +\setbeamercolor{background canvas}{parent=normal text} +\setbeamercolor{background}{parent=background canvas} + +\setbeamercolor{palette primary}{use=structure,fg=structure.fg} +\setbeamercolor{palette secondary}{use=structure,fg=structure.fg!75!black} +\setbeamercolor{palette tertiary}{use=structure,fg=structure.fg!50!black} +\setbeamercolor{palette quaternary}{fg=black} + +\setbeamercolor{palette sidebar primary}{use=normal text,fg=normal text.fg} +\setbeamercolor{palette sidebar secondary}{use=structure,fg=structure.fg} +\setbeamercolor{palette sidebar tertiary}{use=normal text,fg=normal text.fg} +\setbeamercolor{palette sidebar quaternary}{use=structure,fg=structure.fg} + +\setbeamercolor{math text}{} +\setbeamercolor{math text inlined}{parent=math text} +\setbeamercolor{math text displayed}{parent=math text} + +\setbeamercolor{normal text in math text}{} + +\setbeamercolor{local structure}{parent=structure} + +\setbeamercolor{titlelike}{parent=structure} + +\setbeamercolor{title}{parent=titlelike} +\setbeamercolor{title in head/foot}{parent=palette quaternary} +\setbeamercolor{title in sidebar}{parent=palette sidebar quaternary} + +\setbeamercolor{subtitle}{parent=title} + +\setbeamercolor{author}{} +\setbeamercolor{author in head/foot}{parent=palette primary} +\setbeamercolor{author in sidebar}{use=palette sidebar tertiary,fg=palette sidebar tertiary.fg} + +\setbeamercolor{institute}{} +\setbeamercolor{institute in head/foot}{parent=palette tertiary} +\setbeamercolor{institute in sidebar}{use=palette sidebar tertiary,fg=palette sidebar tertiary.fg} + +\setbeamercolor{date}{} +\setbeamercolor{date in head/foot}{parent=palette secondary} +\setbeamercolor{date in sidebar}{use=palette sidebar tertiary,fg=palette sidebar tertiary.fg} + +\setbeamercolor{titlegraphic}{} + +\setbeamercolor{part name}{} +\setbeamercolor{part title}{parent=titlelike} + +\setbeamercolor{section in toc}{parent=structure} +\setbeamercolor{section in toc shaded}{parent=section in toc} +\setbeamercolor{section in head/foot}{parent=palette tertiary} +\setbeamercolor{section in sidebar}{parent=palette sidebar secondary} +\setbeamercolor{section in sidebar shaded}{use=section in sidebar,fg=section in sidebar.fg!40!bg} +\setbeamercolor{section number projected}{parent=item projected} + +\setbeamercolor{subsection in toc}{} +\setbeamercolor{subsection in toc shaded}{parent=subsection in toc} +\setbeamercolor{subsection in head/foot}{parent=palette secondary} +\setbeamercolor{subsection in sidebar}{parent=palette sidebar primary} +\setbeamercolor{subsection in sidebar shaded}{use=subsection in sidebar,fg=subsection in sidebar.fg!40!bg} +\setbeamercolor{subsection number projected}{parent={subitem projected}} + +\setbeamercolor{subsubsection in toc}{parent=subsection in toc} +\setbeamercolor{subsubsection in toc shaded}{parent=subsubsection in toc} +\setbeamercolor{subsubsection in head/foot}{parent=subsection in head/foot} +\setbeamercolor{subsubsection in sidebar}{parent=subsection in sidebar} +\setbeamercolor{subsubsection in sidebar shaded}{parent=subsection in sidebar shaded} +\setbeamercolor{subsubsection number projected}{parent=subsubitem projected} + +\setbeamercolor{headline}{} +\setbeamercolor{footline}{} + +\setbeamercolor{sidebar}{} +\setbeamercolor{sidebar left}{parent=sidebar} +\setbeamercolor{sidebar right}{parent=sidebar} + +\setbeamercolor{logo}{parent=palette secondary} + +\setbeamercolor{frametitle}{parent=titlelike} +\setbeamercolor{framesubtitle}{parent=frametitle} + +\setbeamercolor{frametitle right}{parent=frametitle} + +\setbeamercolor{caption}{} +\setbeamercolor{caption name}{parent=structure} + +\setbeamercolor{button}{use=local structure,bg=local structure.fg!50!bg,fg=white} +\setbeamercolor{button border}{use=button,fg=button.bg} +\setbeamercolor{navigation symbols}{use=structure,fg=structure.fg!40!bg} +\setbeamercolor{navigation symbols dimmed}{use=structure,fg=structure.fg!20!bg} +\setbeamercolor{mini frame}{parent=section in head/foot} + +% Color expressions are defined in the xcolor package +% +% Ex: Mixture of 40% green, 60% yellow: green!40!yellow +% +% The complement of any color can be obtained by prepending +% a minus sign: -green!40!yellow +% +% One can also combine up to three colors (in differing proportions) +% using the rgb command. For example, the following command combines +% 3 parts of the first color, with 2 parts of the second, and one part +% "red" +% +%\color{rgb:-green!40!yellow,3;green!40!yellow,2;red,1} +% Unfortunately, I don't think this works as an argument to setbeamercolor... +% "Orange" bg=green!30!yellow!30!red +% close to burnt orange: red!75!green +% lightgray is a color, but gray!25!white looks better +% +% A nice pair of greens +% (dark, a little too dark to be under black text...) -red!75!green!50!blue!25 +% (light) -red!75!green!50!blue!25!gray +% +% Some colors are only available via options to the xcolor package, eg. +% x11names,DarkOliveGreen4 +% svgnames, Chartreuse +% dvipsnames, ForestGreen +% +% but beamer does not seem to have any of these. +% +% The base color names which are always available are: +% black +% blue +% brown +% cyan +% darkgray +% gray +% green +% lightgray +% lime +% magenta +% olive +% orange +% pink +% purple +% red +% teal +% violet +% white +% yellow + +% From the beamer user guide, pg. 167 +% Inner color themes only specify the colors of elements used in inner +% themes. Most noticably, they specify the colors used for blocks. +% ... + +% Example color definition +% beamercolorthemedefault.sty:\definecolor{beamer@blendedblue}{rgb}{0.2,0.2,0.7} +% beamercolorthemedefault.sty:\setbeamercolor{structure}{fg=beamer@blendedblue} + +% The greens +% \setbeamercolor{block body}{bg=-red!75!green!50!blue!25!gray} +% \setbeamercolor{block title}{parent=structure,bg=-red!75!green!50!blue!25,fg=-red!75!green!50!blue!25!gray} + +%%% +% Set the block body and title background/foreground colors +%%% +% \setbeamercolor{block body}{bg=flyaddedblue} +% \setbeamercolor{block title}{bg=defblockheader,fg=flyaddedblue} + +% Purplish blues, too dark overall +% \setbeamercolor{block body}{bg=beetleaddedblue3} +% \setbeamercolor{block title}{bg=beetleaddedblue2,fg=beetleaddedblue3} + +% Very light blue greys +% 1. Not enough contrast +% \setbeamercolor{block body}{bg=deflightouter3} +% \setbeamercolor{block title}{bg=deflightouter2,fg=deflightouter3} + +% 2. Not enough contrast +% \setbeamercolor{block body}{bg=deflightouter3} +% \setbeamercolor{block title}{bg=deflightouter1,fg=deflightouter3} + +% 3. Combination of deflightouter and fly. The block bg is +% lighter than the all-beetle color scheme I previously thought was best. +% Currently I like this one the best +\setbeamercolor{block body}{bg=deflightouter3} +\setbeamercolor{block title}{bg=beetleaddedblue2,fg=deflightouter3} + +% 4. Greens. Looks like a highlighter. I don't really trust greens +% on projectors... It's almost too bright/hurts your eyes. +% \setbeamercolor{block body}{bg=defexblock} +% \setbeamercolor{block title}{bg=defaddedgreen,fg=defexblock} + +% This looks pretty good ... it's similar to the greens we had before +% but should be lighter. The blocks are just a little too "mint" colored +% though... +% \setbeamercolor{block body}{bg=defexblock} +% \setbeamercolor{block title}{bg=defexblockheader,fg=defexblock} + +% Pea Soup! +%\setbeamercolor{block body}{bg=defaddedgreen} +%\setbeamercolor{block title}{bg=defexblockheader,fg=defaddedgreen} + + +% Changing these didn't seem to do anything...I had to change the +% 'alerted text' color instead +\setbeamercolor{block body alerted}{} +\setbeamercolor{block body example}{} +\setbeamercolor{block title alerted}{parent=alerted text} +\setbeamercolor{block title example}{parent=example text} + +\setbeamercolor{item}{parent=local structure} +\setbeamercolor{subitem}{parent=item} +\setbeamercolor{subsubitem}{parent=subitem} + +\setbeamercolor{item projected}{parent=item,use=item,fg=white,bg=item.fg} +\setbeamercolor{subitem projected}{parent=item projected} +\setbeamercolor{subsubitem projected}{parent=subitem projected} + +\setbeamercolor{enumerate item}{parent=item} +\setbeamercolor{enumerate subitem}{parent=subitem} +\setbeamercolor{enumerate subsubitem}{parent=subsubitem} + +\setbeamercolor{itemize item}{parent=item} +\setbeamercolor{itemize subitem}{parent=subitem} +\setbeamercolor{itemize subsubitem}{parent=subsubitem} + +\setbeamercolor{itemize/enumerate body}{} +\setbeamercolor{itemize/enumerate subbody}{} +\setbeamercolor{itemize/enumerate subsubbody}{} + +\setbeamercolor{description item}{parent=item} + +\setbeamercolor{bibliography item}{parent=item} + +\setbeamercolor{bibliography entry author}{use=structure,fg=structure.fg} +\setbeamercolor{bibliography entry title}{use=normal text,fg=normal text.fg} +\setbeamercolor{bibliography entry location}{use=structure,fg=structure.fg!65!bg} +\setbeamercolor{bibliography entry note}{use=structure,fg=structure.fg!65!bg} + +\setbeamercolor{separation line}{} + +\setbeamercolor{upper separation line head}{parent=separation line} +\setbeamercolor{middle separation line head}{parent=separation line} +\setbeamercolor{lower separation line head}{parent=separation line} + +\setbeamercolor{upper separation line foot}{parent=separation line} +\setbeamercolor{middle separation line foot}{parent=separation line} +\setbeamercolor{lower separation line foot}{parent=separation line} + +\setbeamercolor{abstract}{} +\setbeamercolor{abstract title}{parent=structure} + +\setbeamercolor{verse}{} + +\setbeamercolor{quotation}{} +\setbeamercolor{quote}{parent=quotation} + +\setbeamercolor{page number in head/foot}{fg=fg!50!bg} + +\setbeamercolor{qed symbol}{parent=structure} + +\mode + diff --git a/my_docs/23/lmod_zoom_mtg_2023_02_14/beamercolorthemeTACC16.sty b/my_docs/23/lmod_zoom_mtg_2023_02_14/beamercolorthemeTACC16.sty deleted file mode 120000 index 58415801b..000000000 --- a/my_docs/23/lmod_zoom_mtg_2023_02_14/beamercolorthemeTACC16.sty +++ /dev/null @@ -1 +0,0 @@ -../../beamer/beamercolorthemeTACC16.sty \ No newline at end of file diff --git a/my_docs/23/lmod_zoom_mtg_2023_02_14/beamercolorthemeTACC16.sty b/my_docs/23/lmod_zoom_mtg_2023_02_14/beamercolorthemeTACC16.sty new file mode 100755 index 000000000..779dde91f --- /dev/null +++ b/my_docs/23/lmod_zoom_mtg_2023_02_14/beamercolorthemeTACC16.sty @@ -0,0 +1,192 @@ +% Copyright 2003 by Till Tantau . +% +% This program can be redistributed and/or modified under the terms +% of the GNU Public License, version 2. + +\mode + +\usepackage{textcase,regexpatch} + +\setbeamertemplate{blocks}[rounded][shadow=true] + + +\definecolor{TACCred}{RGB}{180,13,29} +\definecolor{TACCorange}{RGB}{210,104,43} +\definecolor{TACCblue}{RGB}{108, 134, 191} +\definecolor{TACCgreen}{RGB}{23,106,70} + +% I downloaded a gimp color palette from +% http://maururu.net/2007/latex-beamer-color-palette/ +% Which provides rgb values (I think) for several of the +% default beamer themes. You can open this in gimp by +% opening the Palettes dialog, right-clicking anywhere and choosing +% 'Import Palette'. A color in there called 'default added blue' +% appeared to be approximately what I wanted. It had the triple +% of values 141 145 208. If you double-click on this in the +% palette editor it gives you a bunch of information. You can't +% use these values directly to set a color...it just comes out white. +% I think definecolor is expecting something normalized by 255. Yes! + + +%%% +% Set the normal text color +%%% +\setbeamercolor{normal text}{fg=black} %,bg=white} +\setbeamercolor{example text}{fg=TACCgreen} +\setbeamercolor{alerted text}{fg=TACCorange} + + +\setbeamercolor{structure}{fg=black} +%\setbeamercolor{structure}{fg=black} + +\setbeamercolor{background canvas}{parent=normal text} +\setbeamercolor{background}{parent=background canvas} + +\setbeamercolor{palette primary}{use=structure,fg=structure.fg} +\setbeamercolor{palette secondary}{use=structure,fg=structure.fg!75!black} +\setbeamercolor{palette tertiary}{use=structure,fg=structure.fg!50!black} +\setbeamercolor{palette quaternary}{fg=black} + +\setbeamercolor{palette sidebar primary}{use=normal text,fg=normal text.fg} +\setbeamercolor{palette sidebar secondary}{use=structure,fg=structure.fg} +\setbeamercolor{palette sidebar tertiary}{use=normal text,fg=normal text.fg} +\setbeamercolor{palette sidebar quaternary}{use=structure,fg=structure.fg} + +\setbeamercolor{math text}{} +\setbeamercolor{math text inlined}{parent=math text} +\setbeamercolor{math text displayed}{parent=math text} + +\setbeamercolor{normal text in math text}{} + +\setbeamercolor{local structure}{parent=structure} + +\setbeamercolor{titlelike}{parent=structure} + +\setbeamercolor{title}{parent=titlelike} +\setbeamercolor{title in head/foot}{parent=palette quaternary} +\setbeamercolor{title in sidebar}{parent=palette sidebar quaternary} + +\setbeamercolor{subtitle}{parent=title} + +\setbeamercolor{author}{} +\setbeamercolor{author in head/foot}{parent=palette primary} +\setbeamercolor{author in sidebar}{use=palette sidebar tertiary,fg=palette sidebar tertiary.fg} + +\setbeamercolor{institute}{} +\setbeamercolor{institute in head/foot}{parent=palette tertiary} +\setbeamercolor{institute in sidebar}{use=palette sidebar tertiary,fg=palette sidebar tertiary.fg} + +\setbeamercolor{date}{} +\setbeamercolor{date in head/foot}{parent=palette secondary} +\setbeamercolor{date in sidebar}{use=palette sidebar tertiary,fg=palette sidebar tertiary.fg} + +\setbeamercolor{titlegraphic}{} + +\setbeamercolor{part name}{} +\setbeamercolor{part title}{parent=titlelike} + +\setbeamercolor{section in toc}{parent=structure} +\setbeamercolor{section in toc shaded}{parent=section in toc} +\setbeamercolor{section in head/foot}{parent=palette tertiary} +\setbeamercolor{section in sidebar}{parent=palette sidebar secondary} +\setbeamercolor{section in sidebar shaded}{use=section in sidebar,fg=section in sidebar.fg!40!bg} +\setbeamercolor{section number projected}{parent=item projected} + +\setbeamercolor{subsection in toc}{} +\setbeamercolor{subsection in toc shaded}{parent=subsection in toc} +\setbeamercolor{subsection in head/foot}{parent=palette secondary} +\setbeamercolor{subsection in sidebar}{parent=palette sidebar primary} +\setbeamercolor{subsection in sidebar shaded}{use=subsection in sidebar,fg=subsection in sidebar.fg!40!bg} +\setbeamercolor{subsection number projected}{parent={subitem projected}} + +\setbeamercolor{subsubsection in toc}{parent=subsection in toc} +\setbeamercolor{subsubsection in toc shaded}{parent=subsubsection in toc} +\setbeamercolor{subsubsection in head/foot}{parent=subsection in head/foot} +\setbeamercolor{subsubsection in sidebar}{parent=subsection in sidebar} +\setbeamercolor{subsubsection in sidebar shaded}{parent=subsection in sidebar shaded} +\setbeamercolor{subsubsection number projected}{parent=subsubitem projected} + +\setbeamercolor{headline}{} +\setbeamercolor{footline}{} + +\setbeamercolor{sidebar}{} +\setbeamercolor{sidebar left}{parent=sidebar} +\setbeamercolor{sidebar right}{parent=sidebar} + +\setbeamercolor{logo}{parent=palette secondary} + +\setbeamercolor{frametitle}{parent=titlelike} +\setbeamercolor{framesubtitle}{parent=frametitle} + +\setbeamercolor{frametitle right}{parent=frametitle} + +\setbeamercolor{caption}{} +\setbeamercolor{caption name}{parent=structure} + +\setbeamercolor{button}{use=local structure,bg=local structure.fg!50!bg,fg=white} +\setbeamercolor{button border}{use=button,fg=button.bg} +\setbeamercolor{navigation symbols}{use=structure,fg=structure.fg!40!bg} +\setbeamercolor{navigation symbols dimmed}{use=structure,fg=structure.fg!20!bg} +\setbeamercolor{mini frame}{parent=section in head/foot} + +\setbeamercolor{block body}{fg=black} +\setbeamercolor{block body alerted}{fg=black} +\setbeamercolor{block body example}{fg=black} + +\setbeamercolor{block title}{bg=TACCblue,fg=white} +\setbeamercolor{block title alerted}{bg=TACCred,fg=white} +\setbeamercolor{block title example}{bg=TACCgreen,fg=white} + +\setbeamercolor{item}{parent=local structure} +\setbeamercolor{subitem}{parent=item} +\setbeamercolor{subsubitem}{parent=subitem} + +\setbeamercolor{item projected}{parent=item,use=item,fg=black,bg=item.fg} +\setbeamercolor{subitem projected}{parent=item projected} +\setbeamercolor{subsubitem projected}{parent=subitem projected} + +\setbeamercolor{enumerate item}{parent=item} +\setbeamercolor{enumerate subitem}{parent=subitem} +\setbeamercolor{enumerate subsubitem}{parent=subsubitem} + +\setbeamercolor{itemize item}{parent=item} +\setbeamercolor{itemize subitem}{parent=subitem} +\setbeamercolor{itemize subsubitem}{parent=subsubitem} + +\setbeamercolor{itemize/enumerate body}{} +\setbeamercolor{itemize/enumerate subbody}{} +\setbeamercolor{itemize/enumerate subsubbody}{} + +\setbeamercolor{description item}{parent=item} + +\setbeamercolor{bibliography item}{parent=item} + +\setbeamercolor{bibliography entry author}{use=structure,fg=structure.fg} +\setbeamercolor{bibliography entry title}{use=normal text,fg=normal text.fg} +\setbeamercolor{bibliography entry location}{use=structure,fg=structure.fg!65!bg} +\setbeamercolor{bibliography entry note}{use=structure,fg=structure.fg!65!bg} + +\setbeamercolor{separation line}{} + +\setbeamercolor{upper separation line head}{parent=separation line} +\setbeamercolor{middle separation line head}{parent=separation line} +\setbeamercolor{lower separation line head}{parent=separation line} + +\setbeamercolor{upper separation line foot}{parent=separation line} +\setbeamercolor{middle separation line foot}{parent=separation line} +\setbeamercolor{lower separation line foot}{parent=separation line} + +\setbeamercolor{abstract}{} +\setbeamercolor{abstract title}{parent=structure} + +\setbeamercolor{verse}{} + +\setbeamercolor{quotation}{} +\setbeamercolor{quote}{parent=quotation} + +\setbeamercolor{page number in head/foot}{fg=fg!50!bg} + +\setbeamercolor{qed symbol}{parent=structure} + +\mode + diff --git a/my_docs/23/lmod_zoom_mtg_2023_02_14/beamerfontthemeTACC.sty b/my_docs/23/lmod_zoom_mtg_2023_02_14/beamerfontthemeTACC.sty deleted file mode 120000 index 78e971fb8..000000000 --- a/my_docs/23/lmod_zoom_mtg_2023_02_14/beamerfontthemeTACC.sty +++ /dev/null @@ -1 +0,0 @@ -../../beamer/beamerfontthemeTACC.sty \ No newline at end of file diff --git a/my_docs/23/lmod_zoom_mtg_2023_02_14/beamerfontthemeTACC.sty b/my_docs/23/lmod_zoom_mtg_2023_02_14/beamerfontthemeTACC.sty new file mode 100755 index 000000000..ef9ce1e5e --- /dev/null +++ b/my_docs/23/lmod_zoom_mtg_2023_02_14/beamerfontthemeTACC.sty @@ -0,0 +1,12 @@ +% Copyright 2003 by Till Tantau +% +% This program can be redistributed and/or modified under the terms +% of the GNU Public License, version 2. + +\mode + +\setbeamerfont{frametitle}{parent=structure,size=\LARGE,series=\bfseries} +\setbeamerfont{framesubtitle}{parent=frametitle,size=\small} + +\mode + \ No newline at end of file diff --git a/my_docs/23/lmod_zoom_mtg_2023_02_14/beamerfontthemeTACC16.sty b/my_docs/23/lmod_zoom_mtg_2023_02_14/beamerfontthemeTACC16.sty deleted file mode 120000 index a1f2fa5f9..000000000 --- a/my_docs/23/lmod_zoom_mtg_2023_02_14/beamerfontthemeTACC16.sty +++ /dev/null @@ -1 +0,0 @@ -../../beamer/beamerfontthemeTACC16.sty \ No newline at end of file diff --git a/my_docs/23/lmod_zoom_mtg_2023_02_14/beamerfontthemeTACC16.sty b/my_docs/23/lmod_zoom_mtg_2023_02_14/beamerfontthemeTACC16.sty new file mode 100755 index 000000000..b65271835 --- /dev/null +++ b/my_docs/23/lmod_zoom_mtg_2023_02_14/beamerfontthemeTACC16.sty @@ -0,0 +1,21 @@ +% Copyright 2003 by Till Tantau +% +% This program can be redistributed and/or modified under the terms +% of the GNU Public License, version 2. + +\mode +\setbeamerfont{title}{parent=structure,size=\LARGE,series=\bfseries} +\setbeamerfont{author}{parent=structure,size=\large, series=\normalfont} +\setbeamerfont{frametitle}{parent=structure,size=\LARGE,series=\bfseries} +\setbeamerfont{framesubtitle}{parent=frametitle,size=\small} + +%\usefonttheme{professionalfonts} % using non standard fonts for beamer +%\usefonttheme{serif} % default family is serif +%\usepackage{fontspec} +%\setmainfont{Century Gothic} + +\usepackage{fontspec} +\usepackage{libertine} + +\mode + diff --git a/my_docs/23/lmod_zoom_mtg_2023_02_14/beamerinnerthemeTACC.sty b/my_docs/23/lmod_zoom_mtg_2023_02_14/beamerinnerthemeTACC.sty deleted file mode 120000 index 8d5ae3921..000000000 --- a/my_docs/23/lmod_zoom_mtg_2023_02_14/beamerinnerthemeTACC.sty +++ /dev/null @@ -1 +0,0 @@ -../../beamer/beamerinnerthemeTACC.sty \ No newline at end of file diff --git a/my_docs/23/lmod_zoom_mtg_2023_02_14/beamerinnerthemeTACC.sty b/my_docs/23/lmod_zoom_mtg_2023_02_14/beamerinnerthemeTACC.sty new file mode 100755 index 000000000..29e2bce81 --- /dev/null +++ b/my_docs/23/lmod_zoom_mtg_2023_02_14/beamerinnerthemeTACC.sty @@ -0,0 +1,11 @@ +\mode + +\setbeamertemplate{itemize item}[circle] +\setbeamertemplate{itemize subitem}{{}--{}} +\setbeamertemplate{itemize subsubitem}[circle] +\setbeamertemplate{section in toc}{$\bullet$\hskip.5em\inserttocsection} +%\setbeamertemplate{subsection in toc}{} +\setbeamertemplate{subsubsection in toc}{} + +\mode + diff --git a/my_docs/23/lmod_zoom_mtg_2023_02_14/beamerinnerthemeTACC16.sty b/my_docs/23/lmod_zoom_mtg_2023_02_14/beamerinnerthemeTACC16.sty deleted file mode 120000 index 5955acc99..000000000 --- a/my_docs/23/lmod_zoom_mtg_2023_02_14/beamerinnerthemeTACC16.sty +++ /dev/null @@ -1 +0,0 @@ -../../beamer/beamerinnerthemeTACC16.sty \ No newline at end of file diff --git a/my_docs/23/lmod_zoom_mtg_2023_02_14/beamerinnerthemeTACC16.sty b/my_docs/23/lmod_zoom_mtg_2023_02_14/beamerinnerthemeTACC16.sty new file mode 100755 index 000000000..f7f454e1d --- /dev/null +++ b/my_docs/23/lmod_zoom_mtg_2023_02_14/beamerinnerthemeTACC16.sty @@ -0,0 +1,11 @@ +\mode + +\setbeamertemplate{itemize item}[triangle] +\setbeamertemplate{itemize subitem}[triangle] +\setbeamertemplate{itemize subsubitem}[triangle] +\setbeamertemplate{section in toc}{$\bullet$\hskip.5em\inserttocsection} +%\setbeamertemplate{subsection in toc}{} +\setbeamertemplate{subsubsection in toc}{} + +\mode + diff --git a/my_docs/23/lmod_zoom_mtg_2023_02_14/beamerouterthemeTACC.sty b/my_docs/23/lmod_zoom_mtg_2023_02_14/beamerouterthemeTACC.sty deleted file mode 120000 index da0a45d33..000000000 --- a/my_docs/23/lmod_zoom_mtg_2023_02_14/beamerouterthemeTACC.sty +++ /dev/null @@ -1 +0,0 @@ -../../beamer/beamerouterthemeTACC.sty \ No newline at end of file diff --git a/my_docs/23/lmod_zoom_mtg_2023_02_14/beamerouterthemeTACC.sty b/my_docs/23/lmod_zoom_mtg_2023_02_14/beamerouterthemeTACC.sty new file mode 100755 index 000000000..038580303 --- /dev/null +++ b/my_docs/23/lmod_zoom_mtg_2023_02_14/beamerouterthemeTACC.sty @@ -0,0 +1,196 @@ +% Copyright 2003 by Till Tantau +% +% This program can be redistributed and/or modified under the terms +% of the GNU Public License, version 2. + +\mode + +\setbeamertemplate{frametitle}[default][center] +\addtobeamertemplate{frametitle}{\vskip 4ex minus 4ex}{} + +% Here we define what appears at the bottom of each slide: the "footline". +\setbeamertemplate{footline}{% + \leavevmode% + + % Horizontal line dividing the rest of the slide from the footer? + % hrule goes all the way across... + % \hrule height.3pt% + % With \rule, you can specify the thickness + % \rule[raise-height]{width}{thickness} + \hspace{.025\textwidth}\rule{.95\textwidth}{.5pt} + + \hbox{% + % On the left half of the footer, insert the TACC logo + \begin{minipage}{.5\textwidth}% + \hskip .033\textwidth%Give horizontal space else this will set on the left edge of the slide! + % TACC logo with custom viewport! + \includegraphics[viewport=1 -1 135 35, clip=true, width=.4\textwidth]{figures/TACC_logo} + \end{minipage} + % + \begin{minipage}{.5\textwidth}% + \vskip .023\textheight% + \raggedleft% + \setlength{\rightskip}{.033\textwidth} + % + % If we are not on the first page, insert a page number + % For some reason, insertframenumber is buggy when you have fragile + % slides with verbatim environments in them... it tends to skip numbers + % for some reason! On the other hand, the pagenumber is incremented + % for *every* slide, including transition slides... + \ifnum \thepage>1 + % \insertshorttitle + \insertframenumber + % \insertframenumber/\inserttotalframenumber + % \insertpagenumber + \else % Do a phantom of whatever you do on other pages, so spacing matches + %$\phantom{\insertshorttitle}$ + $\phantom{\insertframenumber}$ + %$\phantom{\insertframenumber/\inserttotalframenumber}$ + %$\phantom{\insertpagenumber}$ + \fi + \hfill\includegraphics[width=.5\textwidth]{figures/UT_logo}% + \end{minipage}% + }% + \vskip .023\textheight% +} + + + + +\ifTACCheadernav + +\usesectionheadtemplate +{\hfill\insertsectionhead} +{\hfill\color{fg!50!bg}\insertsectionhead} + +% Head +\ifbeamer@compress + +% Here we define how the top of the frame looks, the "headline". +\setbeamertemplate{headline} +{% + \ifnum \thepage>1 + \leavevmode% + \begin{beamercolorbox}[wd=.5\paperwidth,ht=2.5ex,dp=1.125ex]{% + section in head/foot}% + \insertsectionnavigationhorizontal{.5\paperwidth}{\hskip0pt plus1filll}{}% + \end{beamercolorbox}% + \begin{beamercolorbox}[wd=.5\paperwidth,ht=2.5ex,dp=1.125ex]{% + subsection in head/foot}% + \insertsubsectionnavigationhorizontal{% + .5\paperwidth}{}{\hskip0pt plus1filll}% + \end{beamercolorbox}% + \fi %\thepage>1 +} + +\else% Not compressed + +\setbeamertemplate{headline} +{% + \ifnum \thepage>1 + \leavevmode% + \@tempdimb=2.4375ex% + \ifnum\beamer@subsectionmax<\beamer@sectionmax% + \multiply\@tempdimb by\beamer@sectionmax% + \else% + \multiply\@tempdimb by\beamer@subsectionmax% + \fi% + \ifdim\@tempdimb>0pt% + \advance\@tempdimb by 1.125ex% + \begin{beamercolorbox}[wd=.5\paperwidth,ht=\@tempdimb]{% + section in head/foot}% + \vbox to\@tempdimb{\vfil\insertsectionnavigation{.5\paperwidth}\vfil}% + \end{beamercolorbox}% + \begin{beamercolorbox}[wd=.5\paperwidth,ht=\@tempdimb]{% + subsection in head/foot}% + \vbox to\@tempdimb{\vfil\insertsubsectionnavigation{.5\paperwidth}\vfil}% + \end{beamercolorbox}% + \fi% + \fi % \thepage>1 +} + +\fi % end if compressed +\fi % TACCheadernav + + +\ifTACCheadertree + +\setbeamertemplate{headline} +{ + \begin{beamercolorbox}[wd=\paperwidth,colsep=1.5pt + ]{upper separation line head} + \end{beamercolorbox} + % + % Place short title + % + \begin{beamercolorbox}[wd=\paperwidth,ht=2.5ex,dp=1.125ex,% + leftskip=.3cm,rightskip=.3cm plus1fil]{title in head/foot} + \usebeamerfont{title in head/foot}\insertshorttitle + \end{beamercolorbox} + + % + % Place section + % + \begin{beamercolorbox}[wd=\paperwidth,ht=2.5ex,dp=1.125ex,% + leftskip=.3cm,rightskip=.3cm plus1fil]{section in head/foot} + \usebeamerfont{section in head/foot}% + %\ifbeamer@tree@showhooks + \setbox\beamer@tempbox=\hbox{\insertsectionhead}% + \ifdim\wd\beamer@tempbox>1pt% + \hskip2pt\raise1.9pt\hbox{\vrule width0.4pt height1.875ex\vrule width 5pt height0.4pt}% + \hskip1pt% + \fi% \ifdim + %\else% + %\hskip6pt% + %\fi% \ifbeamer + \insertsectionhead + \end{beamercolorbox} + +% +% Place subsection +% +\begin{beamercolorbox}[wd=\paperwidth,ht=2.5ex,dp=1.125ex,% + leftskip=.3cm,rightskip=.3cm plus1fil]{subsection in head/foot} + \usebeamerfont{subsection in head/foot}% + %\ifbeamer@tree@showhooks + \setbox\beamer@tempbox=\hbox{\insertsubsectionhead}% + \ifdim\wd\beamer@tempbox>1pt% + \hskip9.4pt\raise1.9pt\hbox{\vrule width0.4pt height1.875ex\vrule width 5pt height0.4pt}% + \hskip1pt% + \fi% \ifdim + %\else% + %\hskip12pt% + %\fi% \ifbeamer + \insertsubsectionhead +\end{beamercolorbox} + +% +% Place final separation box +% + \begin{beamercolorbox}[wd=\paperwidth,colsep=1.5pt + ]{lower separation line head} + \end{beamercolorbox} + + % + % Another matching rule which helps to frame the content + % + \hspace{.025\textwidth}\rule{.95\textwidth}{.5pt} +} +\fi % TACCheadertree + + +% The following command suppresses all navigation symbols. This is +% necessary in the TACC theme, since it overlaps where we want the +% logo to be. +\setbeamertemplate{navigation symbols}{} + +% Align the navigation symbols vertically (still overlaps our logo!) +%\setbeamertemplate{navigation symbols}[vertical]{} + +% Only places the slide-forward and slide-back symbol, but yes, +% this still overlaps our logo! +%\setbeamertemplate{navigation symbols}[only frame symbol]{} + + +\mode + diff --git a/my_docs/23/lmod_zoom_mtg_2023_02_14/beamerouterthemeTACC16.sty b/my_docs/23/lmod_zoom_mtg_2023_02_14/beamerouterthemeTACC16.sty deleted file mode 120000 index 54bd09537..000000000 --- a/my_docs/23/lmod_zoom_mtg_2023_02_14/beamerouterthemeTACC16.sty +++ /dev/null @@ -1 +0,0 @@ -../../beamer/beamerouterthemeTACC16.sty \ No newline at end of file diff --git a/my_docs/23/lmod_zoom_mtg_2023_02_14/beamerouterthemeTACC16.sty b/my_docs/23/lmod_zoom_mtg_2023_02_14/beamerouterthemeTACC16.sty new file mode 100755 index 000000000..d5e6388c7 --- /dev/null +++ b/my_docs/23/lmod_zoom_mtg_2023_02_14/beamerouterthemeTACC16.sty @@ -0,0 +1,312 @@ +% Antonio Gomez (agomez@tacc.utexas.edu) +% 4-20-17. Added option to put the footer on the right side + + + +\mode + +\usepackage{xcolor} +\usepackage{graphicx} +\usepackage{etoolbox} + + + +% This theme accepts the "rightfooter" option +% When used, it will put the TACC logo at the bottom of the slide on the right side +% By default, it goes to the left + +\xifaspectratio{ + {169} { + \pgfdeclareimage[width=\paperwidth]{titlebackground}{./figures/master169.jpg} + \if@rightfooterOption + \pgfdeclareimage[width=\paperwidth]{background}{./figures/secondary_right169.jpg} +\else + \pgfdeclareimage[width=\paperwidth]{background}{./figures/secondary169.jpg} +\fi +} +}[ +\pgfdeclareimage[width=\paperwidth]{titlebackground}{./figures/master.jpg} + \if@rightfooterOption + \pgfdeclareimage[width=\paperwidth]{background}{./figures/secondary_right.jpg} +\else + \pgfdeclareimage[width=\paperwidth]{background}{./figures/secondary.jpg} +\fi +] + +\setbeamertemplate{background canvas}{% +\xifaspectratio{ + {169} { + \ifnum\c@framenumber=1 % + \begin{picture}(0,0) + \put(-3,-256){% + \pgfuseimage{titlebackground} + } + \end{picture} + \else% + \begin{picture}(0,0) + \put(-3,-260){% + \pgfuseimage{background} + } + \end{picture} + \fi + } + {43} { + \ifnum\c@framenumber=1 % + \begin{picture}(0,0) + \put(-4,-274){% + \pgfuseimage{titlebackground} + } + \end{picture} + \else% + \begin{picture}(0,0) + \put(-4,-274){% + \pgfuseimage{background} + } + \end{picture} + \fi + } +} +} + + + +%\setbeamertemplate{background canvas}{% +% % On title page +% \ifnum\c@framenumber=1 % +% \begin{picture}(0,0) +% \put(0,-253){% +% \pgfuseimage{titlebackground} +% } +% \end{picture} +% +% \else% +% \xifaspectratio{ +% {169} { +% % Other frames background +% \begin{picture}(0,0) +% \put(-4,-260){% +% \pgfuseimage{background} +% } +% \end{picture} +% } +% }[ +% % Other frames background +% \begin{picture}(0,0) +% \put(-4,-274){% +% \pgfuseimage{background} +% } +% \end{picture} +% ] +% \fi% +%} + + +\setbeamertemplate{title page}{ +\vspace{40pt} +\begin{center} +\usebeamerfont{title} {\huge \inserttitle}\par +\vspace{4ex} +\usebeamerfont{author} { + \insertauthor +}\par +\vspace{2ex} +\usebeamerfont{institute}{ + \insertinstitute +} \par +\vspace{2ex} +\usebeamerfont{date}{ + \insertdate +} +\end{center} +} + + +\setbeamertemplate{frametitle}[default][center] +\setbeamertemplate{frametitle}{ + \makeatletter + \regexpatchcmd{\insertframetitle} + {(\c{usebeamertemplate}.*)\c{fi}} + {\c{NoCaseChange}\cB\{\1\cE\}\c{fi}} + {}{}% + \makeatother + \vskip1ex + \insertframetitle +} + +% Here we define what appears at the bottom of each slide: the "footline". +\setbeamertemplate{footline}{% + \leavevmode% + + % Horizontal line dividing the rest of the slide from the footer? + % hrule goes all the way across... + % \hrule height.3pt% + % With \rule, you can specify the thickness + % \rule[raise-height]{width}{thickness} + % \hspace{.025\textwidth}\rule{.95\textwidth}{.5pt} + + \hbox{% + \ifnum \thepage>1 + \if@rightfooterOption + \begin{minipage}{.2\textwidth}% + \hskip .05\textwidth%Give horizontal space else this will set on the left edge of the slide! + \end{minipage} + \else + \begin{minipage}{.4\textwidth}% + \hskip .05\textwidth%Give horizontal space else this will set on the left edge of the slide! + \end{minipage} + \fi + + + \begin{minipage}{\textwidth}% + % \vskip .023\textheight% + \raggedleft% + \setlength{\rightskip}{\textwidth} + \if@rightfooterOption + \hbox{% + \begin{beamercolorbox}[wd=0.7\textwidth,ht=2.25ex,dp=1ex,left]{author in head/foot}% + \insertshorttitle{} \hskip .01\textwidth | \hskip .01\textwidth \insertdate{} \hskip .01\textwidth | \hskip .01\textwidth \insertframenumber{} + \end{beamercolorbox}% + } + \else + \hbox{% + \begin{beamercolorbox}[wd=0.5\textwidth,ht=2.25ex,dp=1ex,left]{author in head/foot}% + \insertshorttitle{} \hskip .01\textwidth | \hskip .01\textwidth \insertdate{} \hskip .01\textwidth | \hskip .01\textwidth \insertframenumber{} + \end{beamercolorbox}% + } + \fi + + \end{minipage}% + \begin{minipage}{.05\textwidth}% + \end{minipage}% + \fi %\thepage>1 + }% + \vskip .023\textheight% + +} + + + + +\ifTACCheadernav + +\usesectionheadtemplate +{\hfill\insertsectionhead} +{\hfill\color{fg!50!bg}\insertsectionhead} + +% Head +\ifbeamer@compress + +% Here we define how the top of the frame looks, the "headline". +\setbeamertemplate{headline} +{% + \ifnum \thepage>1 + \leavevmode% + \begin{beamercolorbox}[wd=.5\paperwidth,ht=2.5ex,dp=1.125ex]{% + section in head/foot}% + \insertsectionnavigationhorizontal{.5\paperwidth}{\hskip0pt plus1filll}{}% + \end{beamercolorbox}% + \begin{beamercolorbox}[wd=.5\paperwidth,ht=2.5ex,dp=1.125ex]{% + subsection in head/foot}% + \insertsubsectionnavigationhorizontal{% + .5\paperwidth}{}{\hskip0pt plus1filll}% + \end{beamercolorbox}% + \fi %\thepage>1 +} + +\else% Not compressed + +\setbeamertemplate{headline} +{% + \ifnum \thepage>1 + \leavevmode% + \@tempdimb=2.4375ex% + \ifnum\beamer@subsectionmax<\beamer@sectionmax% + \multiply\@tempdimb by\beamer@sectionmax% + \else% + \multiply\@tempdimb by\beamer@subsectionmax% + \fi% + \ifdim\@tempdimb>0pt% + \advance\@tempdimb by 1.125ex% + \begin{beamercolorbox}[wd=.5\paperwidth,ht=\@tempdimb]{% + section in head/foot}% + \vbox to\@tempdimb{\vfil\insertsectionnavigation{.5\paperwidth}\vfil}% + \end{beamercolorbox}% + \begin{beamercolorbox}[wd=.5\paperwidth,ht=\@tempdimb]{% + subsection in head/foot}% + \vbox to\@tempdimb{\vfil\insertsubsectionnavigation{.5\paperwidth}\vfil}% + \end{beamercolorbox}% + \fi% + \fi % \thepage>1 +} + +\fi % end if compressed +\fi % TACCheadernav + + +\ifTACCheadertree + +\setbeamertemplate{headline} +{ + \begin{beamercolorbox}[wd=\paperwidth,colsep=1.5pt]{upper separation line head} + \end{beamercolorbox} + % + % Place short title + % + \begin{beamercolorbox}[wd=\paperwidth,ht=2.5ex,dp=1.125ex,% + leftskip=.3cm,rightskip=.3cm plus1fil]{title in head/foot} + \usebeamerfont{title in head/foot}\insertshorttitle + \end{beamercolorbox} + + % + % Place section + % + \begin{beamercolorbox}[wd=\paperwidth,ht=2.5ex,dp=1.125ex,% + leftskip=.3cm,rightskip=.3cm plus1fil]{section in head/foot} + \usebeamerfont{section in head/foot}% + %\ifbeamer@tree@showhooks + \setbox\beamer@tempbox=\hbox{\insertsectionhead}% + \ifdim\wd\beamer@tempbox>1pt% + \hskip2pt\raise1.9pt\hbox{\vrule width0.4pt height1.875ex\vrule width 5pt height0.4pt}% + \hskip1pt% + \fi + \insertsectionhead + \end{beamercolorbox} + +% +% Place subsection +% +\begin{beamercolorbox}[wd=\paperwidth,ht=2.5ex,dp=1.125ex,% + leftskip=.3cm,rightskip=.3cm plus1fil]{subsection in head/foot} + \usebeamerfont{subsection in head/foot}% + %\ifbeamer@tree@showhooks + \setbox\beamer@tempbox=\hbox{\insertsubsectionhead}% + \ifdim\wd\beamer@tempbox>1pt% + \hskip9.4pt\raise1.9pt\hbox{\vrule width0.4pt height1.875ex\vrule width 5pt height0.4pt}% + \hskip1pt% + \fi + \insertsubsectionhead +\end{beamercolorbox} + +% +% Place final separation box +% + \begin{beamercolorbox}[wd=\paperwidth,colsep=1.5pt + ]{lower separation line head} + \end{beamercolorbox} + + % + % Another matching rule which helps to frame the content + % + \hspace{.025\textwidth}\rule{.95\textwidth}{.5pt} +} +\fi % TACCheadertree + + +% The following command suppresses all navigation symbols. This is +% necessary in the TACC theme, since it overlaps where we want the +% logo to be. +\setbeamertemplate{navigation symbols}{} + + +\mode + diff --git a/my_docs/23/lmod_zoom_mtg_2023_02_14/beamerthemeTACC.sty b/my_docs/23/lmod_zoom_mtg_2023_02_14/beamerthemeTACC.sty deleted file mode 120000 index 5c339abd4..000000000 --- a/my_docs/23/lmod_zoom_mtg_2023_02_14/beamerthemeTACC.sty +++ /dev/null @@ -1 +0,0 @@ -../../beamer/beamerthemeTACC.sty \ No newline at end of file diff --git a/my_docs/23/lmod_zoom_mtg_2023_02_14/beamerthemeTACC.sty b/my_docs/23/lmod_zoom_mtg_2023_02_14/beamerthemeTACC.sty new file mode 100755 index 000000000..c6a1b1269 --- /dev/null +++ b/my_docs/23/lmod_zoom_mtg_2023_02_14/beamerthemeTACC.sty @@ -0,0 +1,26 @@ +%% TACC theme for beamer + +\newif\ifTACCheadernav +\DeclareOption{headernav}{\global\TACCheadernavtrue} + +\newif\ifTACCheadertree +\DeclareOption{headertree}{\global\TACCheadertreetrue} +\ProcessOptions + +\mode + +\usefonttheme{TACC} +\usecolortheme{TACC} +\useinnertheme{TACC} +\useoutertheme{TACC} + +\mode + + +\newcommand{\event}[1]{% + \makeatletter% + \def\TACC@eventname{#1}% + \makeatother} + +\newcommand{\sectionframe}[1]{\section{#1}\frame{\Large\textbf{#1}}} +\newcommand{\subsectionframe}[1]{\subsection{#1}\frame{\large\textbf{#1}}} diff --git a/my_docs/23/lmod_zoom_mtg_2023_02_14/beamerthemeTACC16.sty b/my_docs/23/lmod_zoom_mtg_2023_02_14/beamerthemeTACC16.sty deleted file mode 120000 index 7a9d4d296..000000000 --- a/my_docs/23/lmod_zoom_mtg_2023_02_14/beamerthemeTACC16.sty +++ /dev/null @@ -1 +0,0 @@ -../../beamer/beamerthemeTACC16.sty \ No newline at end of file diff --git a/my_docs/23/lmod_zoom_mtg_2023_02_14/beamerthemeTACC16.sty b/my_docs/23/lmod_zoom_mtg_2023_02_14/beamerthemeTACC16.sty new file mode 100755 index 000000000..b522d0207 --- /dev/null +++ b/my_docs/23/lmod_zoom_mtg_2023_02_14/beamerthemeTACC16.sty @@ -0,0 +1,61 @@ +%% TACC theme for beamer + + +\newif\if@rightfooterOption +\@rightfooterOptionfalse +\DeclareOption{rightfooter}{\@rightfooterOptiontrue} +\ProcessOptions + + +\newif\ifTACCheadernav +\DeclareOption{headernav}{\global\TACCheadernavtrue} + +\newif\ifTACCheadertree +\DeclareOption{headertree}{\global\TACCheadertreetrue} +\ProcessOptions + +\usepackage{xparse} +\ExplSyntaxOn +\NewDocumentCommand{\ifaspectratio}{mmm} + { + % Recover the option from those passed to the class + \keys_set:nf { zunbeltz/beameroptions } { \use:c { opt@beamer.cls } } + \str_if_eq:nVTF { #1 } \l_zunbeltz_aspectratio_tl { #2 } { #3 } + } +\NewDocumentCommand{\xifaspectratio}{mO{}} + { + % Recover the option from those passed to the class + \keys_set:nf { zunbeltz/beameroptions } { \use:c { opt@beamer.cls } } + \str_case:VnF \l_zunbeltz_aspectratio_tl { #1 } { #2 } + } +% We need to define only one key, the other are treated as `unknown' +\keys_define:nn { zunbeltz/beameroptions } + { + aspectratio .tl_set:N = \l_zunbeltz_aspectratio_tl, + aspectratio .initial:n = 43, + unknown .code:n = {}, + } + +% Generate the variants we need +\cs_generate_variant:Nn \keys_set:nn { nf } +\cs_generate_variant:Nn \str_if_eq:nnTF { nV } +\cs_generate_variant:Nn \str_case:nnF { V } +\ExplSyntaxOff + +\mode + +\usefonttheme{TACC16} +\useinnertheme{TACC16} +\useoutertheme{TACC16} +\usecolortheme{TACC16} + +\mode + + +\newcommand{\event}[1]{% + \makeatletter% + \def\TACC@eventname{#1}% + \makeatother} + +\newcommand{\sectionframe}[1]{\section{#1}\frame{\Large\textbf{#1}}} +\newcommand{\subsectionframe}[1]{\subsection{#1}\frame{\large\textbf{#1}}} diff --git a/my_docs/23/lmod_zoom_mtg_2023_02_14/figures b/my_docs/23/lmod_zoom_mtg_2023_02_14/figures deleted file mode 120000 index ddafd8974..000000000 --- a/my_docs/23/lmod_zoom_mtg_2023_02_14/figures +++ /dev/null @@ -1 +0,0 @@ -../../beamer/figures \ No newline at end of file diff --git a/my_docs/23/lmod_zoom_mtg_2023_02_14/figures/TACC_logo.pdf b/my_docs/23/lmod_zoom_mtg_2023_02_14/figures/TACC_logo.pdf new file mode 100755 index 000000000..c018a20cb Binary files /dev/null and b/my_docs/23/lmod_zoom_mtg_2023_02_14/figures/TACC_logo.pdf differ diff --git a/my_docs/23/lmod_zoom_mtg_2023_02_14/figures/UT_logo.pdf b/my_docs/23/lmod_zoom_mtg_2023_02_14/figures/UT_logo.pdf new file mode 100755 index 000000000..d5b42e752 Binary files /dev/null and b/my_docs/23/lmod_zoom_mtg_2023_02_14/figures/UT_logo.pdf differ diff --git a/my_docs/23/lmod_zoom_mtg_2023_02_14/figures/cc.png b/my_docs/23/lmod_zoom_mtg_2023_02_14/figures/cc.png new file mode 100644 index 000000000..8a532ff8f Binary files /dev/null and b/my_docs/23/lmod_zoom_mtg_2023_02_14/figures/cc.png differ diff --git a/my_docs/23/lmod_zoom_mtg_2023_02_14/figures/isa.png b/my_docs/23/lmod_zoom_mtg_2023_02_14/figures/isa.png new file mode 100644 index 000000000..f95d985e7 Binary files /dev/null and b/my_docs/23/lmod_zoom_mtg_2023_02_14/figures/isa.png differ diff --git a/my_docs/23/lmod_zoom_mtg_2023_02_14/figures/master.jpg b/my_docs/23/lmod_zoom_mtg_2023_02_14/figures/master.jpg new file mode 100644 index 000000000..f5c56c04a Binary files /dev/null and b/my_docs/23/lmod_zoom_mtg_2023_02_14/figures/master.jpg differ diff --git a/my_docs/23/lmod_zoom_mtg_2023_02_14/figures/master169.jpg b/my_docs/23/lmod_zoom_mtg_2023_02_14/figures/master169.jpg new file mode 100644 index 000000000..b215776eb Binary files /dev/null and b/my_docs/23/lmod_zoom_mtg_2023_02_14/figures/master169.jpg differ diff --git a/my_docs/23/lmod_zoom_mtg_2023_02_14/figures/master169.png b/my_docs/23/lmod_zoom_mtg_2023_02_14/figures/master169.png new file mode 100644 index 000000000..bc5c0ed12 Binary files /dev/null and b/my_docs/23/lmod_zoom_mtg_2023_02_14/figures/master169.png differ diff --git a/my_docs/23/lmod_zoom_mtg_2023_02_14/figures/secondary.jpg b/my_docs/23/lmod_zoom_mtg_2023_02_14/figures/secondary.jpg new file mode 100644 index 000000000..d905a95c9 Binary files /dev/null and b/my_docs/23/lmod_zoom_mtg_2023_02_14/figures/secondary.jpg differ diff --git a/my_docs/23/lmod_zoom_mtg_2023_02_14/figures/secondary169.jpg b/my_docs/23/lmod_zoom_mtg_2023_02_14/figures/secondary169.jpg new file mode 100644 index 000000000..4eb017957 Binary files /dev/null and b/my_docs/23/lmod_zoom_mtg_2023_02_14/figures/secondary169.jpg differ diff --git a/my_docs/23/lmod_zoom_mtg_2023_02_14/figures/secondary169.png b/my_docs/23/lmod_zoom_mtg_2023_02_14/figures/secondary169.png new file mode 100644 index 000000000..cb9060a56 Binary files /dev/null and b/my_docs/23/lmod_zoom_mtg_2023_02_14/figures/secondary169.png differ diff --git a/my_docs/23/lmod_zoom_mtg_2023_02_14/figures/secondary_right.jpg b/my_docs/23/lmod_zoom_mtg_2023_02_14/figures/secondary_right.jpg new file mode 100644 index 000000000..f25f93a58 Binary files /dev/null and b/my_docs/23/lmod_zoom_mtg_2023_02_14/figures/secondary_right.jpg differ diff --git a/my_docs/23/lmod_zoom_mtg_2023_02_14/figures/secondary_right169.jpg b/my_docs/23/lmod_zoom_mtg_2023_02_14/figures/secondary_right169.jpg new file mode 100644 index 000000000..567a1078f Binary files /dev/null and b/my_docs/23/lmod_zoom_mtg_2023_02_14/figures/secondary_right169.jpg differ diff --git a/my_docs/23/lmod_zoom_mtg_2023_02_14/themes b/my_docs/23/lmod_zoom_mtg_2023_02_14/themes deleted file mode 120000 index a98530730..000000000 --- a/my_docs/23/lmod_zoom_mtg_2023_02_14/themes +++ /dev/null @@ -1 +0,0 @@ -../../beamer/themes \ No newline at end of file diff --git a/my_docs/23/lmod_zoom_mtg_2023_02_14/themes/beamercolorthemeTACC16.sty b/my_docs/23/lmod_zoom_mtg_2023_02_14/themes/beamercolorthemeTACC16.sty new file mode 100644 index 000000000..248ae8cb6 --- /dev/null +++ b/my_docs/23/lmod_zoom_mtg_2023_02_14/themes/beamercolorthemeTACC16.sty @@ -0,0 +1,193 @@ +% Copyright 2003 by Till Tantau . +% +% This program can be redistributed and/or modified under the terms +% of the GNU Public License, version 2. + +\mode + +\usepackage{textcase,regexpatch} + +\setbeamertemplate{blocks}[rounded][shadow=true] + + +\definecolor{TACCred}{RGB}{180,13,29} +\definecolor{TACCorange}{RGB}{210,104,43} +\definecolor{TACCblue}{RGB}{21,77,122} +%\definecolor{TACCgreen}{RGB}{30,134,104} +\definecolor{TACCgreen}{RGB}{49,168,51} + +% I downloaded a gimp color palette from +% http://maururu.net/2007/latex-beamer-color-palette/ +% Which provides rgb values (I think) for several of the +% default beamer themes. You can open this in gimp by +% opening the Palettes dialog, right-clicking anywhere and choosing +% 'Import Palette'. A color in there called 'default added blue' +% appeared to be approximately what I wanted. It had the triple +% of values 141 145 208. If you double-click on this in the +% palette editor it gives you a bunch of information. You can't +% use these values directly to set a color...it just comes out white. +% I think definecolor is expecting something normalized by 255. Yes! + + +%%% +% Set the normal text color +%%% +\setbeamercolor{normal text}{fg=black} %,bg=white} +\setbeamercolor{example text}{fg=TACCgreen} +\setbeamercolor{alerted text}{fg=TACCorange} + + +\setbeamercolor{structure}{fg=black} +%\setbeamercolor{structure}{fg=black} + +\setbeamercolor{background canvas}{parent=normal text} +\setbeamercolor{background}{parent=background canvas} + +\setbeamercolor{palette primary}{use=structure,fg=structure.fg} +\setbeamercolor{palette secondary}{use=structure,fg=structure.fg!75!black} +\setbeamercolor{palette tertiary}{use=structure,fg=structure.fg!50!black} +\setbeamercolor{palette quaternary}{fg=black} + +\setbeamercolor{palette sidebar primary}{use=normal text,fg=normal text.fg} +\setbeamercolor{palette sidebar secondary}{use=structure,fg=structure.fg} +\setbeamercolor{palette sidebar tertiary}{use=normal text,fg=normal text.fg} +\setbeamercolor{palette sidebar quaternary}{use=structure,fg=structure.fg} + +\setbeamercolor{math text}{} +\setbeamercolor{math text inlined}{parent=math text} +\setbeamercolor{math text displayed}{parent=math text} + +\setbeamercolor{normal text in math text}{} + +\setbeamercolor{local structure}{parent=structure} + +\setbeamercolor{titlelike}{parent=structure} + +\setbeamercolor{title}{parent=titlelike} +\setbeamercolor{title in head/foot}{parent=palette quaternary} +\setbeamercolor{title in sidebar}{parent=palette sidebar quaternary} + +\setbeamercolor{subtitle}{parent=title} + +\setbeamercolor{author}{} +\setbeamercolor{author in head/foot}{parent=palette primary} +\setbeamercolor{author in sidebar}{use=palette sidebar tertiary,fg=palette sidebar tertiary.fg} + +\setbeamercolor{institute}{} +\setbeamercolor{institute in head/foot}{parent=palette tertiary} +\setbeamercolor{institute in sidebar}{use=palette sidebar tertiary,fg=palette sidebar tertiary.fg} + +\setbeamercolor{date}{} +\setbeamercolor{date in head/foot}{parent=palette secondary} +\setbeamercolor{date in sidebar}{use=palette sidebar tertiary,fg=palette sidebar tertiary.fg} + +\setbeamercolor{titlegraphic}{} + +\setbeamercolor{part name}{} +\setbeamercolor{part title}{parent=titlelike} + +\setbeamercolor{section in toc}{parent=structure} +\setbeamercolor{section in toc shaded}{parent=section in toc} +\setbeamercolor{section in head/foot}{parent=palette tertiary} +\setbeamercolor{section in sidebar}{parent=palette sidebar secondary} +\setbeamercolor{section in sidebar shaded}{use=section in sidebar,fg=section in sidebar.fg!40!bg} +\setbeamercolor{section number projected}{parent=item projected} + +\setbeamercolor{subsection in toc}{} +\setbeamercolor{subsection in toc shaded}{parent=subsection in toc} +\setbeamercolor{subsection in head/foot}{parent=palette secondary} +\setbeamercolor{subsection in sidebar}{parent=palette sidebar primary} +\setbeamercolor{subsection in sidebar shaded}{use=subsection in sidebar,fg=subsection in sidebar.fg!40!bg} +\setbeamercolor{subsection number projected}{parent={subitem projected}} + +\setbeamercolor{subsubsection in toc}{parent=subsection in toc} +\setbeamercolor{subsubsection in toc shaded}{parent=subsubsection in toc} +\setbeamercolor{subsubsection in head/foot}{parent=subsection in head/foot} +\setbeamercolor{subsubsection in sidebar}{parent=subsection in sidebar} +\setbeamercolor{subsubsection in sidebar shaded}{parent=subsection in sidebar shaded} +\setbeamercolor{subsubsection number projected}{parent=subsubitem projected} + +\setbeamercolor{headline}{} +\setbeamercolor{footline}{} + +\setbeamercolor{sidebar}{} +\setbeamercolor{sidebar left}{parent=sidebar} +\setbeamercolor{sidebar right}{parent=sidebar} + +\setbeamercolor{logo}{parent=palette secondary} + +\setbeamercolor{frametitle}{parent=titlelike} +\setbeamercolor{framesubtitle}{parent=frametitle} + +\setbeamercolor{frametitle right}{parent=frametitle} + +\setbeamercolor{caption}{} +\setbeamercolor{caption name}{parent=structure} + +\setbeamercolor{button}{use=local structure,bg=local structure.fg!50!bg,fg=white} +\setbeamercolor{button border}{use=button,fg=button.bg} +\setbeamercolor{navigation symbols}{use=structure,fg=structure.fg!40!bg} +\setbeamercolor{navigation symbols dimmed}{use=structure,fg=structure.fg!20!bg} +\setbeamercolor{mini frame}{parent=section in head/foot} + +\setbeamercolor{block body}{fg=black} +\setbeamercolor{block body alerted}{fg=black} +\setbeamercolor{block body example}{fg=black} + +\setbeamercolor{block title}{bg=TACCblue,fg=white} +\setbeamercolor{block title alerted}{bg=TACCred,fg=white} +\setbeamercolor{block title example}{bg=TACCgreen,fg=white} + +\setbeamercolor{item}{parent=local structure} +\setbeamercolor{subitem}{parent=item} +\setbeamercolor{subsubitem}{parent=subitem} + +\setbeamercolor{item projected}{parent=item,use=item,fg=black,bg=item.fg} +\setbeamercolor{subitem projected}{parent=item projected} +\setbeamercolor{subsubitem projected}{parent=subitem projected} + +\setbeamercolor{enumerate item}{parent=item} +\setbeamercolor{enumerate subitem}{parent=subitem} +\setbeamercolor{enumerate subsubitem}{parent=subsubitem} + +\setbeamercolor{itemize item}{parent=item} +\setbeamercolor{itemize subitem}{parent=subitem} +\setbeamercolor{itemize subsubitem}{parent=subsubitem} + +\setbeamercolor{itemize/enumerate body}{} +\setbeamercolor{itemize/enumerate subbody}{} +\setbeamercolor{itemize/enumerate subsubbody}{} + +\setbeamercolor{description item}{parent=item} + +\setbeamercolor{bibliography item}{parent=item} + +\setbeamercolor{bibliography entry author}{use=structure,fg=structure.fg} +\setbeamercolor{bibliography entry title}{use=normal text,fg=normal text.fg} +\setbeamercolor{bibliography entry location}{use=structure,fg=structure.fg!65!bg} +\setbeamercolor{bibliography entry note}{use=structure,fg=structure.fg!65!bg} + +\setbeamercolor{separation line}{} + +\setbeamercolor{upper separation line head}{parent=separation line} +\setbeamercolor{middle separation line head}{parent=separation line} +\setbeamercolor{lower separation line head}{parent=separation line} + +\setbeamercolor{upper separation line foot}{parent=separation line} +\setbeamercolor{middle separation line foot}{parent=separation line} +\setbeamercolor{lower separation line foot}{parent=separation line} + +\setbeamercolor{abstract}{} +\setbeamercolor{abstract title}{parent=structure} + +\setbeamercolor{verse}{} + +\setbeamercolor{quotation}{} +\setbeamercolor{quote}{parent=quotation} + +\setbeamercolor{page number in head/foot}{fg=fg!50!bg} + +\setbeamercolor{qed symbol}{parent=structure} + +\mode + diff --git a/my_docs/23/lmod_zoom_mtg_2023_02_14/themes/beamerfontthemeTACC16.sty b/my_docs/23/lmod_zoom_mtg_2023_02_14/themes/beamerfontthemeTACC16.sty new file mode 100644 index 000000000..d0fc325cc --- /dev/null +++ b/my_docs/23/lmod_zoom_mtg_2023_02_14/themes/beamerfontthemeTACC16.sty @@ -0,0 +1,21 @@ +% Copyright 2003 by Till Tantau +% +% This program can be redistributed and/or modified under the terms +% of the GNU Public License, version 2. + +\mode +\setbeamerfont{title}{parent=structure,size=\LARGE,series=\bfseries} +\setbeamerfont{author}{parent=structure,size=\large, series=\normalfont} +\setbeamerfont{frametitle}{parent=structure,size=\LARGE,series=\bfseries} +\setbeamerfont{framesubtitle}{parent=frametitle,size=\small} + +%\usefonttheme{professionalfonts} % using non standard fonts for beamer +%\usefonttheme{serif} % default family is serif +%\usepackage{fontspec} +%\setmainfont{Century Gothic} + +%\usepackage{fontspec} +\usepackage{libertine} + +\mode + diff --git a/my_docs/23/lmod_zoom_mtg_2023_02_14/themes/beamerinnerthemeTACC16.sty b/my_docs/23/lmod_zoom_mtg_2023_02_14/themes/beamerinnerthemeTACC16.sty new file mode 100644 index 000000000..f7f454e1d --- /dev/null +++ b/my_docs/23/lmod_zoom_mtg_2023_02_14/themes/beamerinnerthemeTACC16.sty @@ -0,0 +1,11 @@ +\mode + +\setbeamertemplate{itemize item}[triangle] +\setbeamertemplate{itemize subitem}[triangle] +\setbeamertemplate{itemize subsubitem}[triangle] +\setbeamertemplate{section in toc}{$\bullet$\hskip.5em\inserttocsection} +%\setbeamertemplate{subsection in toc}{} +\setbeamertemplate{subsubsection in toc}{} + +\mode + diff --git a/my_docs/23/lmod_zoom_mtg_2023_02_14/themes/beamerouterthemeTACC16-169.sty b/my_docs/23/lmod_zoom_mtg_2023_02_14/themes/beamerouterthemeTACC16-169.sty new file mode 100644 index 000000000..c62f9ed04 --- /dev/null +++ b/my_docs/23/lmod_zoom_mtg_2023_02_14/themes/beamerouterthemeTACC16-169.sty @@ -0,0 +1,247 @@ +% Copyright 2003 by Till Tantau +% +% This program can be redistributed and/or modified under the terms +% of the GNU Public License, version 2. + +\mode + +\usepackage{xcolor} +\usepackage{graphicx} +\usepackage{etoolbox} + +\pgfdeclareimage[width=\paperwidth]{titlebackground}{./figures/master169.png} +\pgfdeclareimage[width=\paperwidth]{background}{./figures/secondary169.png} + +\setbeamertemplate{background canvas}{% + \ifnum\c@framenumber=1% + \begin{picture}(0,0) + \put(-0.15,-250){% + \pgfuseimage{titlebackground} + } + %\put(0,-130.7){% + + %\begin{minipage}[b][45mm][t]{\textwidth}%{226mm} + %\begin{center} + % \usebeamerfont{title}{\MakeTextUppercase{\inserttitle}\par} + %\vspace{2ex} + %\usebeamerfont{author}{\insertauthor} + % \end{center} + %\end{minipage} + %} + \end{picture} + % On title page + \else% + % Other frames background + \begin{picture}(0,0) + \put(-0.15,-255.55){% + \pgfuseimage{background} + } + \end{picture} + \fi% +} + + +\setbeamertemplate{title page}{ +\vspace{40pt} +\begin{center} +\usebeamerfont{title} {\huge \inserttitle}\par +\vspace{4ex} +\usebeamerfont{author} { + \insertauthor +}\par +\vspace{2ex} +\usebeamerfont{institute}{ + \insertinstitute +} \par +\vspace{2ex} +\usebeamerfont{date}{ + \insertdate +} +\end{center} +} + + +\setbeamertemplate{frametitle}[default][center] +\setbeamertemplate{frametitle}{ + \makeatletter + \regexpatchcmd{\insertframetitle} + {(\c{usebeamertemplate}.*)\c{fi}} + {\c{NoCaseChange}\cB\{\1\cE\}\c{fi}} + {}{}% + \makeatother + \vskip1ex + \insertframetitle +} + +% Here we define what appears at the bottom of each slide: the "footline". +\setbeamertemplate{footline}{% + \leavevmode% + + % Horizontal line dividing the rest of the slide from the footer? + % hrule goes all the way across... + % \hrule height.3pt% + % With \rule, you can specify the thickness + % \rule[raise-height]{width}{thickness} + % \hspace{.025\textwidth}\rule{.95\textwidth}{.5pt} + + \hbox{% + \ifnum \thepage>1 + % On the left half of the footer, insert the TACC of + \begin{minipage}{.2\textwidth}% + \hskip .05\textwidth%Give horizontal space else this will set on the left edge of the slide! + % \includegraphics[width=.8\textwidth]{TACC_logo.png} + \end{minipage} + + + \begin{minipage}{\textwidth}% + % \vskip .023\textheight% + \raggedleft% + \setlength{\rightskip}{\textwidth} + \hbox{% + \begin{beamercolorbox}[wd=0.7\textwidth,ht=2.25ex,dp=1ex,left]{author in head/foot}% + \insertshorttitle{} \hskip .01\textwidth | \hskip .01\textwidth \insertdate{} \hskip .01\textwidth | \hskip .01\textwidth \insertframenumber{} + \end{beamercolorbox}% + } + + % + % If we are not on the first page, insert a page number + % For some reason, insertframenumber is buggy when you have fragile + % slides with verbatim environments in them... it tends to skip numbers + % for some reason! On the other hand, the pagenumber is incremented + % for *every* slide, including transition slides... + % \hfill\includegraphics[width=\textwidth]{tacc_ut.png} + \end{minipage}% + \begin{minipage}{.05\textwidth}% + \end{minipage}% + \fi %\thepage>1 + }% + \vskip .023\textheight% + +} + + + + +\ifTACCheadernav + +\usesectionheadtemplate +{\hfill\insertsectionhead} +{\hfill\color{fg!50!bg}\insertsectionhead} + +% Head +\ifbeamer@compress + +% Here we define how the top of the frame looks, the "headline". +\setbeamertemplate{headline} +{% + \ifnum \thepage>1 + \leavevmode% + \begin{beamercolorbox}[wd=.5\paperwidth,ht=2.5ex,dp=1.125ex]{% + section in head/foot}% + \insertsectionnavigationhorizontal{.5\paperwidth}{\hskip0pt plus1filll}{}% + \end{beamercolorbox}% + \begin{beamercolorbox}[wd=.5\paperwidth,ht=2.5ex,dp=1.125ex]{% + subsection in head/foot}% + \insertsubsectionnavigationhorizontal{% + .5\paperwidth}{}{\hskip0pt plus1filll}% + \end{beamercolorbox}% + \fi %\thepage>1 +} + +\else% Not compressed + +\setbeamertemplate{headline} +{% + \ifnum \thepage>1 + \leavevmode% + \@tempdimb=2.4375ex% + \ifnum\beamer@subsectionmax<\beamer@sectionmax% + \multiply\@tempdimb by\beamer@sectionmax% + \else% + \multiply\@tempdimb by\beamer@subsectionmax% + \fi% + \ifdim\@tempdimb>0pt% + \advance\@tempdimb by 1.125ex% + \begin{beamercolorbox}[wd=.5\paperwidth,ht=\@tempdimb]{% + section in head/foot}% + \vbox to\@tempdimb{\vfil\insertsectionnavigation{.5\paperwidth}\vfil}% + \end{beamercolorbox}% + \begin{beamercolorbox}[wd=.5\paperwidth,ht=\@tempdimb]{% + subsection in head/foot}% + \vbox to\@tempdimb{\vfil\insertsubsectionnavigation{.5\paperwidth}\vfil}% + \end{beamercolorbox}% + \fi% + \fi % \thepage>1 +} + +\fi % end if compressed +\fi % TACCheadernav + + +\ifTACCheadertree + +\setbeamertemplate{headline} +{ + \begin{beamercolorbox}[wd=\paperwidth,colsep=1.5pt]{upper separation line head} + \end{beamercolorbox} + % + % Place short title + % + \begin{beamercolorbox}[wd=\paperwidth,ht=2.5ex,dp=1.125ex,% + leftskip=.3cm,rightskip=.3cm plus1fil]{title in head/foot} + \usebeamerfont{title in head/foot}\insertshorttitle + \end{beamercolorbox} + + % + % Place section + % + \begin{beamercolorbox}[wd=\paperwidth,ht=2.5ex,dp=1.125ex,% + leftskip=.3cm,rightskip=.3cm plus1fil]{section in head/foot} + \usebeamerfont{section in head/foot}% + %\ifbeamer@tree@showhooks + \setbox\beamer@tempbox=\hbox{\insertsectionhead}% + \ifdim\wd\beamer@tempbox>1pt% + \hskip2pt\raise1.9pt\hbox{\vrule width0.4pt height1.875ex\vrule width 5pt height0.4pt}% + \hskip1pt% + \fi + \insertsectionhead + \end{beamercolorbox} + +% +% Place subsection +% +\begin{beamercolorbox}[wd=\paperwidth,ht=2.5ex,dp=1.125ex,% + leftskip=.3cm,rightskip=.3cm plus1fil]{subsection in head/foot} + \usebeamerfont{subsection in head/foot}% + %\ifbeamer@tree@showhooks + \setbox\beamer@tempbox=\hbox{\insertsubsectionhead}% + \ifdim\wd\beamer@tempbox>1pt% + \hskip9.4pt\raise1.9pt\hbox{\vrule width0.4pt height1.875ex\vrule width 5pt height0.4pt}% + \hskip1pt% + \fi + \insertsubsectionhead +\end{beamercolorbox} + +% +% Place final separation box +% + \begin{beamercolorbox}[wd=\paperwidth,colsep=1.5pt + ]{lower separation line head} + \end{beamercolorbox} + + % + % Another matching rule which helps to frame the content + % + \hspace{.025\textwidth}\rule{.95\textwidth}{.5pt} +} +\fi % TACCheadertree + + +% The following command suppresses all navigation symbols. This is +% necessary in the TACC theme, since it overlaps where we want the +% logo to be. +\setbeamertemplate{navigation symbols}{} + + +\mode + diff --git a/my_docs/23/lmod_zoom_mtg_2023_02_14/themes/beamerouterthemeTACC16.sty b/my_docs/23/lmod_zoom_mtg_2023_02_14/themes/beamerouterthemeTACC16.sty new file mode 100644 index 000000000..c5b178018 --- /dev/null +++ b/my_docs/23/lmod_zoom_mtg_2023_02_14/themes/beamerouterthemeTACC16.sty @@ -0,0 +1,247 @@ +% Copyright 2003 by Till Tantau +% +% This program can be redistributed and/or modified under the terms +% of the GNU Public License, version 2. + +\mode + +\usepackage{xcolor} +\usepackage{graphicx} +\usepackage{etoolbox} + +\pgfdeclareimage[width=\paperwidth]{titlebackground}{master.jpg} +\pgfdeclareimage[width=\paperwidth]{background}{secondary.jpg} + +\setbeamertemplate{background canvas}{% + \ifnum\c@framenumber=1% + \begin{picture}(0,0) + \put(0,-273){% + \pgfuseimage{titlebackground} + } + %\put(0,-130.7){% + + %\begin{minipage}[b][45mm][t]{\textwidth}%{226mm} + %\begin{center} + % \usebeamerfont{title}{\MakeTextUppercase{\inserttitle}\par} + %\vspace{2ex} + %\usebeamerfont{author}{\insertauthor} + % \end{center} + %\end{minipage} + %} + \end{picture} + % On title page + \else% + % Other frames background + \begin{picture}(0,0) + \put(0,-273){% + \pgfuseimage{background} + } + \end{picture} + \fi% +} + + +\setbeamertemplate{title page}{ +\vspace{40pt} +\begin{center} +\usebeamerfont{title} {\huge \inserttitle}\par +\vspace{4ex} +\usebeamerfont{author} { + \insertauthor +}\par +\vspace{2ex} +\usebeamerfont{institute}{ + \insertinstitute +} \par +\vspace{2ex} +\usebeamerfont{date}{ + \insertdate +} +\end{center} +} + + +\setbeamertemplate{frametitle}[default][center] +\setbeamertemplate{frametitle}{ + \makeatletter + \regexpatchcmd{\insertframetitle} + {(\c{usebeamertemplate}.*)\c{fi}} + {\c{NoCaseChange}\cB\{\1\cE\}\c{fi}} + {}{}% + \makeatother + \vskip1ex + \insertframetitle +} + +% Here we define what appears at the bottom of each slide: the "footline". +\setbeamertemplate{footline}{% + \leavevmode% + + % Horizontal line dividing the rest of the slide from the footer? + % hrule goes all the way across... + % \hrule height.3pt% + % With \rule, you can specify the thickness + % \rule[raise-height]{width}{thickness} + % \hspace{.025\textwidth}\rule{.95\textwidth}{.5pt} + + \hbox{% + \ifnum \thepage>1 + % On the left half of the footer, insert the TACC of + \begin{minipage}{.2\textwidth}% + \hskip .05\textwidth%Give horizontal space else this will set on the left edge of the slide! + % \includegraphics[width=.8\textwidth]{figures/TACC_logo.png} + \end{minipage} + + + \begin{minipage}{\textwidth}% + % \vskip .023\textheight% + \raggedleft% + \setlength{\rightskip}{\textwidth} + \hbox{% + \begin{beamercolorbox}[wd=0.7\textwidth,ht=2.25ex,dp=1ex,left]{author in head/foot}% + \insertshorttitle{} \hskip .01\textwidth | \hskip .01\textwidth \insertdate{} \hskip .01\textwidth | \hskip .01\textwidth \insertframenumber{} + \end{beamercolorbox}% + } + + % + % If we are not on the first page, insert a page number + % For some reason, insertframenumber is buggy when you have fragile + % slides with verbatim environments in them... it tends to skip numbers + % for some reason! On the other hand, the pagenumber is incremented + % for *every* slide, including transition slides... + % \hfill\includegraphics[width=\textwidth]{figures/tacc_ut.png} + \end{minipage}% + \begin{minipage}{.05\textwidth}% + \end{minipage}% + \fi %\thepage>1 + }% + \vskip .023\textheight% + +} + + + + +\ifTACCheadernav + +\usesectionheadtemplate +{\hfill\insertsectionhead} +{\hfill\color{fg!50!bg}\insertsectionhead} + +% Head +\ifbeamer@compress + +% Here we define how the top of the frame looks, the "headline". +\setbeamertemplate{headline} +{% + \ifnum \thepage>1 + \leavevmode% + \begin{beamercolorbox}[wd=.5\paperwidth,ht=2.5ex,dp=1.125ex]{% + section in head/foot}% + \insertsectionnavigationhorizontal{.5\paperwidth}{\hskip0pt plus1filll}{}% + \end{beamercolorbox}% + \begin{beamercolorbox}[wd=.5\paperwidth,ht=2.5ex,dp=1.125ex]{% + subsection in head/foot}% + \insertsubsectionnavigationhorizontal{% + .5\paperwidth}{}{\hskip0pt plus1filll}% + \end{beamercolorbox}% + \fi %\thepage>1 +} + +\else% Not compressed + +\setbeamertemplate{headline} +{% + \ifnum \thepage>1 + \leavevmode% + \@tempdimb=2.4375ex% + \ifnum\beamer@subsectionmax<\beamer@sectionmax% + \multiply\@tempdimb by\beamer@sectionmax% + \else% + \multiply\@tempdimb by\beamer@subsectionmax% + \fi% + \ifdim\@tempdimb>0pt% + \advance\@tempdimb by 1.125ex% + \begin{beamercolorbox}[wd=.5\paperwidth,ht=\@tempdimb]{% + section in head/foot}% + \vbox to\@tempdimb{\vfil\insertsectionnavigation{.5\paperwidth}\vfil}% + \end{beamercolorbox}% + \begin{beamercolorbox}[wd=.5\paperwidth,ht=\@tempdimb]{% + subsection in head/foot}% + \vbox to\@tempdimb{\vfil\insertsubsectionnavigation{.5\paperwidth}\vfil}% + \end{beamercolorbox}% + \fi% + \fi % \thepage>1 +} + +\fi % end if compressed +\fi % TACCheadernav + + +\ifTACCheadertree + +\setbeamertemplate{headline} +{ + \begin{beamercolorbox}[wd=\paperwidth,colsep=1.5pt]{upper separation line head} + \end{beamercolorbox} + % + % Place short title + % + \begin{beamercolorbox}[wd=\paperwidth,ht=2.5ex,dp=1.125ex,% + leftskip=.3cm,rightskip=.3cm plus1fil]{title in head/foot} + \usebeamerfont{title in head/foot}\insertshorttitle + \end{beamercolorbox} + + % + % Place section + % + \begin{beamercolorbox}[wd=\paperwidth,ht=2.5ex,dp=1.125ex,% + leftskip=.3cm,rightskip=.3cm plus1fil]{section in head/foot} + \usebeamerfont{section in head/foot}% + %\ifbeamer@tree@showhooks + \setbox\beamer@tempbox=\hbox{\insertsectionhead}% + \ifdim\wd\beamer@tempbox>1pt% + \hskip2pt\raise1.9pt\hbox{\vrule width0.4pt height1.875ex\vrule width 5pt height0.4pt}% + \hskip1pt% + \fi + \insertsectionhead + \end{beamercolorbox} + +% +% Place subsection +% +\begin{beamercolorbox}[wd=\paperwidth,ht=2.5ex,dp=1.125ex,% + leftskip=.3cm,rightskip=.3cm plus1fil]{subsection in head/foot} + \usebeamerfont{subsection in head/foot}% + %\ifbeamer@tree@showhooks + \setbox\beamer@tempbox=\hbox{\insertsubsectionhead}% + \ifdim\wd\beamer@tempbox>1pt% + \hskip9.4pt\raise1.9pt\hbox{\vrule width0.4pt height1.875ex\vrule width 5pt height0.4pt}% + \hskip1pt% + \fi + \insertsubsectionhead +\end{beamercolorbox} + +% +% Place final separation box +% + \begin{beamercolorbox}[wd=\paperwidth,colsep=1.5pt + ]{lower separation line head} + \end{beamercolorbox} + + % + % Another matching rule which helps to frame the content + % + \hspace{.025\textwidth}\rule{.95\textwidth}{.5pt} +} +\fi % TACCheadertree + + +% The following command suppresses all navigation symbols. This is +% necessary in the TACC theme, since it overlaps where we want the +% logo to be. +\setbeamertemplate{navigation symbols}{} + + +\mode + diff --git a/my_docs/23/lmod_zoom_mtg_2023_02_14/themes/beamerthemeTACC16-169.sty b/my_docs/23/lmod_zoom_mtg_2023_02_14/themes/beamerthemeTACC16-169.sty new file mode 100644 index 000000000..22caf9a05 --- /dev/null +++ b/my_docs/23/lmod_zoom_mtg_2023_02_14/themes/beamerthemeTACC16-169.sty @@ -0,0 +1,38 @@ +%% TACC theme for beamer + +\newif\ifTACCheadernav +\DeclareOption{headernav}{\global\TACCheadernavtrue} + +\newif\ifTACCheadertree +\DeclareOption{headertree}{\global\TACCheadertreetrue} +\ProcessOptions + +\mode + +\makeatletter + \def\beamer@calltheme#1#2#3{% + \def\beamer@themelist{#2} + \@for\beamer@themename:=\beamer@themelist\do + {\usepackage[{#1}]{\beamer@themelocation/#3\beamer@themename}}} + + \def\usefolder#1{ + \def\beamer@themelocation{#1} + } + \def\beamer@themelocation{} + +\usefolder{themes} +\usefonttheme{TACC16} +\useinnertheme{TACC16} +\useoutertheme{TACC16-169} +\usecolortheme{TACC16} + +\mode + + +\newcommand{\event}[1]{% + \makeatletter% + \def\TACC@eventname{#1}% + \makeatother} + +\newcommand{\sectionframe}[1]{\section{#1}\frame{\Large\textbf{#1}}} +\newcommand{\subsectionframe}[1]{\subsection{#1}\frame{\large\textbf{#1}}} diff --git a/my_docs/23/lmod_zoom_mtg_2023_02_14/themes/beamerthemeTACC16.sty b/my_docs/23/lmod_zoom_mtg_2023_02_14/themes/beamerthemeTACC16.sty new file mode 100644 index 000000000..750bdd388 --- /dev/null +++ b/my_docs/23/lmod_zoom_mtg_2023_02_14/themes/beamerthemeTACC16.sty @@ -0,0 +1,26 @@ +%% TACC theme for beamer + +\newif\ifTACCheadernav +\DeclareOption{headernav}{\global\TACCheadernavtrue} + +\newif\ifTACCheadertree +\DeclareOption{headertree}{\global\TACCheadertreetrue} +\ProcessOptions + +\mode + +\usefonttheme{TACC16} +\useinnertheme{TACC16} +\useoutertheme{TACC16} +\usecolortheme{TACC16} + +\mode + + +\newcommand{\event}[1]{% + \makeatletter% + \def\TACC@eventname{#1}% + \makeatother} + +\newcommand{\sectionframe}[1]{\section{#1}\frame{\Large\textbf{#1}}} +\newcommand{\subsectionframe}[1]{\subsection{#1}\frame{\large\textbf{#1}}} diff --git a/my_docs/23/lmod_zoom_mtg_2023_02_14/themes/example.pdf b/my_docs/23/lmod_zoom_mtg_2023_02_14/themes/example.pdf new file mode 100644 index 000000000..add373eee Binary files /dev/null and b/my_docs/23/lmod_zoom_mtg_2023_02_14/themes/example.pdf differ diff --git a/my_docs/23/lmod_zoom_mtg_2023_02_14/themes/license.tex b/my_docs/23/lmod_zoom_mtg_2023_02_14/themes/license.tex new file mode 100644 index 000000000..74ff86759 --- /dev/null +++ b/my_docs/23/lmod_zoom_mtg_2023_02_14/themes/license.tex @@ -0,0 +1,14 @@ + +\begin{frame}{License} +\footnotesize +\textcopyright The University of Texas at Austin, \the\year\\ +\vspace{0.5 cm} +This work is licensed under the Creative Commons Attribution Non-Commercial 3.0 Unported License. To view a copy of this license, +visit http://creativecommons.org/licenses/by-nc/3.0/\\ +\vspace{0.5 cm} +When attributing this work, please use the following text: +"Designing and Administering Large-scale Systems", Texas Advanced Computing Center, \the\year. Available under a Creative Commons Attribution Non-Commercial 3.0 Unported License. +\newline +\newline +\includegraphics[width=1cm]{./figures/cc.png} +\end{frame} \ No newline at end of file diff --git a/my_docs/23/lmod_zoom_mtg_2023_03_07/Lmod-4color@2x.png b/my_docs/23/lmod_zoom_mtg_2023_03_07/Lmod-4color@2x.png deleted file mode 120000 index 47d505dbf..000000000 --- a/my_docs/23/lmod_zoom_mtg_2023_03_07/Lmod-4color@2x.png +++ /dev/null @@ -1 +0,0 @@ -../../beamer/Lmod-4color@2x.png \ No newline at end of file diff --git a/my_docs/23/lmod_zoom_mtg_2023_03_07/Lmod-4color@2x.png b/my_docs/23/lmod_zoom_mtg_2023_03_07/Lmod-4color@2x.png new file mode 100644 index 000000000..4810d74c3 Binary files /dev/null and b/my_docs/23/lmod_zoom_mtg_2023_03_07/Lmod-4color@2x.png differ diff --git a/my_docs/23/lmod_zoom_mtg_2023_03_07/beamercolorthemeTACC.sty b/my_docs/23/lmod_zoom_mtg_2023_03_07/beamercolorthemeTACC.sty deleted file mode 120000 index 8d27e673a..000000000 --- a/my_docs/23/lmod_zoom_mtg_2023_03_07/beamercolorthemeTACC.sty +++ /dev/null @@ -1 +0,0 @@ -../../beamer/beamercolorthemeTACC.sty \ No newline at end of file diff --git a/my_docs/23/lmod_zoom_mtg_2023_03_07/beamercolorthemeTACC.sty b/my_docs/23/lmod_zoom_mtg_2023_03_07/beamercolorthemeTACC.sty new file mode 100755 index 000000000..78beb6a4a --- /dev/null +++ b/my_docs/23/lmod_zoom_mtg_2023_03_07/beamercolorthemeTACC.sty @@ -0,0 +1,323 @@ +% Copyright 2003 by Till Tantau . +% +% This program can be redistributed and/or modified under the terms +% of the GNU Public License, version 2. + +\mode + +% I downloaded a gimp color palette from +% http://maururu.net/2007/latex-beamer-color-palette/ +% Which provides rgb values (I think) for several of the +% default beamer themes. You can open this in gimp by +% opening the Palettes dialog, right-clicking anywhere and choosing +% 'Import Palette'. A color in there called 'default added blue' +% appeared to be approximately what I wanted. It had the triple +% of values 141 145 208. If you double-click on this in the +% palette editor it gives you a bunch of information. You can't +% use these values directly to set a color...it just comes out white. +% I think definecolor is expecting something normalized by 255. Yes! + + +% bluish colors +\definecolor{defaddedblue}{rgb}{0.5529,.5686,.8157} % 141,145,208 +\definecolor{defblockheader}{rgb}{.1921,.2235,.6824} % 49,57,174 +\definecolor{flyaddedblue}{rgb}{.5961,.6118,.8431} % 152,156,215 + +% bluish-greys +\definecolor{beetleaddedblue1}{rgb}{.3333,.4039,.6196} % 85 103 158, dark +\definecolor{beetleaddedblue2}{rgb}{.4510,.5098,.7020} % 115 130 179, medium +\definecolor{beetleaddedblue3}{rgb}{.7059,.7255,.7961} % 180 185 203, light (greyest) + +% very light blue-greys +\definecolor{deflightouter1}{rgb}{.7608,.7647,.9020} % 194 195 230, dark +\definecolor{deflightouter2}{rgb}{.8 ,.8039,.9176} % 204 205 234, medium +\definecolor{deflightouter3}{rgb}{.8392,.8431,.9373} % 214 215 239, light + +% reddish colors +\definecolor{flyalertblockheader}{rgb}{.7373,.1294,.1333} % 188 33 34 +\definecolor{flyaddedred}{rgb}{.8667,.5647,.5647}% 221 144 144 +\definecolor{beaverouterframe}{rgb}{.5529,.0980,.0980}% 141 25 25 + +% greens (green is used for 'examples' in beamer) +\definecolor{defexblock}{rgb}{.9098,.9333,.9020} % 232 238 230, light +\definecolor{defaddedgreen}{rgb}{.5412,.6510,.4706} % 138 166 120, medium +\definecolor{defexblockheader}{rgb}{.1686,.3647,.0392} % 43 93 10, dark + +\definecolor{lightexblock}{rgb}{.9137,.9451,.9020} % 233 241 230, light +\definecolor{lightexblockheader}{rgb}{.8235,.8980,.8} % 210 229 204, medium +\definecolor{lightexblockheadertext}{rgb}{.2431,.5098,.0745} % 62 130 19, dark + + +%%% +% Set the normal text color +%%% +\setbeamercolor{normal text}{fg=black,bg=white} + +%%% +% Set the alerted text color +%%% +% \setbeamercolor{alerted text}{fg=red} +\setbeamercolor{alerted text}{fg=red!50!black} % half black/half red for green bg +% \setbeamercolor{alerted text}{fg=beaverouterframe} +% \setbeamercolor{alerted text}{fg=defblockheader} % doesn't stand out enough + + +% Set the 'example' text +\setbeamercolor{example text}{fg=green!50!black} + +\setbeamercolor{structure}{fg=black} + +\setbeamercolor{background canvas}{parent=normal text} +\setbeamercolor{background}{parent=background canvas} + +\setbeamercolor{palette primary}{use=structure,fg=structure.fg} +\setbeamercolor{palette secondary}{use=structure,fg=structure.fg!75!black} +\setbeamercolor{palette tertiary}{use=structure,fg=structure.fg!50!black} +\setbeamercolor{palette quaternary}{fg=black} + +\setbeamercolor{palette sidebar primary}{use=normal text,fg=normal text.fg} +\setbeamercolor{palette sidebar secondary}{use=structure,fg=structure.fg} +\setbeamercolor{palette sidebar tertiary}{use=normal text,fg=normal text.fg} +\setbeamercolor{palette sidebar quaternary}{use=structure,fg=structure.fg} + +\setbeamercolor{math text}{} +\setbeamercolor{math text inlined}{parent=math text} +\setbeamercolor{math text displayed}{parent=math text} + +\setbeamercolor{normal text in math text}{} + +\setbeamercolor{local structure}{parent=structure} + +\setbeamercolor{titlelike}{parent=structure} + +\setbeamercolor{title}{parent=titlelike} +\setbeamercolor{title in head/foot}{parent=palette quaternary} +\setbeamercolor{title in sidebar}{parent=palette sidebar quaternary} + +\setbeamercolor{subtitle}{parent=title} + +\setbeamercolor{author}{} +\setbeamercolor{author in head/foot}{parent=palette primary} +\setbeamercolor{author in sidebar}{use=palette sidebar tertiary,fg=palette sidebar tertiary.fg} + +\setbeamercolor{institute}{} +\setbeamercolor{institute in head/foot}{parent=palette tertiary} +\setbeamercolor{institute in sidebar}{use=palette sidebar tertiary,fg=palette sidebar tertiary.fg} + +\setbeamercolor{date}{} +\setbeamercolor{date in head/foot}{parent=palette secondary} +\setbeamercolor{date in sidebar}{use=palette sidebar tertiary,fg=palette sidebar tertiary.fg} + +\setbeamercolor{titlegraphic}{} + +\setbeamercolor{part name}{} +\setbeamercolor{part title}{parent=titlelike} + +\setbeamercolor{section in toc}{parent=structure} +\setbeamercolor{section in toc shaded}{parent=section in toc} +\setbeamercolor{section in head/foot}{parent=palette tertiary} +\setbeamercolor{section in sidebar}{parent=palette sidebar secondary} +\setbeamercolor{section in sidebar shaded}{use=section in sidebar,fg=section in sidebar.fg!40!bg} +\setbeamercolor{section number projected}{parent=item projected} + +\setbeamercolor{subsection in toc}{} +\setbeamercolor{subsection in toc shaded}{parent=subsection in toc} +\setbeamercolor{subsection in head/foot}{parent=palette secondary} +\setbeamercolor{subsection in sidebar}{parent=palette sidebar primary} +\setbeamercolor{subsection in sidebar shaded}{use=subsection in sidebar,fg=subsection in sidebar.fg!40!bg} +\setbeamercolor{subsection number projected}{parent={subitem projected}} + +\setbeamercolor{subsubsection in toc}{parent=subsection in toc} +\setbeamercolor{subsubsection in toc shaded}{parent=subsubsection in toc} +\setbeamercolor{subsubsection in head/foot}{parent=subsection in head/foot} +\setbeamercolor{subsubsection in sidebar}{parent=subsection in sidebar} +\setbeamercolor{subsubsection in sidebar shaded}{parent=subsection in sidebar shaded} +\setbeamercolor{subsubsection number projected}{parent=subsubitem projected} + +\setbeamercolor{headline}{} +\setbeamercolor{footline}{} + +\setbeamercolor{sidebar}{} +\setbeamercolor{sidebar left}{parent=sidebar} +\setbeamercolor{sidebar right}{parent=sidebar} + +\setbeamercolor{logo}{parent=palette secondary} + +\setbeamercolor{frametitle}{parent=titlelike} +\setbeamercolor{framesubtitle}{parent=frametitle} + +\setbeamercolor{frametitle right}{parent=frametitle} + +\setbeamercolor{caption}{} +\setbeamercolor{caption name}{parent=structure} + +\setbeamercolor{button}{use=local structure,bg=local structure.fg!50!bg,fg=white} +\setbeamercolor{button border}{use=button,fg=button.bg} +\setbeamercolor{navigation symbols}{use=structure,fg=structure.fg!40!bg} +\setbeamercolor{navigation symbols dimmed}{use=structure,fg=structure.fg!20!bg} +\setbeamercolor{mini frame}{parent=section in head/foot} + +% Color expressions are defined in the xcolor package +% +% Ex: Mixture of 40% green, 60% yellow: green!40!yellow +% +% The complement of any color can be obtained by prepending +% a minus sign: -green!40!yellow +% +% One can also combine up to three colors (in differing proportions) +% using the rgb command. For example, the following command combines +% 3 parts of the first color, with 2 parts of the second, and one part +% "red" +% +%\color{rgb:-green!40!yellow,3;green!40!yellow,2;red,1} +% Unfortunately, I don't think this works as an argument to setbeamercolor... +% "Orange" bg=green!30!yellow!30!red +% close to burnt orange: red!75!green +% lightgray is a color, but gray!25!white looks better +% +% A nice pair of greens +% (dark, a little too dark to be under black text...) -red!75!green!50!blue!25 +% (light) -red!75!green!50!blue!25!gray +% +% Some colors are only available via options to the xcolor package, eg. +% x11names,DarkOliveGreen4 +% svgnames, Chartreuse +% dvipsnames, ForestGreen +% +% but beamer does not seem to have any of these. +% +% The base color names which are always available are: +% black +% blue +% brown +% cyan +% darkgray +% gray +% green +% lightgray +% lime +% magenta +% olive +% orange +% pink +% purple +% red +% teal +% violet +% white +% yellow + +% From the beamer user guide, pg. 167 +% Inner color themes only specify the colors of elements used in inner +% themes. Most noticably, they specify the colors used for blocks. +% ... + +% Example color definition +% beamercolorthemedefault.sty:\definecolor{beamer@blendedblue}{rgb}{0.2,0.2,0.7} +% beamercolorthemedefault.sty:\setbeamercolor{structure}{fg=beamer@blendedblue} + +% The greens +% \setbeamercolor{block body}{bg=-red!75!green!50!blue!25!gray} +% \setbeamercolor{block title}{parent=structure,bg=-red!75!green!50!blue!25,fg=-red!75!green!50!blue!25!gray} + +%%% +% Set the block body and title background/foreground colors +%%% +% \setbeamercolor{block body}{bg=flyaddedblue} +% \setbeamercolor{block title}{bg=defblockheader,fg=flyaddedblue} + +% Purplish blues, too dark overall +% \setbeamercolor{block body}{bg=beetleaddedblue3} +% \setbeamercolor{block title}{bg=beetleaddedblue2,fg=beetleaddedblue3} + +% Very light blue greys +% 1. Not enough contrast +% \setbeamercolor{block body}{bg=deflightouter3} +% \setbeamercolor{block title}{bg=deflightouter2,fg=deflightouter3} + +% 2. Not enough contrast +% \setbeamercolor{block body}{bg=deflightouter3} +% \setbeamercolor{block title}{bg=deflightouter1,fg=deflightouter3} + +% 3. Combination of deflightouter and fly. The block bg is +% lighter than the all-beetle color scheme I previously thought was best. +% Currently I like this one the best +\setbeamercolor{block body}{bg=deflightouter3} +\setbeamercolor{block title}{bg=beetleaddedblue2,fg=deflightouter3} + +% 4. Greens. Looks like a highlighter. I don't really trust greens +% on projectors... It's almost too bright/hurts your eyes. +% \setbeamercolor{block body}{bg=defexblock} +% \setbeamercolor{block title}{bg=defaddedgreen,fg=defexblock} + +% This looks pretty good ... it's similar to the greens we had before +% but should be lighter. The blocks are just a little too "mint" colored +% though... +% \setbeamercolor{block body}{bg=defexblock} +% \setbeamercolor{block title}{bg=defexblockheader,fg=defexblock} + +% Pea Soup! +%\setbeamercolor{block body}{bg=defaddedgreen} +%\setbeamercolor{block title}{bg=defexblockheader,fg=defaddedgreen} + + +% Changing these didn't seem to do anything...I had to change the +% 'alerted text' color instead +\setbeamercolor{block body alerted}{} +\setbeamercolor{block body example}{} +\setbeamercolor{block title alerted}{parent=alerted text} +\setbeamercolor{block title example}{parent=example text} + +\setbeamercolor{item}{parent=local structure} +\setbeamercolor{subitem}{parent=item} +\setbeamercolor{subsubitem}{parent=subitem} + +\setbeamercolor{item projected}{parent=item,use=item,fg=white,bg=item.fg} +\setbeamercolor{subitem projected}{parent=item projected} +\setbeamercolor{subsubitem projected}{parent=subitem projected} + +\setbeamercolor{enumerate item}{parent=item} +\setbeamercolor{enumerate subitem}{parent=subitem} +\setbeamercolor{enumerate subsubitem}{parent=subsubitem} + +\setbeamercolor{itemize item}{parent=item} +\setbeamercolor{itemize subitem}{parent=subitem} +\setbeamercolor{itemize subsubitem}{parent=subsubitem} + +\setbeamercolor{itemize/enumerate body}{} +\setbeamercolor{itemize/enumerate subbody}{} +\setbeamercolor{itemize/enumerate subsubbody}{} + +\setbeamercolor{description item}{parent=item} + +\setbeamercolor{bibliography item}{parent=item} + +\setbeamercolor{bibliography entry author}{use=structure,fg=structure.fg} +\setbeamercolor{bibliography entry title}{use=normal text,fg=normal text.fg} +\setbeamercolor{bibliography entry location}{use=structure,fg=structure.fg!65!bg} +\setbeamercolor{bibliography entry note}{use=structure,fg=structure.fg!65!bg} + +\setbeamercolor{separation line}{} + +\setbeamercolor{upper separation line head}{parent=separation line} +\setbeamercolor{middle separation line head}{parent=separation line} +\setbeamercolor{lower separation line head}{parent=separation line} + +\setbeamercolor{upper separation line foot}{parent=separation line} +\setbeamercolor{middle separation line foot}{parent=separation line} +\setbeamercolor{lower separation line foot}{parent=separation line} + +\setbeamercolor{abstract}{} +\setbeamercolor{abstract title}{parent=structure} + +\setbeamercolor{verse}{} + +\setbeamercolor{quotation}{} +\setbeamercolor{quote}{parent=quotation} + +\setbeamercolor{page number in head/foot}{fg=fg!50!bg} + +\setbeamercolor{qed symbol}{parent=structure} + +\mode + diff --git a/my_docs/23/lmod_zoom_mtg_2023_03_07/beamercolorthemeTACC16.sty b/my_docs/23/lmod_zoom_mtg_2023_03_07/beamercolorthemeTACC16.sty deleted file mode 120000 index 58415801b..000000000 --- a/my_docs/23/lmod_zoom_mtg_2023_03_07/beamercolorthemeTACC16.sty +++ /dev/null @@ -1 +0,0 @@ -../../beamer/beamercolorthemeTACC16.sty \ No newline at end of file diff --git a/my_docs/23/lmod_zoom_mtg_2023_03_07/beamercolorthemeTACC16.sty b/my_docs/23/lmod_zoom_mtg_2023_03_07/beamercolorthemeTACC16.sty new file mode 100755 index 000000000..779dde91f --- /dev/null +++ b/my_docs/23/lmod_zoom_mtg_2023_03_07/beamercolorthemeTACC16.sty @@ -0,0 +1,192 @@ +% Copyright 2003 by Till Tantau . +% +% This program can be redistributed and/or modified under the terms +% of the GNU Public License, version 2. + +\mode + +\usepackage{textcase,regexpatch} + +\setbeamertemplate{blocks}[rounded][shadow=true] + + +\definecolor{TACCred}{RGB}{180,13,29} +\definecolor{TACCorange}{RGB}{210,104,43} +\definecolor{TACCblue}{RGB}{108, 134, 191} +\definecolor{TACCgreen}{RGB}{23,106,70} + +% I downloaded a gimp color palette from +% http://maururu.net/2007/latex-beamer-color-palette/ +% Which provides rgb values (I think) for several of the +% default beamer themes. You can open this in gimp by +% opening the Palettes dialog, right-clicking anywhere and choosing +% 'Import Palette'. A color in there called 'default added blue' +% appeared to be approximately what I wanted. It had the triple +% of values 141 145 208. If you double-click on this in the +% palette editor it gives you a bunch of information. You can't +% use these values directly to set a color...it just comes out white. +% I think definecolor is expecting something normalized by 255. Yes! + + +%%% +% Set the normal text color +%%% +\setbeamercolor{normal text}{fg=black} %,bg=white} +\setbeamercolor{example text}{fg=TACCgreen} +\setbeamercolor{alerted text}{fg=TACCorange} + + +\setbeamercolor{structure}{fg=black} +%\setbeamercolor{structure}{fg=black} + +\setbeamercolor{background canvas}{parent=normal text} +\setbeamercolor{background}{parent=background canvas} + +\setbeamercolor{palette primary}{use=structure,fg=structure.fg} +\setbeamercolor{palette secondary}{use=structure,fg=structure.fg!75!black} +\setbeamercolor{palette tertiary}{use=structure,fg=structure.fg!50!black} +\setbeamercolor{palette quaternary}{fg=black} + +\setbeamercolor{palette sidebar primary}{use=normal text,fg=normal text.fg} +\setbeamercolor{palette sidebar secondary}{use=structure,fg=structure.fg} +\setbeamercolor{palette sidebar tertiary}{use=normal text,fg=normal text.fg} +\setbeamercolor{palette sidebar quaternary}{use=structure,fg=structure.fg} + +\setbeamercolor{math text}{} +\setbeamercolor{math text inlined}{parent=math text} +\setbeamercolor{math text displayed}{parent=math text} + +\setbeamercolor{normal text in math text}{} + +\setbeamercolor{local structure}{parent=structure} + +\setbeamercolor{titlelike}{parent=structure} + +\setbeamercolor{title}{parent=titlelike} +\setbeamercolor{title in head/foot}{parent=palette quaternary} +\setbeamercolor{title in sidebar}{parent=palette sidebar quaternary} + +\setbeamercolor{subtitle}{parent=title} + +\setbeamercolor{author}{} +\setbeamercolor{author in head/foot}{parent=palette primary} +\setbeamercolor{author in sidebar}{use=palette sidebar tertiary,fg=palette sidebar tertiary.fg} + +\setbeamercolor{institute}{} +\setbeamercolor{institute in head/foot}{parent=palette tertiary} +\setbeamercolor{institute in sidebar}{use=palette sidebar tertiary,fg=palette sidebar tertiary.fg} + +\setbeamercolor{date}{} +\setbeamercolor{date in head/foot}{parent=palette secondary} +\setbeamercolor{date in sidebar}{use=palette sidebar tertiary,fg=palette sidebar tertiary.fg} + +\setbeamercolor{titlegraphic}{} + +\setbeamercolor{part name}{} +\setbeamercolor{part title}{parent=titlelike} + +\setbeamercolor{section in toc}{parent=structure} +\setbeamercolor{section in toc shaded}{parent=section in toc} +\setbeamercolor{section in head/foot}{parent=palette tertiary} +\setbeamercolor{section in sidebar}{parent=palette sidebar secondary} +\setbeamercolor{section in sidebar shaded}{use=section in sidebar,fg=section in sidebar.fg!40!bg} +\setbeamercolor{section number projected}{parent=item projected} + +\setbeamercolor{subsection in toc}{} +\setbeamercolor{subsection in toc shaded}{parent=subsection in toc} +\setbeamercolor{subsection in head/foot}{parent=palette secondary} +\setbeamercolor{subsection in sidebar}{parent=palette sidebar primary} +\setbeamercolor{subsection in sidebar shaded}{use=subsection in sidebar,fg=subsection in sidebar.fg!40!bg} +\setbeamercolor{subsection number projected}{parent={subitem projected}} + +\setbeamercolor{subsubsection in toc}{parent=subsection in toc} +\setbeamercolor{subsubsection in toc shaded}{parent=subsubsection in toc} +\setbeamercolor{subsubsection in head/foot}{parent=subsection in head/foot} +\setbeamercolor{subsubsection in sidebar}{parent=subsection in sidebar} +\setbeamercolor{subsubsection in sidebar shaded}{parent=subsection in sidebar shaded} +\setbeamercolor{subsubsection number projected}{parent=subsubitem projected} + +\setbeamercolor{headline}{} +\setbeamercolor{footline}{} + +\setbeamercolor{sidebar}{} +\setbeamercolor{sidebar left}{parent=sidebar} +\setbeamercolor{sidebar right}{parent=sidebar} + +\setbeamercolor{logo}{parent=palette secondary} + +\setbeamercolor{frametitle}{parent=titlelike} +\setbeamercolor{framesubtitle}{parent=frametitle} + +\setbeamercolor{frametitle right}{parent=frametitle} + +\setbeamercolor{caption}{} +\setbeamercolor{caption name}{parent=structure} + +\setbeamercolor{button}{use=local structure,bg=local structure.fg!50!bg,fg=white} +\setbeamercolor{button border}{use=button,fg=button.bg} +\setbeamercolor{navigation symbols}{use=structure,fg=structure.fg!40!bg} +\setbeamercolor{navigation symbols dimmed}{use=structure,fg=structure.fg!20!bg} +\setbeamercolor{mini frame}{parent=section in head/foot} + +\setbeamercolor{block body}{fg=black} +\setbeamercolor{block body alerted}{fg=black} +\setbeamercolor{block body example}{fg=black} + +\setbeamercolor{block title}{bg=TACCblue,fg=white} +\setbeamercolor{block title alerted}{bg=TACCred,fg=white} +\setbeamercolor{block title example}{bg=TACCgreen,fg=white} + +\setbeamercolor{item}{parent=local structure} +\setbeamercolor{subitem}{parent=item} +\setbeamercolor{subsubitem}{parent=subitem} + +\setbeamercolor{item projected}{parent=item,use=item,fg=black,bg=item.fg} +\setbeamercolor{subitem projected}{parent=item projected} +\setbeamercolor{subsubitem projected}{parent=subitem projected} + +\setbeamercolor{enumerate item}{parent=item} +\setbeamercolor{enumerate subitem}{parent=subitem} +\setbeamercolor{enumerate subsubitem}{parent=subsubitem} + +\setbeamercolor{itemize item}{parent=item} +\setbeamercolor{itemize subitem}{parent=subitem} +\setbeamercolor{itemize subsubitem}{parent=subsubitem} + +\setbeamercolor{itemize/enumerate body}{} +\setbeamercolor{itemize/enumerate subbody}{} +\setbeamercolor{itemize/enumerate subsubbody}{} + +\setbeamercolor{description item}{parent=item} + +\setbeamercolor{bibliography item}{parent=item} + +\setbeamercolor{bibliography entry author}{use=structure,fg=structure.fg} +\setbeamercolor{bibliography entry title}{use=normal text,fg=normal text.fg} +\setbeamercolor{bibliography entry location}{use=structure,fg=structure.fg!65!bg} +\setbeamercolor{bibliography entry note}{use=structure,fg=structure.fg!65!bg} + +\setbeamercolor{separation line}{} + +\setbeamercolor{upper separation line head}{parent=separation line} +\setbeamercolor{middle separation line head}{parent=separation line} +\setbeamercolor{lower separation line head}{parent=separation line} + +\setbeamercolor{upper separation line foot}{parent=separation line} +\setbeamercolor{middle separation line foot}{parent=separation line} +\setbeamercolor{lower separation line foot}{parent=separation line} + +\setbeamercolor{abstract}{} +\setbeamercolor{abstract title}{parent=structure} + +\setbeamercolor{verse}{} + +\setbeamercolor{quotation}{} +\setbeamercolor{quote}{parent=quotation} + +\setbeamercolor{page number in head/foot}{fg=fg!50!bg} + +\setbeamercolor{qed symbol}{parent=structure} + +\mode + diff --git a/my_docs/23/lmod_zoom_mtg_2023_03_07/beamerfontthemeTACC.sty b/my_docs/23/lmod_zoom_mtg_2023_03_07/beamerfontthemeTACC.sty deleted file mode 120000 index 78e971fb8..000000000 --- a/my_docs/23/lmod_zoom_mtg_2023_03_07/beamerfontthemeTACC.sty +++ /dev/null @@ -1 +0,0 @@ -../../beamer/beamerfontthemeTACC.sty \ No newline at end of file diff --git a/my_docs/23/lmod_zoom_mtg_2023_03_07/beamerfontthemeTACC.sty b/my_docs/23/lmod_zoom_mtg_2023_03_07/beamerfontthemeTACC.sty new file mode 100755 index 000000000..ef9ce1e5e --- /dev/null +++ b/my_docs/23/lmod_zoom_mtg_2023_03_07/beamerfontthemeTACC.sty @@ -0,0 +1,12 @@ +% Copyright 2003 by Till Tantau +% +% This program can be redistributed and/or modified under the terms +% of the GNU Public License, version 2. + +\mode + +\setbeamerfont{frametitle}{parent=structure,size=\LARGE,series=\bfseries} +\setbeamerfont{framesubtitle}{parent=frametitle,size=\small} + +\mode + \ No newline at end of file diff --git a/my_docs/23/lmod_zoom_mtg_2023_03_07/beamerfontthemeTACC16.sty b/my_docs/23/lmod_zoom_mtg_2023_03_07/beamerfontthemeTACC16.sty deleted file mode 120000 index a1f2fa5f9..000000000 --- a/my_docs/23/lmod_zoom_mtg_2023_03_07/beamerfontthemeTACC16.sty +++ /dev/null @@ -1 +0,0 @@ -../../beamer/beamerfontthemeTACC16.sty \ No newline at end of file diff --git a/my_docs/23/lmod_zoom_mtg_2023_03_07/beamerfontthemeTACC16.sty b/my_docs/23/lmod_zoom_mtg_2023_03_07/beamerfontthemeTACC16.sty new file mode 100755 index 000000000..b65271835 --- /dev/null +++ b/my_docs/23/lmod_zoom_mtg_2023_03_07/beamerfontthemeTACC16.sty @@ -0,0 +1,21 @@ +% Copyright 2003 by Till Tantau +% +% This program can be redistributed and/or modified under the terms +% of the GNU Public License, version 2. + +\mode +\setbeamerfont{title}{parent=structure,size=\LARGE,series=\bfseries} +\setbeamerfont{author}{parent=structure,size=\large, series=\normalfont} +\setbeamerfont{frametitle}{parent=structure,size=\LARGE,series=\bfseries} +\setbeamerfont{framesubtitle}{parent=frametitle,size=\small} + +%\usefonttheme{professionalfonts} % using non standard fonts for beamer +%\usefonttheme{serif} % default family is serif +%\usepackage{fontspec} +%\setmainfont{Century Gothic} + +\usepackage{fontspec} +\usepackage{libertine} + +\mode + diff --git a/my_docs/23/lmod_zoom_mtg_2023_03_07/beamerinnerthemeTACC.sty b/my_docs/23/lmod_zoom_mtg_2023_03_07/beamerinnerthemeTACC.sty deleted file mode 120000 index 8d5ae3921..000000000 --- a/my_docs/23/lmod_zoom_mtg_2023_03_07/beamerinnerthemeTACC.sty +++ /dev/null @@ -1 +0,0 @@ -../../beamer/beamerinnerthemeTACC.sty \ No newline at end of file diff --git a/my_docs/23/lmod_zoom_mtg_2023_03_07/beamerinnerthemeTACC.sty b/my_docs/23/lmod_zoom_mtg_2023_03_07/beamerinnerthemeTACC.sty new file mode 100755 index 000000000..29e2bce81 --- /dev/null +++ b/my_docs/23/lmod_zoom_mtg_2023_03_07/beamerinnerthemeTACC.sty @@ -0,0 +1,11 @@ +\mode + +\setbeamertemplate{itemize item}[circle] +\setbeamertemplate{itemize subitem}{{}--{}} +\setbeamertemplate{itemize subsubitem}[circle] +\setbeamertemplate{section in toc}{$\bullet$\hskip.5em\inserttocsection} +%\setbeamertemplate{subsection in toc}{} +\setbeamertemplate{subsubsection in toc}{} + +\mode + diff --git a/my_docs/23/lmod_zoom_mtg_2023_03_07/beamerinnerthemeTACC16.sty b/my_docs/23/lmod_zoom_mtg_2023_03_07/beamerinnerthemeTACC16.sty deleted file mode 120000 index 5955acc99..000000000 --- a/my_docs/23/lmod_zoom_mtg_2023_03_07/beamerinnerthemeTACC16.sty +++ /dev/null @@ -1 +0,0 @@ -../../beamer/beamerinnerthemeTACC16.sty \ No newline at end of file diff --git a/my_docs/23/lmod_zoom_mtg_2023_03_07/beamerinnerthemeTACC16.sty b/my_docs/23/lmod_zoom_mtg_2023_03_07/beamerinnerthemeTACC16.sty new file mode 100755 index 000000000..f7f454e1d --- /dev/null +++ b/my_docs/23/lmod_zoom_mtg_2023_03_07/beamerinnerthemeTACC16.sty @@ -0,0 +1,11 @@ +\mode + +\setbeamertemplate{itemize item}[triangle] +\setbeamertemplate{itemize subitem}[triangle] +\setbeamertemplate{itemize subsubitem}[triangle] +\setbeamertemplate{section in toc}{$\bullet$\hskip.5em\inserttocsection} +%\setbeamertemplate{subsection in toc}{} +\setbeamertemplate{subsubsection in toc}{} + +\mode + diff --git a/my_docs/23/lmod_zoom_mtg_2023_03_07/beamerouterthemeTACC.sty b/my_docs/23/lmod_zoom_mtg_2023_03_07/beamerouterthemeTACC.sty deleted file mode 120000 index da0a45d33..000000000 --- a/my_docs/23/lmod_zoom_mtg_2023_03_07/beamerouterthemeTACC.sty +++ /dev/null @@ -1 +0,0 @@ -../../beamer/beamerouterthemeTACC.sty \ No newline at end of file diff --git a/my_docs/23/lmod_zoom_mtg_2023_03_07/beamerouterthemeTACC.sty b/my_docs/23/lmod_zoom_mtg_2023_03_07/beamerouterthemeTACC.sty new file mode 100755 index 000000000..038580303 --- /dev/null +++ b/my_docs/23/lmod_zoom_mtg_2023_03_07/beamerouterthemeTACC.sty @@ -0,0 +1,196 @@ +% Copyright 2003 by Till Tantau +% +% This program can be redistributed and/or modified under the terms +% of the GNU Public License, version 2. + +\mode + +\setbeamertemplate{frametitle}[default][center] +\addtobeamertemplate{frametitle}{\vskip 4ex minus 4ex}{} + +% Here we define what appears at the bottom of each slide: the "footline". +\setbeamertemplate{footline}{% + \leavevmode% + + % Horizontal line dividing the rest of the slide from the footer? + % hrule goes all the way across... + % \hrule height.3pt% + % With \rule, you can specify the thickness + % \rule[raise-height]{width}{thickness} + \hspace{.025\textwidth}\rule{.95\textwidth}{.5pt} + + \hbox{% + % On the left half of the footer, insert the TACC logo + \begin{minipage}{.5\textwidth}% + \hskip .033\textwidth%Give horizontal space else this will set on the left edge of the slide! + % TACC logo with custom viewport! + \includegraphics[viewport=1 -1 135 35, clip=true, width=.4\textwidth]{figures/TACC_logo} + \end{minipage} + % + \begin{minipage}{.5\textwidth}% + \vskip .023\textheight% + \raggedleft% + \setlength{\rightskip}{.033\textwidth} + % + % If we are not on the first page, insert a page number + % For some reason, insertframenumber is buggy when you have fragile + % slides with verbatim environments in them... it tends to skip numbers + % for some reason! On the other hand, the pagenumber is incremented + % for *every* slide, including transition slides... + \ifnum \thepage>1 + % \insertshorttitle + \insertframenumber + % \insertframenumber/\inserttotalframenumber + % \insertpagenumber + \else % Do a phantom of whatever you do on other pages, so spacing matches + %$\phantom{\insertshorttitle}$ + $\phantom{\insertframenumber}$ + %$\phantom{\insertframenumber/\inserttotalframenumber}$ + %$\phantom{\insertpagenumber}$ + \fi + \hfill\includegraphics[width=.5\textwidth]{figures/UT_logo}% + \end{minipage}% + }% + \vskip .023\textheight% +} + + + + +\ifTACCheadernav + +\usesectionheadtemplate +{\hfill\insertsectionhead} +{\hfill\color{fg!50!bg}\insertsectionhead} + +% Head +\ifbeamer@compress + +% Here we define how the top of the frame looks, the "headline". +\setbeamertemplate{headline} +{% + \ifnum \thepage>1 + \leavevmode% + \begin{beamercolorbox}[wd=.5\paperwidth,ht=2.5ex,dp=1.125ex]{% + section in head/foot}% + \insertsectionnavigationhorizontal{.5\paperwidth}{\hskip0pt plus1filll}{}% + \end{beamercolorbox}% + \begin{beamercolorbox}[wd=.5\paperwidth,ht=2.5ex,dp=1.125ex]{% + subsection in head/foot}% + \insertsubsectionnavigationhorizontal{% + .5\paperwidth}{}{\hskip0pt plus1filll}% + \end{beamercolorbox}% + \fi %\thepage>1 +} + +\else% Not compressed + +\setbeamertemplate{headline} +{% + \ifnum \thepage>1 + \leavevmode% + \@tempdimb=2.4375ex% + \ifnum\beamer@subsectionmax<\beamer@sectionmax% + \multiply\@tempdimb by\beamer@sectionmax% + \else% + \multiply\@tempdimb by\beamer@subsectionmax% + \fi% + \ifdim\@tempdimb>0pt% + \advance\@tempdimb by 1.125ex% + \begin{beamercolorbox}[wd=.5\paperwidth,ht=\@tempdimb]{% + section in head/foot}% + \vbox to\@tempdimb{\vfil\insertsectionnavigation{.5\paperwidth}\vfil}% + \end{beamercolorbox}% + \begin{beamercolorbox}[wd=.5\paperwidth,ht=\@tempdimb]{% + subsection in head/foot}% + \vbox to\@tempdimb{\vfil\insertsubsectionnavigation{.5\paperwidth}\vfil}% + \end{beamercolorbox}% + \fi% + \fi % \thepage>1 +} + +\fi % end if compressed +\fi % TACCheadernav + + +\ifTACCheadertree + +\setbeamertemplate{headline} +{ + \begin{beamercolorbox}[wd=\paperwidth,colsep=1.5pt + ]{upper separation line head} + \end{beamercolorbox} + % + % Place short title + % + \begin{beamercolorbox}[wd=\paperwidth,ht=2.5ex,dp=1.125ex,% + leftskip=.3cm,rightskip=.3cm plus1fil]{title in head/foot} + \usebeamerfont{title in head/foot}\insertshorttitle + \end{beamercolorbox} + + % + % Place section + % + \begin{beamercolorbox}[wd=\paperwidth,ht=2.5ex,dp=1.125ex,% + leftskip=.3cm,rightskip=.3cm plus1fil]{section in head/foot} + \usebeamerfont{section in head/foot}% + %\ifbeamer@tree@showhooks + \setbox\beamer@tempbox=\hbox{\insertsectionhead}% + \ifdim\wd\beamer@tempbox>1pt% + \hskip2pt\raise1.9pt\hbox{\vrule width0.4pt height1.875ex\vrule width 5pt height0.4pt}% + \hskip1pt% + \fi% \ifdim + %\else% + %\hskip6pt% + %\fi% \ifbeamer + \insertsectionhead + \end{beamercolorbox} + +% +% Place subsection +% +\begin{beamercolorbox}[wd=\paperwidth,ht=2.5ex,dp=1.125ex,% + leftskip=.3cm,rightskip=.3cm plus1fil]{subsection in head/foot} + \usebeamerfont{subsection in head/foot}% + %\ifbeamer@tree@showhooks + \setbox\beamer@tempbox=\hbox{\insertsubsectionhead}% + \ifdim\wd\beamer@tempbox>1pt% + \hskip9.4pt\raise1.9pt\hbox{\vrule width0.4pt height1.875ex\vrule width 5pt height0.4pt}% + \hskip1pt% + \fi% \ifdim + %\else% + %\hskip12pt% + %\fi% \ifbeamer + \insertsubsectionhead +\end{beamercolorbox} + +% +% Place final separation box +% + \begin{beamercolorbox}[wd=\paperwidth,colsep=1.5pt + ]{lower separation line head} + \end{beamercolorbox} + + % + % Another matching rule which helps to frame the content + % + \hspace{.025\textwidth}\rule{.95\textwidth}{.5pt} +} +\fi % TACCheadertree + + +% The following command suppresses all navigation symbols. This is +% necessary in the TACC theme, since it overlaps where we want the +% logo to be. +\setbeamertemplate{navigation symbols}{} + +% Align the navigation symbols vertically (still overlaps our logo!) +%\setbeamertemplate{navigation symbols}[vertical]{} + +% Only places the slide-forward and slide-back symbol, but yes, +% this still overlaps our logo! +%\setbeamertemplate{navigation symbols}[only frame symbol]{} + + +\mode + diff --git a/my_docs/23/lmod_zoom_mtg_2023_03_07/beamerouterthemeTACC16.sty b/my_docs/23/lmod_zoom_mtg_2023_03_07/beamerouterthemeTACC16.sty deleted file mode 120000 index 54bd09537..000000000 --- a/my_docs/23/lmod_zoom_mtg_2023_03_07/beamerouterthemeTACC16.sty +++ /dev/null @@ -1 +0,0 @@ -../../beamer/beamerouterthemeTACC16.sty \ No newline at end of file diff --git a/my_docs/23/lmod_zoom_mtg_2023_03_07/beamerouterthemeTACC16.sty b/my_docs/23/lmod_zoom_mtg_2023_03_07/beamerouterthemeTACC16.sty new file mode 100755 index 000000000..d5e6388c7 --- /dev/null +++ b/my_docs/23/lmod_zoom_mtg_2023_03_07/beamerouterthemeTACC16.sty @@ -0,0 +1,312 @@ +% Antonio Gomez (agomez@tacc.utexas.edu) +% 4-20-17. Added option to put the footer on the right side + + + +\mode + +\usepackage{xcolor} +\usepackage{graphicx} +\usepackage{etoolbox} + + + +% This theme accepts the "rightfooter" option +% When used, it will put the TACC logo at the bottom of the slide on the right side +% By default, it goes to the left + +\xifaspectratio{ + {169} { + \pgfdeclareimage[width=\paperwidth]{titlebackground}{./figures/master169.jpg} + \if@rightfooterOption + \pgfdeclareimage[width=\paperwidth]{background}{./figures/secondary_right169.jpg} +\else + \pgfdeclareimage[width=\paperwidth]{background}{./figures/secondary169.jpg} +\fi +} +}[ +\pgfdeclareimage[width=\paperwidth]{titlebackground}{./figures/master.jpg} + \if@rightfooterOption + \pgfdeclareimage[width=\paperwidth]{background}{./figures/secondary_right.jpg} +\else + \pgfdeclareimage[width=\paperwidth]{background}{./figures/secondary.jpg} +\fi +] + +\setbeamertemplate{background canvas}{% +\xifaspectratio{ + {169} { + \ifnum\c@framenumber=1 % + \begin{picture}(0,0) + \put(-3,-256){% + \pgfuseimage{titlebackground} + } + \end{picture} + \else% + \begin{picture}(0,0) + \put(-3,-260){% + \pgfuseimage{background} + } + \end{picture} + \fi + } + {43} { + \ifnum\c@framenumber=1 % + \begin{picture}(0,0) + \put(-4,-274){% + \pgfuseimage{titlebackground} + } + \end{picture} + \else% + \begin{picture}(0,0) + \put(-4,-274){% + \pgfuseimage{background} + } + \end{picture} + \fi + } +} +} + + + +%\setbeamertemplate{background canvas}{% +% % On title page +% \ifnum\c@framenumber=1 % +% \begin{picture}(0,0) +% \put(0,-253){% +% \pgfuseimage{titlebackground} +% } +% \end{picture} +% +% \else% +% \xifaspectratio{ +% {169} { +% % Other frames background +% \begin{picture}(0,0) +% \put(-4,-260){% +% \pgfuseimage{background} +% } +% \end{picture} +% } +% }[ +% % Other frames background +% \begin{picture}(0,0) +% \put(-4,-274){% +% \pgfuseimage{background} +% } +% \end{picture} +% ] +% \fi% +%} + + +\setbeamertemplate{title page}{ +\vspace{40pt} +\begin{center} +\usebeamerfont{title} {\huge \inserttitle}\par +\vspace{4ex} +\usebeamerfont{author} { + \insertauthor +}\par +\vspace{2ex} +\usebeamerfont{institute}{ + \insertinstitute +} \par +\vspace{2ex} +\usebeamerfont{date}{ + \insertdate +} +\end{center} +} + + +\setbeamertemplate{frametitle}[default][center] +\setbeamertemplate{frametitle}{ + \makeatletter + \regexpatchcmd{\insertframetitle} + {(\c{usebeamertemplate}.*)\c{fi}} + {\c{NoCaseChange}\cB\{\1\cE\}\c{fi}} + {}{}% + \makeatother + \vskip1ex + \insertframetitle +} + +% Here we define what appears at the bottom of each slide: the "footline". +\setbeamertemplate{footline}{% + \leavevmode% + + % Horizontal line dividing the rest of the slide from the footer? + % hrule goes all the way across... + % \hrule height.3pt% + % With \rule, you can specify the thickness + % \rule[raise-height]{width}{thickness} + % \hspace{.025\textwidth}\rule{.95\textwidth}{.5pt} + + \hbox{% + \ifnum \thepage>1 + \if@rightfooterOption + \begin{minipage}{.2\textwidth}% + \hskip .05\textwidth%Give horizontal space else this will set on the left edge of the slide! + \end{minipage} + \else + \begin{minipage}{.4\textwidth}% + \hskip .05\textwidth%Give horizontal space else this will set on the left edge of the slide! + \end{minipage} + \fi + + + \begin{minipage}{\textwidth}% + % \vskip .023\textheight% + \raggedleft% + \setlength{\rightskip}{\textwidth} + \if@rightfooterOption + \hbox{% + \begin{beamercolorbox}[wd=0.7\textwidth,ht=2.25ex,dp=1ex,left]{author in head/foot}% + \insertshorttitle{} \hskip .01\textwidth | \hskip .01\textwidth \insertdate{} \hskip .01\textwidth | \hskip .01\textwidth \insertframenumber{} + \end{beamercolorbox}% + } + \else + \hbox{% + \begin{beamercolorbox}[wd=0.5\textwidth,ht=2.25ex,dp=1ex,left]{author in head/foot}% + \insertshorttitle{} \hskip .01\textwidth | \hskip .01\textwidth \insertdate{} \hskip .01\textwidth | \hskip .01\textwidth \insertframenumber{} + \end{beamercolorbox}% + } + \fi + + \end{minipage}% + \begin{minipage}{.05\textwidth}% + \end{minipage}% + \fi %\thepage>1 + }% + \vskip .023\textheight% + +} + + + + +\ifTACCheadernav + +\usesectionheadtemplate +{\hfill\insertsectionhead} +{\hfill\color{fg!50!bg}\insertsectionhead} + +% Head +\ifbeamer@compress + +% Here we define how the top of the frame looks, the "headline". +\setbeamertemplate{headline} +{% + \ifnum \thepage>1 + \leavevmode% + \begin{beamercolorbox}[wd=.5\paperwidth,ht=2.5ex,dp=1.125ex]{% + section in head/foot}% + \insertsectionnavigationhorizontal{.5\paperwidth}{\hskip0pt plus1filll}{}% + \end{beamercolorbox}% + \begin{beamercolorbox}[wd=.5\paperwidth,ht=2.5ex,dp=1.125ex]{% + subsection in head/foot}% + \insertsubsectionnavigationhorizontal{% + .5\paperwidth}{}{\hskip0pt plus1filll}% + \end{beamercolorbox}% + \fi %\thepage>1 +} + +\else% Not compressed + +\setbeamertemplate{headline} +{% + \ifnum \thepage>1 + \leavevmode% + \@tempdimb=2.4375ex% + \ifnum\beamer@subsectionmax<\beamer@sectionmax% + \multiply\@tempdimb by\beamer@sectionmax% + \else% + \multiply\@tempdimb by\beamer@subsectionmax% + \fi% + \ifdim\@tempdimb>0pt% + \advance\@tempdimb by 1.125ex% + \begin{beamercolorbox}[wd=.5\paperwidth,ht=\@tempdimb]{% + section in head/foot}% + \vbox to\@tempdimb{\vfil\insertsectionnavigation{.5\paperwidth}\vfil}% + \end{beamercolorbox}% + \begin{beamercolorbox}[wd=.5\paperwidth,ht=\@tempdimb]{% + subsection in head/foot}% + \vbox to\@tempdimb{\vfil\insertsubsectionnavigation{.5\paperwidth}\vfil}% + \end{beamercolorbox}% + \fi% + \fi % \thepage>1 +} + +\fi % end if compressed +\fi % TACCheadernav + + +\ifTACCheadertree + +\setbeamertemplate{headline} +{ + \begin{beamercolorbox}[wd=\paperwidth,colsep=1.5pt]{upper separation line head} + \end{beamercolorbox} + % + % Place short title + % + \begin{beamercolorbox}[wd=\paperwidth,ht=2.5ex,dp=1.125ex,% + leftskip=.3cm,rightskip=.3cm plus1fil]{title in head/foot} + \usebeamerfont{title in head/foot}\insertshorttitle + \end{beamercolorbox} + + % + % Place section + % + \begin{beamercolorbox}[wd=\paperwidth,ht=2.5ex,dp=1.125ex,% + leftskip=.3cm,rightskip=.3cm plus1fil]{section in head/foot} + \usebeamerfont{section in head/foot}% + %\ifbeamer@tree@showhooks + \setbox\beamer@tempbox=\hbox{\insertsectionhead}% + \ifdim\wd\beamer@tempbox>1pt% + \hskip2pt\raise1.9pt\hbox{\vrule width0.4pt height1.875ex\vrule width 5pt height0.4pt}% + \hskip1pt% + \fi + \insertsectionhead + \end{beamercolorbox} + +% +% Place subsection +% +\begin{beamercolorbox}[wd=\paperwidth,ht=2.5ex,dp=1.125ex,% + leftskip=.3cm,rightskip=.3cm plus1fil]{subsection in head/foot} + \usebeamerfont{subsection in head/foot}% + %\ifbeamer@tree@showhooks + \setbox\beamer@tempbox=\hbox{\insertsubsectionhead}% + \ifdim\wd\beamer@tempbox>1pt% + \hskip9.4pt\raise1.9pt\hbox{\vrule width0.4pt height1.875ex\vrule width 5pt height0.4pt}% + \hskip1pt% + \fi + \insertsubsectionhead +\end{beamercolorbox} + +% +% Place final separation box +% + \begin{beamercolorbox}[wd=\paperwidth,colsep=1.5pt + ]{lower separation line head} + \end{beamercolorbox} + + % + % Another matching rule which helps to frame the content + % + \hspace{.025\textwidth}\rule{.95\textwidth}{.5pt} +} +\fi % TACCheadertree + + +% The following command suppresses all navigation symbols. This is +% necessary in the TACC theme, since it overlaps where we want the +% logo to be. +\setbeamertemplate{navigation symbols}{} + + +\mode + diff --git a/my_docs/23/lmod_zoom_mtg_2023_03_07/beamerthemeTACC.sty b/my_docs/23/lmod_zoom_mtg_2023_03_07/beamerthemeTACC.sty deleted file mode 120000 index 5c339abd4..000000000 --- a/my_docs/23/lmod_zoom_mtg_2023_03_07/beamerthemeTACC.sty +++ /dev/null @@ -1 +0,0 @@ -../../beamer/beamerthemeTACC.sty \ No newline at end of file diff --git a/my_docs/23/lmod_zoom_mtg_2023_03_07/beamerthemeTACC.sty b/my_docs/23/lmod_zoom_mtg_2023_03_07/beamerthemeTACC.sty new file mode 100755 index 000000000..c6a1b1269 --- /dev/null +++ b/my_docs/23/lmod_zoom_mtg_2023_03_07/beamerthemeTACC.sty @@ -0,0 +1,26 @@ +%% TACC theme for beamer + +\newif\ifTACCheadernav +\DeclareOption{headernav}{\global\TACCheadernavtrue} + +\newif\ifTACCheadertree +\DeclareOption{headertree}{\global\TACCheadertreetrue} +\ProcessOptions + +\mode + +\usefonttheme{TACC} +\usecolortheme{TACC} +\useinnertheme{TACC} +\useoutertheme{TACC} + +\mode + + +\newcommand{\event}[1]{% + \makeatletter% + \def\TACC@eventname{#1}% + \makeatother} + +\newcommand{\sectionframe}[1]{\section{#1}\frame{\Large\textbf{#1}}} +\newcommand{\subsectionframe}[1]{\subsection{#1}\frame{\large\textbf{#1}}} diff --git a/my_docs/23/lmod_zoom_mtg_2023_03_07/beamerthemeTACC16.sty b/my_docs/23/lmod_zoom_mtg_2023_03_07/beamerthemeTACC16.sty deleted file mode 120000 index 7a9d4d296..000000000 --- a/my_docs/23/lmod_zoom_mtg_2023_03_07/beamerthemeTACC16.sty +++ /dev/null @@ -1 +0,0 @@ -../../beamer/beamerthemeTACC16.sty \ No newline at end of file diff --git a/my_docs/23/lmod_zoom_mtg_2023_03_07/beamerthemeTACC16.sty b/my_docs/23/lmod_zoom_mtg_2023_03_07/beamerthemeTACC16.sty new file mode 100755 index 000000000..b522d0207 --- /dev/null +++ b/my_docs/23/lmod_zoom_mtg_2023_03_07/beamerthemeTACC16.sty @@ -0,0 +1,61 @@ +%% TACC theme for beamer + + +\newif\if@rightfooterOption +\@rightfooterOptionfalse +\DeclareOption{rightfooter}{\@rightfooterOptiontrue} +\ProcessOptions + + +\newif\ifTACCheadernav +\DeclareOption{headernav}{\global\TACCheadernavtrue} + +\newif\ifTACCheadertree +\DeclareOption{headertree}{\global\TACCheadertreetrue} +\ProcessOptions + +\usepackage{xparse} +\ExplSyntaxOn +\NewDocumentCommand{\ifaspectratio}{mmm} + { + % Recover the option from those passed to the class + \keys_set:nf { zunbeltz/beameroptions } { \use:c { opt@beamer.cls } } + \str_if_eq:nVTF { #1 } \l_zunbeltz_aspectratio_tl { #2 } { #3 } + } +\NewDocumentCommand{\xifaspectratio}{mO{}} + { + % Recover the option from those passed to the class + \keys_set:nf { zunbeltz/beameroptions } { \use:c { opt@beamer.cls } } + \str_case:VnF \l_zunbeltz_aspectratio_tl { #1 } { #2 } + } +% We need to define only one key, the other are treated as `unknown' +\keys_define:nn { zunbeltz/beameroptions } + { + aspectratio .tl_set:N = \l_zunbeltz_aspectratio_tl, + aspectratio .initial:n = 43, + unknown .code:n = {}, + } + +% Generate the variants we need +\cs_generate_variant:Nn \keys_set:nn { nf } +\cs_generate_variant:Nn \str_if_eq:nnTF { nV } +\cs_generate_variant:Nn \str_case:nnF { V } +\ExplSyntaxOff + +\mode + +\usefonttheme{TACC16} +\useinnertheme{TACC16} +\useoutertheme{TACC16} +\usecolortheme{TACC16} + +\mode + + +\newcommand{\event}[1]{% + \makeatletter% + \def\TACC@eventname{#1}% + \makeatother} + +\newcommand{\sectionframe}[1]{\section{#1}\frame{\Large\textbf{#1}}} +\newcommand{\subsectionframe}[1]{\subsection{#1}\frame{\large\textbf{#1}}} diff --git a/my_docs/23/lmod_zoom_mtg_2023_03_07/figures b/my_docs/23/lmod_zoom_mtg_2023_03_07/figures deleted file mode 120000 index ddafd8974..000000000 --- a/my_docs/23/lmod_zoom_mtg_2023_03_07/figures +++ /dev/null @@ -1 +0,0 @@ -../../beamer/figures \ No newline at end of file diff --git a/my_docs/23/lmod_zoom_mtg_2023_03_07/figures/TACC_logo.pdf b/my_docs/23/lmod_zoom_mtg_2023_03_07/figures/TACC_logo.pdf new file mode 100755 index 000000000..c018a20cb Binary files /dev/null and b/my_docs/23/lmod_zoom_mtg_2023_03_07/figures/TACC_logo.pdf differ diff --git a/my_docs/23/lmod_zoom_mtg_2023_03_07/figures/UT_logo.pdf b/my_docs/23/lmod_zoom_mtg_2023_03_07/figures/UT_logo.pdf new file mode 100755 index 000000000..d5b42e752 Binary files /dev/null and b/my_docs/23/lmod_zoom_mtg_2023_03_07/figures/UT_logo.pdf differ diff --git a/my_docs/23/lmod_zoom_mtg_2023_03_07/figures/cc.png b/my_docs/23/lmod_zoom_mtg_2023_03_07/figures/cc.png new file mode 100644 index 000000000..8a532ff8f Binary files /dev/null and b/my_docs/23/lmod_zoom_mtg_2023_03_07/figures/cc.png differ diff --git a/my_docs/23/lmod_zoom_mtg_2023_03_07/figures/isa.png b/my_docs/23/lmod_zoom_mtg_2023_03_07/figures/isa.png new file mode 100644 index 000000000..f95d985e7 Binary files /dev/null and b/my_docs/23/lmod_zoom_mtg_2023_03_07/figures/isa.png differ diff --git a/my_docs/23/lmod_zoom_mtg_2023_03_07/figures/master.jpg b/my_docs/23/lmod_zoom_mtg_2023_03_07/figures/master.jpg new file mode 100644 index 000000000..f5c56c04a Binary files /dev/null and b/my_docs/23/lmod_zoom_mtg_2023_03_07/figures/master.jpg differ diff --git a/my_docs/23/lmod_zoom_mtg_2023_03_07/figures/master169.jpg b/my_docs/23/lmod_zoom_mtg_2023_03_07/figures/master169.jpg new file mode 100644 index 000000000..b215776eb Binary files /dev/null and b/my_docs/23/lmod_zoom_mtg_2023_03_07/figures/master169.jpg differ diff --git a/my_docs/23/lmod_zoom_mtg_2023_03_07/figures/master169.png b/my_docs/23/lmod_zoom_mtg_2023_03_07/figures/master169.png new file mode 100644 index 000000000..bc5c0ed12 Binary files /dev/null and b/my_docs/23/lmod_zoom_mtg_2023_03_07/figures/master169.png differ diff --git a/my_docs/23/lmod_zoom_mtg_2023_03_07/figures/secondary.jpg b/my_docs/23/lmod_zoom_mtg_2023_03_07/figures/secondary.jpg new file mode 100644 index 000000000..d905a95c9 Binary files /dev/null and b/my_docs/23/lmod_zoom_mtg_2023_03_07/figures/secondary.jpg differ diff --git a/my_docs/23/lmod_zoom_mtg_2023_03_07/figures/secondary169.jpg b/my_docs/23/lmod_zoom_mtg_2023_03_07/figures/secondary169.jpg new file mode 100644 index 000000000..4eb017957 Binary files /dev/null and b/my_docs/23/lmod_zoom_mtg_2023_03_07/figures/secondary169.jpg differ diff --git a/my_docs/23/lmod_zoom_mtg_2023_03_07/figures/secondary169.png b/my_docs/23/lmod_zoom_mtg_2023_03_07/figures/secondary169.png new file mode 100644 index 000000000..cb9060a56 Binary files /dev/null and b/my_docs/23/lmod_zoom_mtg_2023_03_07/figures/secondary169.png differ diff --git a/my_docs/23/lmod_zoom_mtg_2023_03_07/figures/secondary_right.jpg b/my_docs/23/lmod_zoom_mtg_2023_03_07/figures/secondary_right.jpg new file mode 100644 index 000000000..f25f93a58 Binary files /dev/null and b/my_docs/23/lmod_zoom_mtg_2023_03_07/figures/secondary_right.jpg differ diff --git a/my_docs/23/lmod_zoom_mtg_2023_03_07/figures/secondary_right169.jpg b/my_docs/23/lmod_zoom_mtg_2023_03_07/figures/secondary_right169.jpg new file mode 100644 index 000000000..567a1078f Binary files /dev/null and b/my_docs/23/lmod_zoom_mtg_2023_03_07/figures/secondary_right169.jpg differ diff --git a/my_docs/23/lmod_zoom_mtg_2023_03_07/themes b/my_docs/23/lmod_zoom_mtg_2023_03_07/themes deleted file mode 120000 index a98530730..000000000 --- a/my_docs/23/lmod_zoom_mtg_2023_03_07/themes +++ /dev/null @@ -1 +0,0 @@ -../../beamer/themes \ No newline at end of file diff --git a/my_docs/23/lmod_zoom_mtg_2023_03_07/themes/beamercolorthemeTACC16.sty b/my_docs/23/lmod_zoom_mtg_2023_03_07/themes/beamercolorthemeTACC16.sty new file mode 100644 index 000000000..248ae8cb6 --- /dev/null +++ b/my_docs/23/lmod_zoom_mtg_2023_03_07/themes/beamercolorthemeTACC16.sty @@ -0,0 +1,193 @@ +% Copyright 2003 by Till Tantau . +% +% This program can be redistributed and/or modified under the terms +% of the GNU Public License, version 2. + +\mode + +\usepackage{textcase,regexpatch} + +\setbeamertemplate{blocks}[rounded][shadow=true] + + +\definecolor{TACCred}{RGB}{180,13,29} +\definecolor{TACCorange}{RGB}{210,104,43} +\definecolor{TACCblue}{RGB}{21,77,122} +%\definecolor{TACCgreen}{RGB}{30,134,104} +\definecolor{TACCgreen}{RGB}{49,168,51} + +% I downloaded a gimp color palette from +% http://maururu.net/2007/latex-beamer-color-palette/ +% Which provides rgb values (I think) for several of the +% default beamer themes. You can open this in gimp by +% opening the Palettes dialog, right-clicking anywhere and choosing +% 'Import Palette'. A color in there called 'default added blue' +% appeared to be approximately what I wanted. It had the triple +% of values 141 145 208. If you double-click on this in the +% palette editor it gives you a bunch of information. You can't +% use these values directly to set a color...it just comes out white. +% I think definecolor is expecting something normalized by 255. Yes! + + +%%% +% Set the normal text color +%%% +\setbeamercolor{normal text}{fg=black} %,bg=white} +\setbeamercolor{example text}{fg=TACCgreen} +\setbeamercolor{alerted text}{fg=TACCorange} + + +\setbeamercolor{structure}{fg=black} +%\setbeamercolor{structure}{fg=black} + +\setbeamercolor{background canvas}{parent=normal text} +\setbeamercolor{background}{parent=background canvas} + +\setbeamercolor{palette primary}{use=structure,fg=structure.fg} +\setbeamercolor{palette secondary}{use=structure,fg=structure.fg!75!black} +\setbeamercolor{palette tertiary}{use=structure,fg=structure.fg!50!black} +\setbeamercolor{palette quaternary}{fg=black} + +\setbeamercolor{palette sidebar primary}{use=normal text,fg=normal text.fg} +\setbeamercolor{palette sidebar secondary}{use=structure,fg=structure.fg} +\setbeamercolor{palette sidebar tertiary}{use=normal text,fg=normal text.fg} +\setbeamercolor{palette sidebar quaternary}{use=structure,fg=structure.fg} + +\setbeamercolor{math text}{} +\setbeamercolor{math text inlined}{parent=math text} +\setbeamercolor{math text displayed}{parent=math text} + +\setbeamercolor{normal text in math text}{} + +\setbeamercolor{local structure}{parent=structure} + +\setbeamercolor{titlelike}{parent=structure} + +\setbeamercolor{title}{parent=titlelike} +\setbeamercolor{title in head/foot}{parent=palette quaternary} +\setbeamercolor{title in sidebar}{parent=palette sidebar quaternary} + +\setbeamercolor{subtitle}{parent=title} + +\setbeamercolor{author}{} +\setbeamercolor{author in head/foot}{parent=palette primary} +\setbeamercolor{author in sidebar}{use=palette sidebar tertiary,fg=palette sidebar tertiary.fg} + +\setbeamercolor{institute}{} +\setbeamercolor{institute in head/foot}{parent=palette tertiary} +\setbeamercolor{institute in sidebar}{use=palette sidebar tertiary,fg=palette sidebar tertiary.fg} + +\setbeamercolor{date}{} +\setbeamercolor{date in head/foot}{parent=palette secondary} +\setbeamercolor{date in sidebar}{use=palette sidebar tertiary,fg=palette sidebar tertiary.fg} + +\setbeamercolor{titlegraphic}{} + +\setbeamercolor{part name}{} +\setbeamercolor{part title}{parent=titlelike} + +\setbeamercolor{section in toc}{parent=structure} +\setbeamercolor{section in toc shaded}{parent=section in toc} +\setbeamercolor{section in head/foot}{parent=palette tertiary} +\setbeamercolor{section in sidebar}{parent=palette sidebar secondary} +\setbeamercolor{section in sidebar shaded}{use=section in sidebar,fg=section in sidebar.fg!40!bg} +\setbeamercolor{section number projected}{parent=item projected} + +\setbeamercolor{subsection in toc}{} +\setbeamercolor{subsection in toc shaded}{parent=subsection in toc} +\setbeamercolor{subsection in head/foot}{parent=palette secondary} +\setbeamercolor{subsection in sidebar}{parent=palette sidebar primary} +\setbeamercolor{subsection in sidebar shaded}{use=subsection in sidebar,fg=subsection in sidebar.fg!40!bg} +\setbeamercolor{subsection number projected}{parent={subitem projected}} + +\setbeamercolor{subsubsection in toc}{parent=subsection in toc} +\setbeamercolor{subsubsection in toc shaded}{parent=subsubsection in toc} +\setbeamercolor{subsubsection in head/foot}{parent=subsection in head/foot} +\setbeamercolor{subsubsection in sidebar}{parent=subsection in sidebar} +\setbeamercolor{subsubsection in sidebar shaded}{parent=subsection in sidebar shaded} +\setbeamercolor{subsubsection number projected}{parent=subsubitem projected} + +\setbeamercolor{headline}{} +\setbeamercolor{footline}{} + +\setbeamercolor{sidebar}{} +\setbeamercolor{sidebar left}{parent=sidebar} +\setbeamercolor{sidebar right}{parent=sidebar} + +\setbeamercolor{logo}{parent=palette secondary} + +\setbeamercolor{frametitle}{parent=titlelike} +\setbeamercolor{framesubtitle}{parent=frametitle} + +\setbeamercolor{frametitle right}{parent=frametitle} + +\setbeamercolor{caption}{} +\setbeamercolor{caption name}{parent=structure} + +\setbeamercolor{button}{use=local structure,bg=local structure.fg!50!bg,fg=white} +\setbeamercolor{button border}{use=button,fg=button.bg} +\setbeamercolor{navigation symbols}{use=structure,fg=structure.fg!40!bg} +\setbeamercolor{navigation symbols dimmed}{use=structure,fg=structure.fg!20!bg} +\setbeamercolor{mini frame}{parent=section in head/foot} + +\setbeamercolor{block body}{fg=black} +\setbeamercolor{block body alerted}{fg=black} +\setbeamercolor{block body example}{fg=black} + +\setbeamercolor{block title}{bg=TACCblue,fg=white} +\setbeamercolor{block title alerted}{bg=TACCred,fg=white} +\setbeamercolor{block title example}{bg=TACCgreen,fg=white} + +\setbeamercolor{item}{parent=local structure} +\setbeamercolor{subitem}{parent=item} +\setbeamercolor{subsubitem}{parent=subitem} + +\setbeamercolor{item projected}{parent=item,use=item,fg=black,bg=item.fg} +\setbeamercolor{subitem projected}{parent=item projected} +\setbeamercolor{subsubitem projected}{parent=subitem projected} + +\setbeamercolor{enumerate item}{parent=item} +\setbeamercolor{enumerate subitem}{parent=subitem} +\setbeamercolor{enumerate subsubitem}{parent=subsubitem} + +\setbeamercolor{itemize item}{parent=item} +\setbeamercolor{itemize subitem}{parent=subitem} +\setbeamercolor{itemize subsubitem}{parent=subsubitem} + +\setbeamercolor{itemize/enumerate body}{} +\setbeamercolor{itemize/enumerate subbody}{} +\setbeamercolor{itemize/enumerate subsubbody}{} + +\setbeamercolor{description item}{parent=item} + +\setbeamercolor{bibliography item}{parent=item} + +\setbeamercolor{bibliography entry author}{use=structure,fg=structure.fg} +\setbeamercolor{bibliography entry title}{use=normal text,fg=normal text.fg} +\setbeamercolor{bibliography entry location}{use=structure,fg=structure.fg!65!bg} +\setbeamercolor{bibliography entry note}{use=structure,fg=structure.fg!65!bg} + +\setbeamercolor{separation line}{} + +\setbeamercolor{upper separation line head}{parent=separation line} +\setbeamercolor{middle separation line head}{parent=separation line} +\setbeamercolor{lower separation line head}{parent=separation line} + +\setbeamercolor{upper separation line foot}{parent=separation line} +\setbeamercolor{middle separation line foot}{parent=separation line} +\setbeamercolor{lower separation line foot}{parent=separation line} + +\setbeamercolor{abstract}{} +\setbeamercolor{abstract title}{parent=structure} + +\setbeamercolor{verse}{} + +\setbeamercolor{quotation}{} +\setbeamercolor{quote}{parent=quotation} + +\setbeamercolor{page number in head/foot}{fg=fg!50!bg} + +\setbeamercolor{qed symbol}{parent=structure} + +\mode + diff --git a/my_docs/23/lmod_zoom_mtg_2023_03_07/themes/beamerfontthemeTACC16.sty b/my_docs/23/lmod_zoom_mtg_2023_03_07/themes/beamerfontthemeTACC16.sty new file mode 100644 index 000000000..d0fc325cc --- /dev/null +++ b/my_docs/23/lmod_zoom_mtg_2023_03_07/themes/beamerfontthemeTACC16.sty @@ -0,0 +1,21 @@ +% Copyright 2003 by Till Tantau +% +% This program can be redistributed and/or modified under the terms +% of the GNU Public License, version 2. + +\mode +\setbeamerfont{title}{parent=structure,size=\LARGE,series=\bfseries} +\setbeamerfont{author}{parent=structure,size=\large, series=\normalfont} +\setbeamerfont{frametitle}{parent=structure,size=\LARGE,series=\bfseries} +\setbeamerfont{framesubtitle}{parent=frametitle,size=\small} + +%\usefonttheme{professionalfonts} % using non standard fonts for beamer +%\usefonttheme{serif} % default family is serif +%\usepackage{fontspec} +%\setmainfont{Century Gothic} + +%\usepackage{fontspec} +\usepackage{libertine} + +\mode + diff --git a/my_docs/23/lmod_zoom_mtg_2023_03_07/themes/beamerinnerthemeTACC16.sty b/my_docs/23/lmod_zoom_mtg_2023_03_07/themes/beamerinnerthemeTACC16.sty new file mode 100644 index 000000000..f7f454e1d --- /dev/null +++ b/my_docs/23/lmod_zoom_mtg_2023_03_07/themes/beamerinnerthemeTACC16.sty @@ -0,0 +1,11 @@ +\mode + +\setbeamertemplate{itemize item}[triangle] +\setbeamertemplate{itemize subitem}[triangle] +\setbeamertemplate{itemize subsubitem}[triangle] +\setbeamertemplate{section in toc}{$\bullet$\hskip.5em\inserttocsection} +%\setbeamertemplate{subsection in toc}{} +\setbeamertemplate{subsubsection in toc}{} + +\mode + diff --git a/my_docs/23/lmod_zoom_mtg_2023_03_07/themes/beamerouterthemeTACC16-169.sty b/my_docs/23/lmod_zoom_mtg_2023_03_07/themes/beamerouterthemeTACC16-169.sty new file mode 100644 index 000000000..c62f9ed04 --- /dev/null +++ b/my_docs/23/lmod_zoom_mtg_2023_03_07/themes/beamerouterthemeTACC16-169.sty @@ -0,0 +1,247 @@ +% Copyright 2003 by Till Tantau +% +% This program can be redistributed and/or modified under the terms +% of the GNU Public License, version 2. + +\mode + +\usepackage{xcolor} +\usepackage{graphicx} +\usepackage{etoolbox} + +\pgfdeclareimage[width=\paperwidth]{titlebackground}{./figures/master169.png} +\pgfdeclareimage[width=\paperwidth]{background}{./figures/secondary169.png} + +\setbeamertemplate{background canvas}{% + \ifnum\c@framenumber=1% + \begin{picture}(0,0) + \put(-0.15,-250){% + \pgfuseimage{titlebackground} + } + %\put(0,-130.7){% + + %\begin{minipage}[b][45mm][t]{\textwidth}%{226mm} + %\begin{center} + % \usebeamerfont{title}{\MakeTextUppercase{\inserttitle}\par} + %\vspace{2ex} + %\usebeamerfont{author}{\insertauthor} + % \end{center} + %\end{minipage} + %} + \end{picture} + % On title page + \else% + % Other frames background + \begin{picture}(0,0) + \put(-0.15,-255.55){% + \pgfuseimage{background} + } + \end{picture} + \fi% +} + + +\setbeamertemplate{title page}{ +\vspace{40pt} +\begin{center} +\usebeamerfont{title} {\huge \inserttitle}\par +\vspace{4ex} +\usebeamerfont{author} { + \insertauthor +}\par +\vspace{2ex} +\usebeamerfont{institute}{ + \insertinstitute +} \par +\vspace{2ex} +\usebeamerfont{date}{ + \insertdate +} +\end{center} +} + + +\setbeamertemplate{frametitle}[default][center] +\setbeamertemplate{frametitle}{ + \makeatletter + \regexpatchcmd{\insertframetitle} + {(\c{usebeamertemplate}.*)\c{fi}} + {\c{NoCaseChange}\cB\{\1\cE\}\c{fi}} + {}{}% + \makeatother + \vskip1ex + \insertframetitle +} + +% Here we define what appears at the bottom of each slide: the "footline". +\setbeamertemplate{footline}{% + \leavevmode% + + % Horizontal line dividing the rest of the slide from the footer? + % hrule goes all the way across... + % \hrule height.3pt% + % With \rule, you can specify the thickness + % \rule[raise-height]{width}{thickness} + % \hspace{.025\textwidth}\rule{.95\textwidth}{.5pt} + + \hbox{% + \ifnum \thepage>1 + % On the left half of the footer, insert the TACC of + \begin{minipage}{.2\textwidth}% + \hskip .05\textwidth%Give horizontal space else this will set on the left edge of the slide! + % \includegraphics[width=.8\textwidth]{TACC_logo.png} + \end{minipage} + + + \begin{minipage}{\textwidth}% + % \vskip .023\textheight% + \raggedleft% + \setlength{\rightskip}{\textwidth} + \hbox{% + \begin{beamercolorbox}[wd=0.7\textwidth,ht=2.25ex,dp=1ex,left]{author in head/foot}% + \insertshorttitle{} \hskip .01\textwidth | \hskip .01\textwidth \insertdate{} \hskip .01\textwidth | \hskip .01\textwidth \insertframenumber{} + \end{beamercolorbox}% + } + + % + % If we are not on the first page, insert a page number + % For some reason, insertframenumber is buggy when you have fragile + % slides with verbatim environments in them... it tends to skip numbers + % for some reason! On the other hand, the pagenumber is incremented + % for *every* slide, including transition slides... + % \hfill\includegraphics[width=\textwidth]{tacc_ut.png} + \end{minipage}% + \begin{minipage}{.05\textwidth}% + \end{minipage}% + \fi %\thepage>1 + }% + \vskip .023\textheight% + +} + + + + +\ifTACCheadernav + +\usesectionheadtemplate +{\hfill\insertsectionhead} +{\hfill\color{fg!50!bg}\insertsectionhead} + +% Head +\ifbeamer@compress + +% Here we define how the top of the frame looks, the "headline". +\setbeamertemplate{headline} +{% + \ifnum \thepage>1 + \leavevmode% + \begin{beamercolorbox}[wd=.5\paperwidth,ht=2.5ex,dp=1.125ex]{% + section in head/foot}% + \insertsectionnavigationhorizontal{.5\paperwidth}{\hskip0pt plus1filll}{}% + \end{beamercolorbox}% + \begin{beamercolorbox}[wd=.5\paperwidth,ht=2.5ex,dp=1.125ex]{% + subsection in head/foot}% + \insertsubsectionnavigationhorizontal{% + .5\paperwidth}{}{\hskip0pt plus1filll}% + \end{beamercolorbox}% + \fi %\thepage>1 +} + +\else% Not compressed + +\setbeamertemplate{headline} +{% + \ifnum \thepage>1 + \leavevmode% + \@tempdimb=2.4375ex% + \ifnum\beamer@subsectionmax<\beamer@sectionmax% + \multiply\@tempdimb by\beamer@sectionmax% + \else% + \multiply\@tempdimb by\beamer@subsectionmax% + \fi% + \ifdim\@tempdimb>0pt% + \advance\@tempdimb by 1.125ex% + \begin{beamercolorbox}[wd=.5\paperwidth,ht=\@tempdimb]{% + section in head/foot}% + \vbox to\@tempdimb{\vfil\insertsectionnavigation{.5\paperwidth}\vfil}% + \end{beamercolorbox}% + \begin{beamercolorbox}[wd=.5\paperwidth,ht=\@tempdimb]{% + subsection in head/foot}% + \vbox to\@tempdimb{\vfil\insertsubsectionnavigation{.5\paperwidth}\vfil}% + \end{beamercolorbox}% + \fi% + \fi % \thepage>1 +} + +\fi % end if compressed +\fi % TACCheadernav + + +\ifTACCheadertree + +\setbeamertemplate{headline} +{ + \begin{beamercolorbox}[wd=\paperwidth,colsep=1.5pt]{upper separation line head} + \end{beamercolorbox} + % + % Place short title + % + \begin{beamercolorbox}[wd=\paperwidth,ht=2.5ex,dp=1.125ex,% + leftskip=.3cm,rightskip=.3cm plus1fil]{title in head/foot} + \usebeamerfont{title in head/foot}\insertshorttitle + \end{beamercolorbox} + + % + % Place section + % + \begin{beamercolorbox}[wd=\paperwidth,ht=2.5ex,dp=1.125ex,% + leftskip=.3cm,rightskip=.3cm plus1fil]{section in head/foot} + \usebeamerfont{section in head/foot}% + %\ifbeamer@tree@showhooks + \setbox\beamer@tempbox=\hbox{\insertsectionhead}% + \ifdim\wd\beamer@tempbox>1pt% + \hskip2pt\raise1.9pt\hbox{\vrule width0.4pt height1.875ex\vrule width 5pt height0.4pt}% + \hskip1pt% + \fi + \insertsectionhead + \end{beamercolorbox} + +% +% Place subsection +% +\begin{beamercolorbox}[wd=\paperwidth,ht=2.5ex,dp=1.125ex,% + leftskip=.3cm,rightskip=.3cm plus1fil]{subsection in head/foot} + \usebeamerfont{subsection in head/foot}% + %\ifbeamer@tree@showhooks + \setbox\beamer@tempbox=\hbox{\insertsubsectionhead}% + \ifdim\wd\beamer@tempbox>1pt% + \hskip9.4pt\raise1.9pt\hbox{\vrule width0.4pt height1.875ex\vrule width 5pt height0.4pt}% + \hskip1pt% + \fi + \insertsubsectionhead +\end{beamercolorbox} + +% +% Place final separation box +% + \begin{beamercolorbox}[wd=\paperwidth,colsep=1.5pt + ]{lower separation line head} + \end{beamercolorbox} + + % + % Another matching rule which helps to frame the content + % + \hspace{.025\textwidth}\rule{.95\textwidth}{.5pt} +} +\fi % TACCheadertree + + +% The following command suppresses all navigation symbols. This is +% necessary in the TACC theme, since it overlaps where we want the +% logo to be. +\setbeamertemplate{navigation symbols}{} + + +\mode + diff --git a/my_docs/23/lmod_zoom_mtg_2023_03_07/themes/beamerouterthemeTACC16.sty b/my_docs/23/lmod_zoom_mtg_2023_03_07/themes/beamerouterthemeTACC16.sty new file mode 100644 index 000000000..c5b178018 --- /dev/null +++ b/my_docs/23/lmod_zoom_mtg_2023_03_07/themes/beamerouterthemeTACC16.sty @@ -0,0 +1,247 @@ +% Copyright 2003 by Till Tantau +% +% This program can be redistributed and/or modified under the terms +% of the GNU Public License, version 2. + +\mode + +\usepackage{xcolor} +\usepackage{graphicx} +\usepackage{etoolbox} + +\pgfdeclareimage[width=\paperwidth]{titlebackground}{master.jpg} +\pgfdeclareimage[width=\paperwidth]{background}{secondary.jpg} + +\setbeamertemplate{background canvas}{% + \ifnum\c@framenumber=1% + \begin{picture}(0,0) + \put(0,-273){% + \pgfuseimage{titlebackground} + } + %\put(0,-130.7){% + + %\begin{minipage}[b][45mm][t]{\textwidth}%{226mm} + %\begin{center} + % \usebeamerfont{title}{\MakeTextUppercase{\inserttitle}\par} + %\vspace{2ex} + %\usebeamerfont{author}{\insertauthor} + % \end{center} + %\end{minipage} + %} + \end{picture} + % On title page + \else% + % Other frames background + \begin{picture}(0,0) + \put(0,-273){% + \pgfuseimage{background} + } + \end{picture} + \fi% +} + + +\setbeamertemplate{title page}{ +\vspace{40pt} +\begin{center} +\usebeamerfont{title} {\huge \inserttitle}\par +\vspace{4ex} +\usebeamerfont{author} { + \insertauthor +}\par +\vspace{2ex} +\usebeamerfont{institute}{ + \insertinstitute +} \par +\vspace{2ex} +\usebeamerfont{date}{ + \insertdate +} +\end{center} +} + + +\setbeamertemplate{frametitle}[default][center] +\setbeamertemplate{frametitle}{ + \makeatletter + \regexpatchcmd{\insertframetitle} + {(\c{usebeamertemplate}.*)\c{fi}} + {\c{NoCaseChange}\cB\{\1\cE\}\c{fi}} + {}{}% + \makeatother + \vskip1ex + \insertframetitle +} + +% Here we define what appears at the bottom of each slide: the "footline". +\setbeamertemplate{footline}{% + \leavevmode% + + % Horizontal line dividing the rest of the slide from the footer? + % hrule goes all the way across... + % \hrule height.3pt% + % With \rule, you can specify the thickness + % \rule[raise-height]{width}{thickness} + % \hspace{.025\textwidth}\rule{.95\textwidth}{.5pt} + + \hbox{% + \ifnum \thepage>1 + % On the left half of the footer, insert the TACC of + \begin{minipage}{.2\textwidth}% + \hskip .05\textwidth%Give horizontal space else this will set on the left edge of the slide! + % \includegraphics[width=.8\textwidth]{figures/TACC_logo.png} + \end{minipage} + + + \begin{minipage}{\textwidth}% + % \vskip .023\textheight% + \raggedleft% + \setlength{\rightskip}{\textwidth} + \hbox{% + \begin{beamercolorbox}[wd=0.7\textwidth,ht=2.25ex,dp=1ex,left]{author in head/foot}% + \insertshorttitle{} \hskip .01\textwidth | \hskip .01\textwidth \insertdate{} \hskip .01\textwidth | \hskip .01\textwidth \insertframenumber{} + \end{beamercolorbox}% + } + + % + % If we are not on the first page, insert a page number + % For some reason, insertframenumber is buggy when you have fragile + % slides with verbatim environments in them... it tends to skip numbers + % for some reason! On the other hand, the pagenumber is incremented + % for *every* slide, including transition slides... + % \hfill\includegraphics[width=\textwidth]{figures/tacc_ut.png} + \end{minipage}% + \begin{minipage}{.05\textwidth}% + \end{minipage}% + \fi %\thepage>1 + }% + \vskip .023\textheight% + +} + + + + +\ifTACCheadernav + +\usesectionheadtemplate +{\hfill\insertsectionhead} +{\hfill\color{fg!50!bg}\insertsectionhead} + +% Head +\ifbeamer@compress + +% Here we define how the top of the frame looks, the "headline". +\setbeamertemplate{headline} +{% + \ifnum \thepage>1 + \leavevmode% + \begin{beamercolorbox}[wd=.5\paperwidth,ht=2.5ex,dp=1.125ex]{% + section in head/foot}% + \insertsectionnavigationhorizontal{.5\paperwidth}{\hskip0pt plus1filll}{}% + \end{beamercolorbox}% + \begin{beamercolorbox}[wd=.5\paperwidth,ht=2.5ex,dp=1.125ex]{% + subsection in head/foot}% + \insertsubsectionnavigationhorizontal{% + .5\paperwidth}{}{\hskip0pt plus1filll}% + \end{beamercolorbox}% + \fi %\thepage>1 +} + +\else% Not compressed + +\setbeamertemplate{headline} +{% + \ifnum \thepage>1 + \leavevmode% + \@tempdimb=2.4375ex% + \ifnum\beamer@subsectionmax<\beamer@sectionmax% + \multiply\@tempdimb by\beamer@sectionmax% + \else% + \multiply\@tempdimb by\beamer@subsectionmax% + \fi% + \ifdim\@tempdimb>0pt% + \advance\@tempdimb by 1.125ex% + \begin{beamercolorbox}[wd=.5\paperwidth,ht=\@tempdimb]{% + section in head/foot}% + \vbox to\@tempdimb{\vfil\insertsectionnavigation{.5\paperwidth}\vfil}% + \end{beamercolorbox}% + \begin{beamercolorbox}[wd=.5\paperwidth,ht=\@tempdimb]{% + subsection in head/foot}% + \vbox to\@tempdimb{\vfil\insertsubsectionnavigation{.5\paperwidth}\vfil}% + \end{beamercolorbox}% + \fi% + \fi % \thepage>1 +} + +\fi % end if compressed +\fi % TACCheadernav + + +\ifTACCheadertree + +\setbeamertemplate{headline} +{ + \begin{beamercolorbox}[wd=\paperwidth,colsep=1.5pt]{upper separation line head} + \end{beamercolorbox} + % + % Place short title + % + \begin{beamercolorbox}[wd=\paperwidth,ht=2.5ex,dp=1.125ex,% + leftskip=.3cm,rightskip=.3cm plus1fil]{title in head/foot} + \usebeamerfont{title in head/foot}\insertshorttitle + \end{beamercolorbox} + + % + % Place section + % + \begin{beamercolorbox}[wd=\paperwidth,ht=2.5ex,dp=1.125ex,% + leftskip=.3cm,rightskip=.3cm plus1fil]{section in head/foot} + \usebeamerfont{section in head/foot}% + %\ifbeamer@tree@showhooks + \setbox\beamer@tempbox=\hbox{\insertsectionhead}% + \ifdim\wd\beamer@tempbox>1pt% + \hskip2pt\raise1.9pt\hbox{\vrule width0.4pt height1.875ex\vrule width 5pt height0.4pt}% + \hskip1pt% + \fi + \insertsectionhead + \end{beamercolorbox} + +% +% Place subsection +% +\begin{beamercolorbox}[wd=\paperwidth,ht=2.5ex,dp=1.125ex,% + leftskip=.3cm,rightskip=.3cm plus1fil]{subsection in head/foot} + \usebeamerfont{subsection in head/foot}% + %\ifbeamer@tree@showhooks + \setbox\beamer@tempbox=\hbox{\insertsubsectionhead}% + \ifdim\wd\beamer@tempbox>1pt% + \hskip9.4pt\raise1.9pt\hbox{\vrule width0.4pt height1.875ex\vrule width 5pt height0.4pt}% + \hskip1pt% + \fi + \insertsubsectionhead +\end{beamercolorbox} + +% +% Place final separation box +% + \begin{beamercolorbox}[wd=\paperwidth,colsep=1.5pt + ]{lower separation line head} + \end{beamercolorbox} + + % + % Another matching rule which helps to frame the content + % + \hspace{.025\textwidth}\rule{.95\textwidth}{.5pt} +} +\fi % TACCheadertree + + +% The following command suppresses all navigation symbols. This is +% necessary in the TACC theme, since it overlaps where we want the +% logo to be. +\setbeamertemplate{navigation symbols}{} + + +\mode + diff --git a/my_docs/23/lmod_zoom_mtg_2023_03_07/themes/beamerthemeTACC16-169.sty b/my_docs/23/lmod_zoom_mtg_2023_03_07/themes/beamerthemeTACC16-169.sty new file mode 100644 index 000000000..22caf9a05 --- /dev/null +++ b/my_docs/23/lmod_zoom_mtg_2023_03_07/themes/beamerthemeTACC16-169.sty @@ -0,0 +1,38 @@ +%% TACC theme for beamer + +\newif\ifTACCheadernav +\DeclareOption{headernav}{\global\TACCheadernavtrue} + +\newif\ifTACCheadertree +\DeclareOption{headertree}{\global\TACCheadertreetrue} +\ProcessOptions + +\mode + +\makeatletter + \def\beamer@calltheme#1#2#3{% + \def\beamer@themelist{#2} + \@for\beamer@themename:=\beamer@themelist\do + {\usepackage[{#1}]{\beamer@themelocation/#3\beamer@themename}}} + + \def\usefolder#1{ + \def\beamer@themelocation{#1} + } + \def\beamer@themelocation{} + +\usefolder{themes} +\usefonttheme{TACC16} +\useinnertheme{TACC16} +\useoutertheme{TACC16-169} +\usecolortheme{TACC16} + +\mode + + +\newcommand{\event}[1]{% + \makeatletter% + \def\TACC@eventname{#1}% + \makeatother} + +\newcommand{\sectionframe}[1]{\section{#1}\frame{\Large\textbf{#1}}} +\newcommand{\subsectionframe}[1]{\subsection{#1}\frame{\large\textbf{#1}}} diff --git a/my_docs/23/lmod_zoom_mtg_2023_03_07/themes/beamerthemeTACC16.sty b/my_docs/23/lmod_zoom_mtg_2023_03_07/themes/beamerthemeTACC16.sty new file mode 100644 index 000000000..750bdd388 --- /dev/null +++ b/my_docs/23/lmod_zoom_mtg_2023_03_07/themes/beamerthemeTACC16.sty @@ -0,0 +1,26 @@ +%% TACC theme for beamer + +\newif\ifTACCheadernav +\DeclareOption{headernav}{\global\TACCheadernavtrue} + +\newif\ifTACCheadertree +\DeclareOption{headertree}{\global\TACCheadertreetrue} +\ProcessOptions + +\mode + +\usefonttheme{TACC16} +\useinnertheme{TACC16} +\useoutertheme{TACC16} +\usecolortheme{TACC16} + +\mode + + +\newcommand{\event}[1]{% + \makeatletter% + \def\TACC@eventname{#1}% + \makeatother} + +\newcommand{\sectionframe}[1]{\section{#1}\frame{\Large\textbf{#1}}} +\newcommand{\subsectionframe}[1]{\subsection{#1}\frame{\large\textbf{#1}}} diff --git a/my_docs/23/lmod_zoom_mtg_2023_03_07/themes/example.pdf b/my_docs/23/lmod_zoom_mtg_2023_03_07/themes/example.pdf new file mode 100644 index 000000000..add373eee Binary files /dev/null and b/my_docs/23/lmod_zoom_mtg_2023_03_07/themes/example.pdf differ diff --git a/my_docs/23/lmod_zoom_mtg_2023_03_07/themes/license.tex b/my_docs/23/lmod_zoom_mtg_2023_03_07/themes/license.tex new file mode 100644 index 000000000..74ff86759 --- /dev/null +++ b/my_docs/23/lmod_zoom_mtg_2023_03_07/themes/license.tex @@ -0,0 +1,14 @@ + +\begin{frame}{License} +\footnotesize +\textcopyright The University of Texas at Austin, \the\year\\ +\vspace{0.5 cm} +This work is licensed under the Creative Commons Attribution Non-Commercial 3.0 Unported License. To view a copy of this license, +visit http://creativecommons.org/licenses/by-nc/3.0/\\ +\vspace{0.5 cm} +When attributing this work, please use the following text: +"Designing and Administering Large-scale Systems", Texas Advanced Computing Center, \the\year. Available under a Creative Commons Attribution Non-Commercial 3.0 Unported License. +\newline +\newline +\includegraphics[width=1cm]{./figures/cc.png} +\end{frame} \ No newline at end of file diff --git a/my_docs/23/lmod_zoom_mtg_2023_07_11/Lmod-4color@2x.png b/my_docs/23/lmod_zoom_mtg_2023_07_11/Lmod-4color@2x.png deleted file mode 120000 index 47d505dbf..000000000 --- a/my_docs/23/lmod_zoom_mtg_2023_07_11/Lmod-4color@2x.png +++ /dev/null @@ -1 +0,0 @@ -../../beamer/Lmod-4color@2x.png \ No newline at end of file diff --git a/my_docs/23/lmod_zoom_mtg_2023_07_11/Lmod-4color@2x.png b/my_docs/23/lmod_zoom_mtg_2023_07_11/Lmod-4color@2x.png new file mode 100644 index 000000000..4810d74c3 Binary files /dev/null and b/my_docs/23/lmod_zoom_mtg_2023_07_11/Lmod-4color@2x.png differ diff --git a/my_docs/23/lmod_zoom_mtg_2023_07_11/beamercolorthemeTACC.sty b/my_docs/23/lmod_zoom_mtg_2023_07_11/beamercolorthemeTACC.sty deleted file mode 120000 index 8d27e673a..000000000 --- a/my_docs/23/lmod_zoom_mtg_2023_07_11/beamercolorthemeTACC.sty +++ /dev/null @@ -1 +0,0 @@ -../../beamer/beamercolorthemeTACC.sty \ No newline at end of file diff --git a/my_docs/23/lmod_zoom_mtg_2023_07_11/beamercolorthemeTACC.sty b/my_docs/23/lmod_zoom_mtg_2023_07_11/beamercolorthemeTACC.sty new file mode 100755 index 000000000..78beb6a4a --- /dev/null +++ b/my_docs/23/lmod_zoom_mtg_2023_07_11/beamercolorthemeTACC.sty @@ -0,0 +1,323 @@ +% Copyright 2003 by Till Tantau . +% +% This program can be redistributed and/or modified under the terms +% of the GNU Public License, version 2. + +\mode + +% I downloaded a gimp color palette from +% http://maururu.net/2007/latex-beamer-color-palette/ +% Which provides rgb values (I think) for several of the +% default beamer themes. You can open this in gimp by +% opening the Palettes dialog, right-clicking anywhere and choosing +% 'Import Palette'. A color in there called 'default added blue' +% appeared to be approximately what I wanted. It had the triple +% of values 141 145 208. If you double-click on this in the +% palette editor it gives you a bunch of information. You can't +% use these values directly to set a color...it just comes out white. +% I think definecolor is expecting something normalized by 255. Yes! + + +% bluish colors +\definecolor{defaddedblue}{rgb}{0.5529,.5686,.8157} % 141,145,208 +\definecolor{defblockheader}{rgb}{.1921,.2235,.6824} % 49,57,174 +\definecolor{flyaddedblue}{rgb}{.5961,.6118,.8431} % 152,156,215 + +% bluish-greys +\definecolor{beetleaddedblue1}{rgb}{.3333,.4039,.6196} % 85 103 158, dark +\definecolor{beetleaddedblue2}{rgb}{.4510,.5098,.7020} % 115 130 179, medium +\definecolor{beetleaddedblue3}{rgb}{.7059,.7255,.7961} % 180 185 203, light (greyest) + +% very light blue-greys +\definecolor{deflightouter1}{rgb}{.7608,.7647,.9020} % 194 195 230, dark +\definecolor{deflightouter2}{rgb}{.8 ,.8039,.9176} % 204 205 234, medium +\definecolor{deflightouter3}{rgb}{.8392,.8431,.9373} % 214 215 239, light + +% reddish colors +\definecolor{flyalertblockheader}{rgb}{.7373,.1294,.1333} % 188 33 34 +\definecolor{flyaddedred}{rgb}{.8667,.5647,.5647}% 221 144 144 +\definecolor{beaverouterframe}{rgb}{.5529,.0980,.0980}% 141 25 25 + +% greens (green is used for 'examples' in beamer) +\definecolor{defexblock}{rgb}{.9098,.9333,.9020} % 232 238 230, light +\definecolor{defaddedgreen}{rgb}{.5412,.6510,.4706} % 138 166 120, medium +\definecolor{defexblockheader}{rgb}{.1686,.3647,.0392} % 43 93 10, dark + +\definecolor{lightexblock}{rgb}{.9137,.9451,.9020} % 233 241 230, light +\definecolor{lightexblockheader}{rgb}{.8235,.8980,.8} % 210 229 204, medium +\definecolor{lightexblockheadertext}{rgb}{.2431,.5098,.0745} % 62 130 19, dark + + +%%% +% Set the normal text color +%%% +\setbeamercolor{normal text}{fg=black,bg=white} + +%%% +% Set the alerted text color +%%% +% \setbeamercolor{alerted text}{fg=red} +\setbeamercolor{alerted text}{fg=red!50!black} % half black/half red for green bg +% \setbeamercolor{alerted text}{fg=beaverouterframe} +% \setbeamercolor{alerted text}{fg=defblockheader} % doesn't stand out enough + + +% Set the 'example' text +\setbeamercolor{example text}{fg=green!50!black} + +\setbeamercolor{structure}{fg=black} + +\setbeamercolor{background canvas}{parent=normal text} +\setbeamercolor{background}{parent=background canvas} + +\setbeamercolor{palette primary}{use=structure,fg=structure.fg} +\setbeamercolor{palette secondary}{use=structure,fg=structure.fg!75!black} +\setbeamercolor{palette tertiary}{use=structure,fg=structure.fg!50!black} +\setbeamercolor{palette quaternary}{fg=black} + +\setbeamercolor{palette sidebar primary}{use=normal text,fg=normal text.fg} +\setbeamercolor{palette sidebar secondary}{use=structure,fg=structure.fg} +\setbeamercolor{palette sidebar tertiary}{use=normal text,fg=normal text.fg} +\setbeamercolor{palette sidebar quaternary}{use=structure,fg=structure.fg} + +\setbeamercolor{math text}{} +\setbeamercolor{math text inlined}{parent=math text} +\setbeamercolor{math text displayed}{parent=math text} + +\setbeamercolor{normal text in math text}{} + +\setbeamercolor{local structure}{parent=structure} + +\setbeamercolor{titlelike}{parent=structure} + +\setbeamercolor{title}{parent=titlelike} +\setbeamercolor{title in head/foot}{parent=palette quaternary} +\setbeamercolor{title in sidebar}{parent=palette sidebar quaternary} + +\setbeamercolor{subtitle}{parent=title} + +\setbeamercolor{author}{} +\setbeamercolor{author in head/foot}{parent=palette primary} +\setbeamercolor{author in sidebar}{use=palette sidebar tertiary,fg=palette sidebar tertiary.fg} + +\setbeamercolor{institute}{} +\setbeamercolor{institute in head/foot}{parent=palette tertiary} +\setbeamercolor{institute in sidebar}{use=palette sidebar tertiary,fg=palette sidebar tertiary.fg} + +\setbeamercolor{date}{} +\setbeamercolor{date in head/foot}{parent=palette secondary} +\setbeamercolor{date in sidebar}{use=palette sidebar tertiary,fg=palette sidebar tertiary.fg} + +\setbeamercolor{titlegraphic}{} + +\setbeamercolor{part name}{} +\setbeamercolor{part title}{parent=titlelike} + +\setbeamercolor{section in toc}{parent=structure} +\setbeamercolor{section in toc shaded}{parent=section in toc} +\setbeamercolor{section in head/foot}{parent=palette tertiary} +\setbeamercolor{section in sidebar}{parent=palette sidebar secondary} +\setbeamercolor{section in sidebar shaded}{use=section in sidebar,fg=section in sidebar.fg!40!bg} +\setbeamercolor{section number projected}{parent=item projected} + +\setbeamercolor{subsection in toc}{} +\setbeamercolor{subsection in toc shaded}{parent=subsection in toc} +\setbeamercolor{subsection in head/foot}{parent=palette secondary} +\setbeamercolor{subsection in sidebar}{parent=palette sidebar primary} +\setbeamercolor{subsection in sidebar shaded}{use=subsection in sidebar,fg=subsection in sidebar.fg!40!bg} +\setbeamercolor{subsection number projected}{parent={subitem projected}} + +\setbeamercolor{subsubsection in toc}{parent=subsection in toc} +\setbeamercolor{subsubsection in toc shaded}{parent=subsubsection in toc} +\setbeamercolor{subsubsection in head/foot}{parent=subsection in head/foot} +\setbeamercolor{subsubsection in sidebar}{parent=subsection in sidebar} +\setbeamercolor{subsubsection in sidebar shaded}{parent=subsection in sidebar shaded} +\setbeamercolor{subsubsection number projected}{parent=subsubitem projected} + +\setbeamercolor{headline}{} +\setbeamercolor{footline}{} + +\setbeamercolor{sidebar}{} +\setbeamercolor{sidebar left}{parent=sidebar} +\setbeamercolor{sidebar right}{parent=sidebar} + +\setbeamercolor{logo}{parent=palette secondary} + +\setbeamercolor{frametitle}{parent=titlelike} +\setbeamercolor{framesubtitle}{parent=frametitle} + +\setbeamercolor{frametitle right}{parent=frametitle} + +\setbeamercolor{caption}{} +\setbeamercolor{caption name}{parent=structure} + +\setbeamercolor{button}{use=local structure,bg=local structure.fg!50!bg,fg=white} +\setbeamercolor{button border}{use=button,fg=button.bg} +\setbeamercolor{navigation symbols}{use=structure,fg=structure.fg!40!bg} +\setbeamercolor{navigation symbols dimmed}{use=structure,fg=structure.fg!20!bg} +\setbeamercolor{mini frame}{parent=section in head/foot} + +% Color expressions are defined in the xcolor package +% +% Ex: Mixture of 40% green, 60% yellow: green!40!yellow +% +% The complement of any color can be obtained by prepending +% a minus sign: -green!40!yellow +% +% One can also combine up to three colors (in differing proportions) +% using the rgb command. For example, the following command combines +% 3 parts of the first color, with 2 parts of the second, and one part +% "red" +% +%\color{rgb:-green!40!yellow,3;green!40!yellow,2;red,1} +% Unfortunately, I don't think this works as an argument to setbeamercolor... +% "Orange" bg=green!30!yellow!30!red +% close to burnt orange: red!75!green +% lightgray is a color, but gray!25!white looks better +% +% A nice pair of greens +% (dark, a little too dark to be under black text...) -red!75!green!50!blue!25 +% (light) -red!75!green!50!blue!25!gray +% +% Some colors are only available via options to the xcolor package, eg. +% x11names,DarkOliveGreen4 +% svgnames, Chartreuse +% dvipsnames, ForestGreen +% +% but beamer does not seem to have any of these. +% +% The base color names which are always available are: +% black +% blue +% brown +% cyan +% darkgray +% gray +% green +% lightgray +% lime +% magenta +% olive +% orange +% pink +% purple +% red +% teal +% violet +% white +% yellow + +% From the beamer user guide, pg. 167 +% Inner color themes only specify the colors of elements used in inner +% themes. Most noticably, they specify the colors used for blocks. +% ... + +% Example color definition +% beamercolorthemedefault.sty:\definecolor{beamer@blendedblue}{rgb}{0.2,0.2,0.7} +% beamercolorthemedefault.sty:\setbeamercolor{structure}{fg=beamer@blendedblue} + +% The greens +% \setbeamercolor{block body}{bg=-red!75!green!50!blue!25!gray} +% \setbeamercolor{block title}{parent=structure,bg=-red!75!green!50!blue!25,fg=-red!75!green!50!blue!25!gray} + +%%% +% Set the block body and title background/foreground colors +%%% +% \setbeamercolor{block body}{bg=flyaddedblue} +% \setbeamercolor{block title}{bg=defblockheader,fg=flyaddedblue} + +% Purplish blues, too dark overall +% \setbeamercolor{block body}{bg=beetleaddedblue3} +% \setbeamercolor{block title}{bg=beetleaddedblue2,fg=beetleaddedblue3} + +% Very light blue greys +% 1. Not enough contrast +% \setbeamercolor{block body}{bg=deflightouter3} +% \setbeamercolor{block title}{bg=deflightouter2,fg=deflightouter3} + +% 2. Not enough contrast +% \setbeamercolor{block body}{bg=deflightouter3} +% \setbeamercolor{block title}{bg=deflightouter1,fg=deflightouter3} + +% 3. Combination of deflightouter and fly. The block bg is +% lighter than the all-beetle color scheme I previously thought was best. +% Currently I like this one the best +\setbeamercolor{block body}{bg=deflightouter3} +\setbeamercolor{block title}{bg=beetleaddedblue2,fg=deflightouter3} + +% 4. Greens. Looks like a highlighter. I don't really trust greens +% on projectors... It's almost too bright/hurts your eyes. +% \setbeamercolor{block body}{bg=defexblock} +% \setbeamercolor{block title}{bg=defaddedgreen,fg=defexblock} + +% This looks pretty good ... it's similar to the greens we had before +% but should be lighter. The blocks are just a little too "mint" colored +% though... +% \setbeamercolor{block body}{bg=defexblock} +% \setbeamercolor{block title}{bg=defexblockheader,fg=defexblock} + +% Pea Soup! +%\setbeamercolor{block body}{bg=defaddedgreen} +%\setbeamercolor{block title}{bg=defexblockheader,fg=defaddedgreen} + + +% Changing these didn't seem to do anything...I had to change the +% 'alerted text' color instead +\setbeamercolor{block body alerted}{} +\setbeamercolor{block body example}{} +\setbeamercolor{block title alerted}{parent=alerted text} +\setbeamercolor{block title example}{parent=example text} + +\setbeamercolor{item}{parent=local structure} +\setbeamercolor{subitem}{parent=item} +\setbeamercolor{subsubitem}{parent=subitem} + +\setbeamercolor{item projected}{parent=item,use=item,fg=white,bg=item.fg} +\setbeamercolor{subitem projected}{parent=item projected} +\setbeamercolor{subsubitem projected}{parent=subitem projected} + +\setbeamercolor{enumerate item}{parent=item} +\setbeamercolor{enumerate subitem}{parent=subitem} +\setbeamercolor{enumerate subsubitem}{parent=subsubitem} + +\setbeamercolor{itemize item}{parent=item} +\setbeamercolor{itemize subitem}{parent=subitem} +\setbeamercolor{itemize subsubitem}{parent=subsubitem} + +\setbeamercolor{itemize/enumerate body}{} +\setbeamercolor{itemize/enumerate subbody}{} +\setbeamercolor{itemize/enumerate subsubbody}{} + +\setbeamercolor{description item}{parent=item} + +\setbeamercolor{bibliography item}{parent=item} + +\setbeamercolor{bibliography entry author}{use=structure,fg=structure.fg} +\setbeamercolor{bibliography entry title}{use=normal text,fg=normal text.fg} +\setbeamercolor{bibliography entry location}{use=structure,fg=structure.fg!65!bg} +\setbeamercolor{bibliography entry note}{use=structure,fg=structure.fg!65!bg} + +\setbeamercolor{separation line}{} + +\setbeamercolor{upper separation line head}{parent=separation line} +\setbeamercolor{middle separation line head}{parent=separation line} +\setbeamercolor{lower separation line head}{parent=separation line} + +\setbeamercolor{upper separation line foot}{parent=separation line} +\setbeamercolor{middle separation line foot}{parent=separation line} +\setbeamercolor{lower separation line foot}{parent=separation line} + +\setbeamercolor{abstract}{} +\setbeamercolor{abstract title}{parent=structure} + +\setbeamercolor{verse}{} + +\setbeamercolor{quotation}{} +\setbeamercolor{quote}{parent=quotation} + +\setbeamercolor{page number in head/foot}{fg=fg!50!bg} + +\setbeamercolor{qed symbol}{parent=structure} + +\mode + diff --git a/my_docs/23/lmod_zoom_mtg_2023_07_11/beamercolorthemeTACC16.sty b/my_docs/23/lmod_zoom_mtg_2023_07_11/beamercolorthemeTACC16.sty deleted file mode 120000 index 58415801b..000000000 --- a/my_docs/23/lmod_zoom_mtg_2023_07_11/beamercolorthemeTACC16.sty +++ /dev/null @@ -1 +0,0 @@ -../../beamer/beamercolorthemeTACC16.sty \ No newline at end of file diff --git a/my_docs/23/lmod_zoom_mtg_2023_07_11/beamercolorthemeTACC16.sty b/my_docs/23/lmod_zoom_mtg_2023_07_11/beamercolorthemeTACC16.sty new file mode 100755 index 000000000..779dde91f --- /dev/null +++ b/my_docs/23/lmod_zoom_mtg_2023_07_11/beamercolorthemeTACC16.sty @@ -0,0 +1,192 @@ +% Copyright 2003 by Till Tantau . +% +% This program can be redistributed and/or modified under the terms +% of the GNU Public License, version 2. + +\mode + +\usepackage{textcase,regexpatch} + +\setbeamertemplate{blocks}[rounded][shadow=true] + + +\definecolor{TACCred}{RGB}{180,13,29} +\definecolor{TACCorange}{RGB}{210,104,43} +\definecolor{TACCblue}{RGB}{108, 134, 191} +\definecolor{TACCgreen}{RGB}{23,106,70} + +% I downloaded a gimp color palette from +% http://maururu.net/2007/latex-beamer-color-palette/ +% Which provides rgb values (I think) for several of the +% default beamer themes. You can open this in gimp by +% opening the Palettes dialog, right-clicking anywhere and choosing +% 'Import Palette'. A color in there called 'default added blue' +% appeared to be approximately what I wanted. It had the triple +% of values 141 145 208. If you double-click on this in the +% palette editor it gives you a bunch of information. You can't +% use these values directly to set a color...it just comes out white. +% I think definecolor is expecting something normalized by 255. Yes! + + +%%% +% Set the normal text color +%%% +\setbeamercolor{normal text}{fg=black} %,bg=white} +\setbeamercolor{example text}{fg=TACCgreen} +\setbeamercolor{alerted text}{fg=TACCorange} + + +\setbeamercolor{structure}{fg=black} +%\setbeamercolor{structure}{fg=black} + +\setbeamercolor{background canvas}{parent=normal text} +\setbeamercolor{background}{parent=background canvas} + +\setbeamercolor{palette primary}{use=structure,fg=structure.fg} +\setbeamercolor{palette secondary}{use=structure,fg=structure.fg!75!black} +\setbeamercolor{palette tertiary}{use=structure,fg=structure.fg!50!black} +\setbeamercolor{palette quaternary}{fg=black} + +\setbeamercolor{palette sidebar primary}{use=normal text,fg=normal text.fg} +\setbeamercolor{palette sidebar secondary}{use=structure,fg=structure.fg} +\setbeamercolor{palette sidebar tertiary}{use=normal text,fg=normal text.fg} +\setbeamercolor{palette sidebar quaternary}{use=structure,fg=structure.fg} + +\setbeamercolor{math text}{} +\setbeamercolor{math text inlined}{parent=math text} +\setbeamercolor{math text displayed}{parent=math text} + +\setbeamercolor{normal text in math text}{} + +\setbeamercolor{local structure}{parent=structure} + +\setbeamercolor{titlelike}{parent=structure} + +\setbeamercolor{title}{parent=titlelike} +\setbeamercolor{title in head/foot}{parent=palette quaternary} +\setbeamercolor{title in sidebar}{parent=palette sidebar quaternary} + +\setbeamercolor{subtitle}{parent=title} + +\setbeamercolor{author}{} +\setbeamercolor{author in head/foot}{parent=palette primary} +\setbeamercolor{author in sidebar}{use=palette sidebar tertiary,fg=palette sidebar tertiary.fg} + +\setbeamercolor{institute}{} +\setbeamercolor{institute in head/foot}{parent=palette tertiary} +\setbeamercolor{institute in sidebar}{use=palette sidebar tertiary,fg=palette sidebar tertiary.fg} + +\setbeamercolor{date}{} +\setbeamercolor{date in head/foot}{parent=palette secondary} +\setbeamercolor{date in sidebar}{use=palette sidebar tertiary,fg=palette sidebar tertiary.fg} + +\setbeamercolor{titlegraphic}{} + +\setbeamercolor{part name}{} +\setbeamercolor{part title}{parent=titlelike} + +\setbeamercolor{section in toc}{parent=structure} +\setbeamercolor{section in toc shaded}{parent=section in toc} +\setbeamercolor{section in head/foot}{parent=palette tertiary} +\setbeamercolor{section in sidebar}{parent=palette sidebar secondary} +\setbeamercolor{section in sidebar shaded}{use=section in sidebar,fg=section in sidebar.fg!40!bg} +\setbeamercolor{section number projected}{parent=item projected} + +\setbeamercolor{subsection in toc}{} +\setbeamercolor{subsection in toc shaded}{parent=subsection in toc} +\setbeamercolor{subsection in head/foot}{parent=palette secondary} +\setbeamercolor{subsection in sidebar}{parent=palette sidebar primary} +\setbeamercolor{subsection in sidebar shaded}{use=subsection in sidebar,fg=subsection in sidebar.fg!40!bg} +\setbeamercolor{subsection number projected}{parent={subitem projected}} + +\setbeamercolor{subsubsection in toc}{parent=subsection in toc} +\setbeamercolor{subsubsection in toc shaded}{parent=subsubsection in toc} +\setbeamercolor{subsubsection in head/foot}{parent=subsection in head/foot} +\setbeamercolor{subsubsection in sidebar}{parent=subsection in sidebar} +\setbeamercolor{subsubsection in sidebar shaded}{parent=subsection in sidebar shaded} +\setbeamercolor{subsubsection number projected}{parent=subsubitem projected} + +\setbeamercolor{headline}{} +\setbeamercolor{footline}{} + +\setbeamercolor{sidebar}{} +\setbeamercolor{sidebar left}{parent=sidebar} +\setbeamercolor{sidebar right}{parent=sidebar} + +\setbeamercolor{logo}{parent=palette secondary} + +\setbeamercolor{frametitle}{parent=titlelike} +\setbeamercolor{framesubtitle}{parent=frametitle} + +\setbeamercolor{frametitle right}{parent=frametitle} + +\setbeamercolor{caption}{} +\setbeamercolor{caption name}{parent=structure} + +\setbeamercolor{button}{use=local structure,bg=local structure.fg!50!bg,fg=white} +\setbeamercolor{button border}{use=button,fg=button.bg} +\setbeamercolor{navigation symbols}{use=structure,fg=structure.fg!40!bg} +\setbeamercolor{navigation symbols dimmed}{use=structure,fg=structure.fg!20!bg} +\setbeamercolor{mini frame}{parent=section in head/foot} + +\setbeamercolor{block body}{fg=black} +\setbeamercolor{block body alerted}{fg=black} +\setbeamercolor{block body example}{fg=black} + +\setbeamercolor{block title}{bg=TACCblue,fg=white} +\setbeamercolor{block title alerted}{bg=TACCred,fg=white} +\setbeamercolor{block title example}{bg=TACCgreen,fg=white} + +\setbeamercolor{item}{parent=local structure} +\setbeamercolor{subitem}{parent=item} +\setbeamercolor{subsubitem}{parent=subitem} + +\setbeamercolor{item projected}{parent=item,use=item,fg=black,bg=item.fg} +\setbeamercolor{subitem projected}{parent=item projected} +\setbeamercolor{subsubitem projected}{parent=subitem projected} + +\setbeamercolor{enumerate item}{parent=item} +\setbeamercolor{enumerate subitem}{parent=subitem} +\setbeamercolor{enumerate subsubitem}{parent=subsubitem} + +\setbeamercolor{itemize item}{parent=item} +\setbeamercolor{itemize subitem}{parent=subitem} +\setbeamercolor{itemize subsubitem}{parent=subsubitem} + +\setbeamercolor{itemize/enumerate body}{} +\setbeamercolor{itemize/enumerate subbody}{} +\setbeamercolor{itemize/enumerate subsubbody}{} + +\setbeamercolor{description item}{parent=item} + +\setbeamercolor{bibliography item}{parent=item} + +\setbeamercolor{bibliography entry author}{use=structure,fg=structure.fg} +\setbeamercolor{bibliography entry title}{use=normal text,fg=normal text.fg} +\setbeamercolor{bibliography entry location}{use=structure,fg=structure.fg!65!bg} +\setbeamercolor{bibliography entry note}{use=structure,fg=structure.fg!65!bg} + +\setbeamercolor{separation line}{} + +\setbeamercolor{upper separation line head}{parent=separation line} +\setbeamercolor{middle separation line head}{parent=separation line} +\setbeamercolor{lower separation line head}{parent=separation line} + +\setbeamercolor{upper separation line foot}{parent=separation line} +\setbeamercolor{middle separation line foot}{parent=separation line} +\setbeamercolor{lower separation line foot}{parent=separation line} + +\setbeamercolor{abstract}{} +\setbeamercolor{abstract title}{parent=structure} + +\setbeamercolor{verse}{} + +\setbeamercolor{quotation}{} +\setbeamercolor{quote}{parent=quotation} + +\setbeamercolor{page number in head/foot}{fg=fg!50!bg} + +\setbeamercolor{qed symbol}{parent=structure} + +\mode + diff --git a/my_docs/23/lmod_zoom_mtg_2023_07_11/beamerfontthemeTACC.sty b/my_docs/23/lmod_zoom_mtg_2023_07_11/beamerfontthemeTACC.sty deleted file mode 120000 index 78e971fb8..000000000 --- a/my_docs/23/lmod_zoom_mtg_2023_07_11/beamerfontthemeTACC.sty +++ /dev/null @@ -1 +0,0 @@ -../../beamer/beamerfontthemeTACC.sty \ No newline at end of file diff --git a/my_docs/23/lmod_zoom_mtg_2023_07_11/beamerfontthemeTACC.sty b/my_docs/23/lmod_zoom_mtg_2023_07_11/beamerfontthemeTACC.sty new file mode 100755 index 000000000..ef9ce1e5e --- /dev/null +++ b/my_docs/23/lmod_zoom_mtg_2023_07_11/beamerfontthemeTACC.sty @@ -0,0 +1,12 @@ +% Copyright 2003 by Till Tantau +% +% This program can be redistributed and/or modified under the terms +% of the GNU Public License, version 2. + +\mode + +\setbeamerfont{frametitle}{parent=structure,size=\LARGE,series=\bfseries} +\setbeamerfont{framesubtitle}{parent=frametitle,size=\small} + +\mode + \ No newline at end of file diff --git a/my_docs/23/lmod_zoom_mtg_2023_07_11/beamerfontthemeTACC16.sty b/my_docs/23/lmod_zoom_mtg_2023_07_11/beamerfontthemeTACC16.sty deleted file mode 120000 index a1f2fa5f9..000000000 --- a/my_docs/23/lmod_zoom_mtg_2023_07_11/beamerfontthemeTACC16.sty +++ /dev/null @@ -1 +0,0 @@ -../../beamer/beamerfontthemeTACC16.sty \ No newline at end of file diff --git a/my_docs/23/lmod_zoom_mtg_2023_07_11/beamerfontthemeTACC16.sty b/my_docs/23/lmod_zoom_mtg_2023_07_11/beamerfontthemeTACC16.sty new file mode 100755 index 000000000..b65271835 --- /dev/null +++ b/my_docs/23/lmod_zoom_mtg_2023_07_11/beamerfontthemeTACC16.sty @@ -0,0 +1,21 @@ +% Copyright 2003 by Till Tantau +% +% This program can be redistributed and/or modified under the terms +% of the GNU Public License, version 2. + +\mode +\setbeamerfont{title}{parent=structure,size=\LARGE,series=\bfseries} +\setbeamerfont{author}{parent=structure,size=\large, series=\normalfont} +\setbeamerfont{frametitle}{parent=structure,size=\LARGE,series=\bfseries} +\setbeamerfont{framesubtitle}{parent=frametitle,size=\small} + +%\usefonttheme{professionalfonts} % using non standard fonts for beamer +%\usefonttheme{serif} % default family is serif +%\usepackage{fontspec} +%\setmainfont{Century Gothic} + +\usepackage{fontspec} +\usepackage{libertine} + +\mode + diff --git a/my_docs/23/lmod_zoom_mtg_2023_07_11/beamerinnerthemeTACC.sty b/my_docs/23/lmod_zoom_mtg_2023_07_11/beamerinnerthemeTACC.sty deleted file mode 120000 index 8d5ae3921..000000000 --- a/my_docs/23/lmod_zoom_mtg_2023_07_11/beamerinnerthemeTACC.sty +++ /dev/null @@ -1 +0,0 @@ -../../beamer/beamerinnerthemeTACC.sty \ No newline at end of file diff --git a/my_docs/23/lmod_zoom_mtg_2023_07_11/beamerinnerthemeTACC.sty b/my_docs/23/lmod_zoom_mtg_2023_07_11/beamerinnerthemeTACC.sty new file mode 100755 index 000000000..29e2bce81 --- /dev/null +++ b/my_docs/23/lmod_zoom_mtg_2023_07_11/beamerinnerthemeTACC.sty @@ -0,0 +1,11 @@ +\mode + +\setbeamertemplate{itemize item}[circle] +\setbeamertemplate{itemize subitem}{{}--{}} +\setbeamertemplate{itemize subsubitem}[circle] +\setbeamertemplate{section in toc}{$\bullet$\hskip.5em\inserttocsection} +%\setbeamertemplate{subsection in toc}{} +\setbeamertemplate{subsubsection in toc}{} + +\mode + diff --git a/my_docs/23/lmod_zoom_mtg_2023_07_11/beamerinnerthemeTACC16.sty b/my_docs/23/lmod_zoom_mtg_2023_07_11/beamerinnerthemeTACC16.sty deleted file mode 120000 index 5955acc99..000000000 --- a/my_docs/23/lmod_zoom_mtg_2023_07_11/beamerinnerthemeTACC16.sty +++ /dev/null @@ -1 +0,0 @@ -../../beamer/beamerinnerthemeTACC16.sty \ No newline at end of file diff --git a/my_docs/23/lmod_zoom_mtg_2023_07_11/beamerinnerthemeTACC16.sty b/my_docs/23/lmod_zoom_mtg_2023_07_11/beamerinnerthemeTACC16.sty new file mode 100755 index 000000000..f7f454e1d --- /dev/null +++ b/my_docs/23/lmod_zoom_mtg_2023_07_11/beamerinnerthemeTACC16.sty @@ -0,0 +1,11 @@ +\mode + +\setbeamertemplate{itemize item}[triangle] +\setbeamertemplate{itemize subitem}[triangle] +\setbeamertemplate{itemize subsubitem}[triangle] +\setbeamertemplate{section in toc}{$\bullet$\hskip.5em\inserttocsection} +%\setbeamertemplate{subsection in toc}{} +\setbeamertemplate{subsubsection in toc}{} + +\mode + diff --git a/my_docs/23/lmod_zoom_mtg_2023_07_11/beamerouterthemeTACC.sty b/my_docs/23/lmod_zoom_mtg_2023_07_11/beamerouterthemeTACC.sty deleted file mode 120000 index da0a45d33..000000000 --- a/my_docs/23/lmod_zoom_mtg_2023_07_11/beamerouterthemeTACC.sty +++ /dev/null @@ -1 +0,0 @@ -../../beamer/beamerouterthemeTACC.sty \ No newline at end of file diff --git a/my_docs/23/lmod_zoom_mtg_2023_07_11/beamerouterthemeTACC.sty b/my_docs/23/lmod_zoom_mtg_2023_07_11/beamerouterthemeTACC.sty new file mode 100755 index 000000000..038580303 --- /dev/null +++ b/my_docs/23/lmod_zoom_mtg_2023_07_11/beamerouterthemeTACC.sty @@ -0,0 +1,196 @@ +% Copyright 2003 by Till Tantau +% +% This program can be redistributed and/or modified under the terms +% of the GNU Public License, version 2. + +\mode + +\setbeamertemplate{frametitle}[default][center] +\addtobeamertemplate{frametitle}{\vskip 4ex minus 4ex}{} + +% Here we define what appears at the bottom of each slide: the "footline". +\setbeamertemplate{footline}{% + \leavevmode% + + % Horizontal line dividing the rest of the slide from the footer? + % hrule goes all the way across... + % \hrule height.3pt% + % With \rule, you can specify the thickness + % \rule[raise-height]{width}{thickness} + \hspace{.025\textwidth}\rule{.95\textwidth}{.5pt} + + \hbox{% + % On the left half of the footer, insert the TACC logo + \begin{minipage}{.5\textwidth}% + \hskip .033\textwidth%Give horizontal space else this will set on the left edge of the slide! + % TACC logo with custom viewport! + \includegraphics[viewport=1 -1 135 35, clip=true, width=.4\textwidth]{figures/TACC_logo} + \end{minipage} + % + \begin{minipage}{.5\textwidth}% + \vskip .023\textheight% + \raggedleft% + \setlength{\rightskip}{.033\textwidth} + % + % If we are not on the first page, insert a page number + % For some reason, insertframenumber is buggy when you have fragile + % slides with verbatim environments in them... it tends to skip numbers + % for some reason! On the other hand, the pagenumber is incremented + % for *every* slide, including transition slides... + \ifnum \thepage>1 + % \insertshorttitle + \insertframenumber + % \insertframenumber/\inserttotalframenumber + % \insertpagenumber + \else % Do a phantom of whatever you do on other pages, so spacing matches + %$\phantom{\insertshorttitle}$ + $\phantom{\insertframenumber}$ + %$\phantom{\insertframenumber/\inserttotalframenumber}$ + %$\phantom{\insertpagenumber}$ + \fi + \hfill\includegraphics[width=.5\textwidth]{figures/UT_logo}% + \end{minipage}% + }% + \vskip .023\textheight% +} + + + + +\ifTACCheadernav + +\usesectionheadtemplate +{\hfill\insertsectionhead} +{\hfill\color{fg!50!bg}\insertsectionhead} + +% Head +\ifbeamer@compress + +% Here we define how the top of the frame looks, the "headline". +\setbeamertemplate{headline} +{% + \ifnum \thepage>1 + \leavevmode% + \begin{beamercolorbox}[wd=.5\paperwidth,ht=2.5ex,dp=1.125ex]{% + section in head/foot}% + \insertsectionnavigationhorizontal{.5\paperwidth}{\hskip0pt plus1filll}{}% + \end{beamercolorbox}% + \begin{beamercolorbox}[wd=.5\paperwidth,ht=2.5ex,dp=1.125ex]{% + subsection in head/foot}% + \insertsubsectionnavigationhorizontal{% + .5\paperwidth}{}{\hskip0pt plus1filll}% + \end{beamercolorbox}% + \fi %\thepage>1 +} + +\else% Not compressed + +\setbeamertemplate{headline} +{% + \ifnum \thepage>1 + \leavevmode% + \@tempdimb=2.4375ex% + \ifnum\beamer@subsectionmax<\beamer@sectionmax% + \multiply\@tempdimb by\beamer@sectionmax% + \else% + \multiply\@tempdimb by\beamer@subsectionmax% + \fi% + \ifdim\@tempdimb>0pt% + \advance\@tempdimb by 1.125ex% + \begin{beamercolorbox}[wd=.5\paperwidth,ht=\@tempdimb]{% + section in head/foot}% + \vbox to\@tempdimb{\vfil\insertsectionnavigation{.5\paperwidth}\vfil}% + \end{beamercolorbox}% + \begin{beamercolorbox}[wd=.5\paperwidth,ht=\@tempdimb]{% + subsection in head/foot}% + \vbox to\@tempdimb{\vfil\insertsubsectionnavigation{.5\paperwidth}\vfil}% + \end{beamercolorbox}% + \fi% + \fi % \thepage>1 +} + +\fi % end if compressed +\fi % TACCheadernav + + +\ifTACCheadertree + +\setbeamertemplate{headline} +{ + \begin{beamercolorbox}[wd=\paperwidth,colsep=1.5pt + ]{upper separation line head} + \end{beamercolorbox} + % + % Place short title + % + \begin{beamercolorbox}[wd=\paperwidth,ht=2.5ex,dp=1.125ex,% + leftskip=.3cm,rightskip=.3cm plus1fil]{title in head/foot} + \usebeamerfont{title in head/foot}\insertshorttitle + \end{beamercolorbox} + + % + % Place section + % + \begin{beamercolorbox}[wd=\paperwidth,ht=2.5ex,dp=1.125ex,% + leftskip=.3cm,rightskip=.3cm plus1fil]{section in head/foot} + \usebeamerfont{section in head/foot}% + %\ifbeamer@tree@showhooks + \setbox\beamer@tempbox=\hbox{\insertsectionhead}% + \ifdim\wd\beamer@tempbox>1pt% + \hskip2pt\raise1.9pt\hbox{\vrule width0.4pt height1.875ex\vrule width 5pt height0.4pt}% + \hskip1pt% + \fi% \ifdim + %\else% + %\hskip6pt% + %\fi% \ifbeamer + \insertsectionhead + \end{beamercolorbox} + +% +% Place subsection +% +\begin{beamercolorbox}[wd=\paperwidth,ht=2.5ex,dp=1.125ex,% + leftskip=.3cm,rightskip=.3cm plus1fil]{subsection in head/foot} + \usebeamerfont{subsection in head/foot}% + %\ifbeamer@tree@showhooks + \setbox\beamer@tempbox=\hbox{\insertsubsectionhead}% + \ifdim\wd\beamer@tempbox>1pt% + \hskip9.4pt\raise1.9pt\hbox{\vrule width0.4pt height1.875ex\vrule width 5pt height0.4pt}% + \hskip1pt% + \fi% \ifdim + %\else% + %\hskip12pt% + %\fi% \ifbeamer + \insertsubsectionhead +\end{beamercolorbox} + +% +% Place final separation box +% + \begin{beamercolorbox}[wd=\paperwidth,colsep=1.5pt + ]{lower separation line head} + \end{beamercolorbox} + + % + % Another matching rule which helps to frame the content + % + \hspace{.025\textwidth}\rule{.95\textwidth}{.5pt} +} +\fi % TACCheadertree + + +% The following command suppresses all navigation symbols. This is +% necessary in the TACC theme, since it overlaps where we want the +% logo to be. +\setbeamertemplate{navigation symbols}{} + +% Align the navigation symbols vertically (still overlaps our logo!) +%\setbeamertemplate{navigation symbols}[vertical]{} + +% Only places the slide-forward and slide-back symbol, but yes, +% this still overlaps our logo! +%\setbeamertemplate{navigation symbols}[only frame symbol]{} + + +\mode + diff --git a/my_docs/23/lmod_zoom_mtg_2023_07_11/beamerouterthemeTACC16.sty b/my_docs/23/lmod_zoom_mtg_2023_07_11/beamerouterthemeTACC16.sty deleted file mode 120000 index 54bd09537..000000000 --- a/my_docs/23/lmod_zoom_mtg_2023_07_11/beamerouterthemeTACC16.sty +++ /dev/null @@ -1 +0,0 @@ -../../beamer/beamerouterthemeTACC16.sty \ No newline at end of file diff --git a/my_docs/23/lmod_zoom_mtg_2023_07_11/beamerouterthemeTACC16.sty b/my_docs/23/lmod_zoom_mtg_2023_07_11/beamerouterthemeTACC16.sty new file mode 100755 index 000000000..d5e6388c7 --- /dev/null +++ b/my_docs/23/lmod_zoom_mtg_2023_07_11/beamerouterthemeTACC16.sty @@ -0,0 +1,312 @@ +% Antonio Gomez (agomez@tacc.utexas.edu) +% 4-20-17. Added option to put the footer on the right side + + + +\mode + +\usepackage{xcolor} +\usepackage{graphicx} +\usepackage{etoolbox} + + + +% This theme accepts the "rightfooter" option +% When used, it will put the TACC logo at the bottom of the slide on the right side +% By default, it goes to the left + +\xifaspectratio{ + {169} { + \pgfdeclareimage[width=\paperwidth]{titlebackground}{./figures/master169.jpg} + \if@rightfooterOption + \pgfdeclareimage[width=\paperwidth]{background}{./figures/secondary_right169.jpg} +\else + \pgfdeclareimage[width=\paperwidth]{background}{./figures/secondary169.jpg} +\fi +} +}[ +\pgfdeclareimage[width=\paperwidth]{titlebackground}{./figures/master.jpg} + \if@rightfooterOption + \pgfdeclareimage[width=\paperwidth]{background}{./figures/secondary_right.jpg} +\else + \pgfdeclareimage[width=\paperwidth]{background}{./figures/secondary.jpg} +\fi +] + +\setbeamertemplate{background canvas}{% +\xifaspectratio{ + {169} { + \ifnum\c@framenumber=1 % + \begin{picture}(0,0) + \put(-3,-256){% + \pgfuseimage{titlebackground} + } + \end{picture} + \else% + \begin{picture}(0,0) + \put(-3,-260){% + \pgfuseimage{background} + } + \end{picture} + \fi + } + {43} { + \ifnum\c@framenumber=1 % + \begin{picture}(0,0) + \put(-4,-274){% + \pgfuseimage{titlebackground} + } + \end{picture} + \else% + \begin{picture}(0,0) + \put(-4,-274){% + \pgfuseimage{background} + } + \end{picture} + \fi + } +} +} + + + +%\setbeamertemplate{background canvas}{% +% % On title page +% \ifnum\c@framenumber=1 % +% \begin{picture}(0,0) +% \put(0,-253){% +% \pgfuseimage{titlebackground} +% } +% \end{picture} +% +% \else% +% \xifaspectratio{ +% {169} { +% % Other frames background +% \begin{picture}(0,0) +% \put(-4,-260){% +% \pgfuseimage{background} +% } +% \end{picture} +% } +% }[ +% % Other frames background +% \begin{picture}(0,0) +% \put(-4,-274){% +% \pgfuseimage{background} +% } +% \end{picture} +% ] +% \fi% +%} + + +\setbeamertemplate{title page}{ +\vspace{40pt} +\begin{center} +\usebeamerfont{title} {\huge \inserttitle}\par +\vspace{4ex} +\usebeamerfont{author} { + \insertauthor +}\par +\vspace{2ex} +\usebeamerfont{institute}{ + \insertinstitute +} \par +\vspace{2ex} +\usebeamerfont{date}{ + \insertdate +} +\end{center} +} + + +\setbeamertemplate{frametitle}[default][center] +\setbeamertemplate{frametitle}{ + \makeatletter + \regexpatchcmd{\insertframetitle} + {(\c{usebeamertemplate}.*)\c{fi}} + {\c{NoCaseChange}\cB\{\1\cE\}\c{fi}} + {}{}% + \makeatother + \vskip1ex + \insertframetitle +} + +% Here we define what appears at the bottom of each slide: the "footline". +\setbeamertemplate{footline}{% + \leavevmode% + + % Horizontal line dividing the rest of the slide from the footer? + % hrule goes all the way across... + % \hrule height.3pt% + % With \rule, you can specify the thickness + % \rule[raise-height]{width}{thickness} + % \hspace{.025\textwidth}\rule{.95\textwidth}{.5pt} + + \hbox{% + \ifnum \thepage>1 + \if@rightfooterOption + \begin{minipage}{.2\textwidth}% + \hskip .05\textwidth%Give horizontal space else this will set on the left edge of the slide! + \end{minipage} + \else + \begin{minipage}{.4\textwidth}% + \hskip .05\textwidth%Give horizontal space else this will set on the left edge of the slide! + \end{minipage} + \fi + + + \begin{minipage}{\textwidth}% + % \vskip .023\textheight% + \raggedleft% + \setlength{\rightskip}{\textwidth} + \if@rightfooterOption + \hbox{% + \begin{beamercolorbox}[wd=0.7\textwidth,ht=2.25ex,dp=1ex,left]{author in head/foot}% + \insertshorttitle{} \hskip .01\textwidth | \hskip .01\textwidth \insertdate{} \hskip .01\textwidth | \hskip .01\textwidth \insertframenumber{} + \end{beamercolorbox}% + } + \else + \hbox{% + \begin{beamercolorbox}[wd=0.5\textwidth,ht=2.25ex,dp=1ex,left]{author in head/foot}% + \insertshorttitle{} \hskip .01\textwidth | \hskip .01\textwidth \insertdate{} \hskip .01\textwidth | \hskip .01\textwidth \insertframenumber{} + \end{beamercolorbox}% + } + \fi + + \end{minipage}% + \begin{minipage}{.05\textwidth}% + \end{minipage}% + \fi %\thepage>1 + }% + \vskip .023\textheight% + +} + + + + +\ifTACCheadernav + +\usesectionheadtemplate +{\hfill\insertsectionhead} +{\hfill\color{fg!50!bg}\insertsectionhead} + +% Head +\ifbeamer@compress + +% Here we define how the top of the frame looks, the "headline". +\setbeamertemplate{headline} +{% + \ifnum \thepage>1 + \leavevmode% + \begin{beamercolorbox}[wd=.5\paperwidth,ht=2.5ex,dp=1.125ex]{% + section in head/foot}% + \insertsectionnavigationhorizontal{.5\paperwidth}{\hskip0pt plus1filll}{}% + \end{beamercolorbox}% + \begin{beamercolorbox}[wd=.5\paperwidth,ht=2.5ex,dp=1.125ex]{% + subsection in head/foot}% + \insertsubsectionnavigationhorizontal{% + .5\paperwidth}{}{\hskip0pt plus1filll}% + \end{beamercolorbox}% + \fi %\thepage>1 +} + +\else% Not compressed + +\setbeamertemplate{headline} +{% + \ifnum \thepage>1 + \leavevmode% + \@tempdimb=2.4375ex% + \ifnum\beamer@subsectionmax<\beamer@sectionmax% + \multiply\@tempdimb by\beamer@sectionmax% + \else% + \multiply\@tempdimb by\beamer@subsectionmax% + \fi% + \ifdim\@tempdimb>0pt% + \advance\@tempdimb by 1.125ex% + \begin{beamercolorbox}[wd=.5\paperwidth,ht=\@tempdimb]{% + section in head/foot}% + \vbox to\@tempdimb{\vfil\insertsectionnavigation{.5\paperwidth}\vfil}% + \end{beamercolorbox}% + \begin{beamercolorbox}[wd=.5\paperwidth,ht=\@tempdimb]{% + subsection in head/foot}% + \vbox to\@tempdimb{\vfil\insertsubsectionnavigation{.5\paperwidth}\vfil}% + \end{beamercolorbox}% + \fi% + \fi % \thepage>1 +} + +\fi % end if compressed +\fi % TACCheadernav + + +\ifTACCheadertree + +\setbeamertemplate{headline} +{ + \begin{beamercolorbox}[wd=\paperwidth,colsep=1.5pt]{upper separation line head} + \end{beamercolorbox} + % + % Place short title + % + \begin{beamercolorbox}[wd=\paperwidth,ht=2.5ex,dp=1.125ex,% + leftskip=.3cm,rightskip=.3cm plus1fil]{title in head/foot} + \usebeamerfont{title in head/foot}\insertshorttitle + \end{beamercolorbox} + + % + % Place section + % + \begin{beamercolorbox}[wd=\paperwidth,ht=2.5ex,dp=1.125ex,% + leftskip=.3cm,rightskip=.3cm plus1fil]{section in head/foot} + \usebeamerfont{section in head/foot}% + %\ifbeamer@tree@showhooks + \setbox\beamer@tempbox=\hbox{\insertsectionhead}% + \ifdim\wd\beamer@tempbox>1pt% + \hskip2pt\raise1.9pt\hbox{\vrule width0.4pt height1.875ex\vrule width 5pt height0.4pt}% + \hskip1pt% + \fi + \insertsectionhead + \end{beamercolorbox} + +% +% Place subsection +% +\begin{beamercolorbox}[wd=\paperwidth,ht=2.5ex,dp=1.125ex,% + leftskip=.3cm,rightskip=.3cm plus1fil]{subsection in head/foot} + \usebeamerfont{subsection in head/foot}% + %\ifbeamer@tree@showhooks + \setbox\beamer@tempbox=\hbox{\insertsubsectionhead}% + \ifdim\wd\beamer@tempbox>1pt% + \hskip9.4pt\raise1.9pt\hbox{\vrule width0.4pt height1.875ex\vrule width 5pt height0.4pt}% + \hskip1pt% + \fi + \insertsubsectionhead +\end{beamercolorbox} + +% +% Place final separation box +% + \begin{beamercolorbox}[wd=\paperwidth,colsep=1.5pt + ]{lower separation line head} + \end{beamercolorbox} + + % + % Another matching rule which helps to frame the content + % + \hspace{.025\textwidth}\rule{.95\textwidth}{.5pt} +} +\fi % TACCheadertree + + +% The following command suppresses all navigation symbols. This is +% necessary in the TACC theme, since it overlaps where we want the +% logo to be. +\setbeamertemplate{navigation symbols}{} + + +\mode + diff --git a/my_docs/23/lmod_zoom_mtg_2023_07_11/beamerthemeTACC.sty b/my_docs/23/lmod_zoom_mtg_2023_07_11/beamerthemeTACC.sty deleted file mode 120000 index 5c339abd4..000000000 --- a/my_docs/23/lmod_zoom_mtg_2023_07_11/beamerthemeTACC.sty +++ /dev/null @@ -1 +0,0 @@ -../../beamer/beamerthemeTACC.sty \ No newline at end of file diff --git a/my_docs/23/lmod_zoom_mtg_2023_07_11/beamerthemeTACC.sty b/my_docs/23/lmod_zoom_mtg_2023_07_11/beamerthemeTACC.sty new file mode 100755 index 000000000..c6a1b1269 --- /dev/null +++ b/my_docs/23/lmod_zoom_mtg_2023_07_11/beamerthemeTACC.sty @@ -0,0 +1,26 @@ +%% TACC theme for beamer + +\newif\ifTACCheadernav +\DeclareOption{headernav}{\global\TACCheadernavtrue} + +\newif\ifTACCheadertree +\DeclareOption{headertree}{\global\TACCheadertreetrue} +\ProcessOptions + +\mode + +\usefonttheme{TACC} +\usecolortheme{TACC} +\useinnertheme{TACC} +\useoutertheme{TACC} + +\mode + + +\newcommand{\event}[1]{% + \makeatletter% + \def\TACC@eventname{#1}% + \makeatother} + +\newcommand{\sectionframe}[1]{\section{#1}\frame{\Large\textbf{#1}}} +\newcommand{\subsectionframe}[1]{\subsection{#1}\frame{\large\textbf{#1}}} diff --git a/my_docs/23/lmod_zoom_mtg_2023_07_11/beamerthemeTACC16.sty b/my_docs/23/lmod_zoom_mtg_2023_07_11/beamerthemeTACC16.sty deleted file mode 120000 index 7a9d4d296..000000000 --- a/my_docs/23/lmod_zoom_mtg_2023_07_11/beamerthemeTACC16.sty +++ /dev/null @@ -1 +0,0 @@ -../../beamer/beamerthemeTACC16.sty \ No newline at end of file diff --git a/my_docs/23/lmod_zoom_mtg_2023_07_11/beamerthemeTACC16.sty b/my_docs/23/lmod_zoom_mtg_2023_07_11/beamerthemeTACC16.sty new file mode 100755 index 000000000..b522d0207 --- /dev/null +++ b/my_docs/23/lmod_zoom_mtg_2023_07_11/beamerthemeTACC16.sty @@ -0,0 +1,61 @@ +%% TACC theme for beamer + + +\newif\if@rightfooterOption +\@rightfooterOptionfalse +\DeclareOption{rightfooter}{\@rightfooterOptiontrue} +\ProcessOptions + + +\newif\ifTACCheadernav +\DeclareOption{headernav}{\global\TACCheadernavtrue} + +\newif\ifTACCheadertree +\DeclareOption{headertree}{\global\TACCheadertreetrue} +\ProcessOptions + +\usepackage{xparse} +\ExplSyntaxOn +\NewDocumentCommand{\ifaspectratio}{mmm} + { + % Recover the option from those passed to the class + \keys_set:nf { zunbeltz/beameroptions } { \use:c { opt@beamer.cls } } + \str_if_eq:nVTF { #1 } \l_zunbeltz_aspectratio_tl { #2 } { #3 } + } +\NewDocumentCommand{\xifaspectratio}{mO{}} + { + % Recover the option from those passed to the class + \keys_set:nf { zunbeltz/beameroptions } { \use:c { opt@beamer.cls } } + \str_case:VnF \l_zunbeltz_aspectratio_tl { #1 } { #2 } + } +% We need to define only one key, the other are treated as `unknown' +\keys_define:nn { zunbeltz/beameroptions } + { + aspectratio .tl_set:N = \l_zunbeltz_aspectratio_tl, + aspectratio .initial:n = 43, + unknown .code:n = {}, + } + +% Generate the variants we need +\cs_generate_variant:Nn \keys_set:nn { nf } +\cs_generate_variant:Nn \str_if_eq:nnTF { nV } +\cs_generate_variant:Nn \str_case:nnF { V } +\ExplSyntaxOff + +\mode + +\usefonttheme{TACC16} +\useinnertheme{TACC16} +\useoutertheme{TACC16} +\usecolortheme{TACC16} + +\mode + + +\newcommand{\event}[1]{% + \makeatletter% + \def\TACC@eventname{#1}% + \makeatother} + +\newcommand{\sectionframe}[1]{\section{#1}\frame{\Large\textbf{#1}}} +\newcommand{\subsectionframe}[1]{\subsection{#1}\frame{\large\textbf{#1}}} diff --git a/my_docs/23/lmod_zoom_mtg_2023_07_11/figures b/my_docs/23/lmod_zoom_mtg_2023_07_11/figures deleted file mode 120000 index ddafd8974..000000000 --- a/my_docs/23/lmod_zoom_mtg_2023_07_11/figures +++ /dev/null @@ -1 +0,0 @@ -../../beamer/figures \ No newline at end of file diff --git a/my_docs/23/lmod_zoom_mtg_2023_07_11/figures/TACC_logo.pdf b/my_docs/23/lmod_zoom_mtg_2023_07_11/figures/TACC_logo.pdf new file mode 100755 index 000000000..c018a20cb Binary files /dev/null and b/my_docs/23/lmod_zoom_mtg_2023_07_11/figures/TACC_logo.pdf differ diff --git a/my_docs/23/lmod_zoom_mtg_2023_07_11/figures/UT_logo.pdf b/my_docs/23/lmod_zoom_mtg_2023_07_11/figures/UT_logo.pdf new file mode 100755 index 000000000..d5b42e752 Binary files /dev/null and b/my_docs/23/lmod_zoom_mtg_2023_07_11/figures/UT_logo.pdf differ diff --git a/my_docs/23/lmod_zoom_mtg_2023_07_11/figures/cc.png b/my_docs/23/lmod_zoom_mtg_2023_07_11/figures/cc.png new file mode 100644 index 000000000..8a532ff8f Binary files /dev/null and b/my_docs/23/lmod_zoom_mtg_2023_07_11/figures/cc.png differ diff --git a/my_docs/23/lmod_zoom_mtg_2023_07_11/figures/isa.png b/my_docs/23/lmod_zoom_mtg_2023_07_11/figures/isa.png new file mode 100644 index 000000000..f95d985e7 Binary files /dev/null and b/my_docs/23/lmod_zoom_mtg_2023_07_11/figures/isa.png differ diff --git a/my_docs/23/lmod_zoom_mtg_2023_07_11/figures/master.jpg b/my_docs/23/lmod_zoom_mtg_2023_07_11/figures/master.jpg new file mode 100644 index 000000000..f5c56c04a Binary files /dev/null and b/my_docs/23/lmod_zoom_mtg_2023_07_11/figures/master.jpg differ diff --git a/my_docs/23/lmod_zoom_mtg_2023_07_11/figures/master169.jpg b/my_docs/23/lmod_zoom_mtg_2023_07_11/figures/master169.jpg new file mode 100644 index 000000000..b215776eb Binary files /dev/null and b/my_docs/23/lmod_zoom_mtg_2023_07_11/figures/master169.jpg differ diff --git a/my_docs/23/lmod_zoom_mtg_2023_07_11/figures/master169.png b/my_docs/23/lmod_zoom_mtg_2023_07_11/figures/master169.png new file mode 100644 index 000000000..bc5c0ed12 Binary files /dev/null and b/my_docs/23/lmod_zoom_mtg_2023_07_11/figures/master169.png differ diff --git a/my_docs/23/lmod_zoom_mtg_2023_07_11/figures/secondary.jpg b/my_docs/23/lmod_zoom_mtg_2023_07_11/figures/secondary.jpg new file mode 100644 index 000000000..d905a95c9 Binary files /dev/null and b/my_docs/23/lmod_zoom_mtg_2023_07_11/figures/secondary.jpg differ diff --git a/my_docs/23/lmod_zoom_mtg_2023_07_11/figures/secondary169.jpg b/my_docs/23/lmod_zoom_mtg_2023_07_11/figures/secondary169.jpg new file mode 100644 index 000000000..4eb017957 Binary files /dev/null and b/my_docs/23/lmod_zoom_mtg_2023_07_11/figures/secondary169.jpg differ diff --git a/my_docs/23/lmod_zoom_mtg_2023_07_11/figures/secondary169.png b/my_docs/23/lmod_zoom_mtg_2023_07_11/figures/secondary169.png new file mode 100644 index 000000000..cb9060a56 Binary files /dev/null and b/my_docs/23/lmod_zoom_mtg_2023_07_11/figures/secondary169.png differ diff --git a/my_docs/23/lmod_zoom_mtg_2023_07_11/figures/secondary_right.jpg b/my_docs/23/lmod_zoom_mtg_2023_07_11/figures/secondary_right.jpg new file mode 100644 index 000000000..f25f93a58 Binary files /dev/null and b/my_docs/23/lmod_zoom_mtg_2023_07_11/figures/secondary_right.jpg differ diff --git a/my_docs/23/lmod_zoom_mtg_2023_07_11/figures/secondary_right169.jpg b/my_docs/23/lmod_zoom_mtg_2023_07_11/figures/secondary_right169.jpg new file mode 100644 index 000000000..567a1078f Binary files /dev/null and b/my_docs/23/lmod_zoom_mtg_2023_07_11/figures/secondary_right169.jpg differ diff --git a/my_docs/23/lmod_zoom_mtg_2023_07_11/themes b/my_docs/23/lmod_zoom_mtg_2023_07_11/themes deleted file mode 120000 index a98530730..000000000 --- a/my_docs/23/lmod_zoom_mtg_2023_07_11/themes +++ /dev/null @@ -1 +0,0 @@ -../../beamer/themes \ No newline at end of file diff --git a/my_docs/23/lmod_zoom_mtg_2023_07_11/themes/beamercolorthemeTACC16.sty b/my_docs/23/lmod_zoom_mtg_2023_07_11/themes/beamercolorthemeTACC16.sty new file mode 100644 index 000000000..248ae8cb6 --- /dev/null +++ b/my_docs/23/lmod_zoom_mtg_2023_07_11/themes/beamercolorthemeTACC16.sty @@ -0,0 +1,193 @@ +% Copyright 2003 by Till Tantau . +% +% This program can be redistributed and/or modified under the terms +% of the GNU Public License, version 2. + +\mode + +\usepackage{textcase,regexpatch} + +\setbeamertemplate{blocks}[rounded][shadow=true] + + +\definecolor{TACCred}{RGB}{180,13,29} +\definecolor{TACCorange}{RGB}{210,104,43} +\definecolor{TACCblue}{RGB}{21,77,122} +%\definecolor{TACCgreen}{RGB}{30,134,104} +\definecolor{TACCgreen}{RGB}{49,168,51} + +% I downloaded a gimp color palette from +% http://maururu.net/2007/latex-beamer-color-palette/ +% Which provides rgb values (I think) for several of the +% default beamer themes. You can open this in gimp by +% opening the Palettes dialog, right-clicking anywhere and choosing +% 'Import Palette'. A color in there called 'default added blue' +% appeared to be approximately what I wanted. It had the triple +% of values 141 145 208. If you double-click on this in the +% palette editor it gives you a bunch of information. You can't +% use these values directly to set a color...it just comes out white. +% I think definecolor is expecting something normalized by 255. Yes! + + +%%% +% Set the normal text color +%%% +\setbeamercolor{normal text}{fg=black} %,bg=white} +\setbeamercolor{example text}{fg=TACCgreen} +\setbeamercolor{alerted text}{fg=TACCorange} + + +\setbeamercolor{structure}{fg=black} +%\setbeamercolor{structure}{fg=black} + +\setbeamercolor{background canvas}{parent=normal text} +\setbeamercolor{background}{parent=background canvas} + +\setbeamercolor{palette primary}{use=structure,fg=structure.fg} +\setbeamercolor{palette secondary}{use=structure,fg=structure.fg!75!black} +\setbeamercolor{palette tertiary}{use=structure,fg=structure.fg!50!black} +\setbeamercolor{palette quaternary}{fg=black} + +\setbeamercolor{palette sidebar primary}{use=normal text,fg=normal text.fg} +\setbeamercolor{palette sidebar secondary}{use=structure,fg=structure.fg} +\setbeamercolor{palette sidebar tertiary}{use=normal text,fg=normal text.fg} +\setbeamercolor{palette sidebar quaternary}{use=structure,fg=structure.fg} + +\setbeamercolor{math text}{} +\setbeamercolor{math text inlined}{parent=math text} +\setbeamercolor{math text displayed}{parent=math text} + +\setbeamercolor{normal text in math text}{} + +\setbeamercolor{local structure}{parent=structure} + +\setbeamercolor{titlelike}{parent=structure} + +\setbeamercolor{title}{parent=titlelike} +\setbeamercolor{title in head/foot}{parent=palette quaternary} +\setbeamercolor{title in sidebar}{parent=palette sidebar quaternary} + +\setbeamercolor{subtitle}{parent=title} + +\setbeamercolor{author}{} +\setbeamercolor{author in head/foot}{parent=palette primary} +\setbeamercolor{author in sidebar}{use=palette sidebar tertiary,fg=palette sidebar tertiary.fg} + +\setbeamercolor{institute}{} +\setbeamercolor{institute in head/foot}{parent=palette tertiary} +\setbeamercolor{institute in sidebar}{use=palette sidebar tertiary,fg=palette sidebar tertiary.fg} + +\setbeamercolor{date}{} +\setbeamercolor{date in head/foot}{parent=palette secondary} +\setbeamercolor{date in sidebar}{use=palette sidebar tertiary,fg=palette sidebar tertiary.fg} + +\setbeamercolor{titlegraphic}{} + +\setbeamercolor{part name}{} +\setbeamercolor{part title}{parent=titlelike} + +\setbeamercolor{section in toc}{parent=structure} +\setbeamercolor{section in toc shaded}{parent=section in toc} +\setbeamercolor{section in head/foot}{parent=palette tertiary} +\setbeamercolor{section in sidebar}{parent=palette sidebar secondary} +\setbeamercolor{section in sidebar shaded}{use=section in sidebar,fg=section in sidebar.fg!40!bg} +\setbeamercolor{section number projected}{parent=item projected} + +\setbeamercolor{subsection in toc}{} +\setbeamercolor{subsection in toc shaded}{parent=subsection in toc} +\setbeamercolor{subsection in head/foot}{parent=palette secondary} +\setbeamercolor{subsection in sidebar}{parent=palette sidebar primary} +\setbeamercolor{subsection in sidebar shaded}{use=subsection in sidebar,fg=subsection in sidebar.fg!40!bg} +\setbeamercolor{subsection number projected}{parent={subitem projected}} + +\setbeamercolor{subsubsection in toc}{parent=subsection in toc} +\setbeamercolor{subsubsection in toc shaded}{parent=subsubsection in toc} +\setbeamercolor{subsubsection in head/foot}{parent=subsection in head/foot} +\setbeamercolor{subsubsection in sidebar}{parent=subsection in sidebar} +\setbeamercolor{subsubsection in sidebar shaded}{parent=subsection in sidebar shaded} +\setbeamercolor{subsubsection number projected}{parent=subsubitem projected} + +\setbeamercolor{headline}{} +\setbeamercolor{footline}{} + +\setbeamercolor{sidebar}{} +\setbeamercolor{sidebar left}{parent=sidebar} +\setbeamercolor{sidebar right}{parent=sidebar} + +\setbeamercolor{logo}{parent=palette secondary} + +\setbeamercolor{frametitle}{parent=titlelike} +\setbeamercolor{framesubtitle}{parent=frametitle} + +\setbeamercolor{frametitle right}{parent=frametitle} + +\setbeamercolor{caption}{} +\setbeamercolor{caption name}{parent=structure} + +\setbeamercolor{button}{use=local structure,bg=local structure.fg!50!bg,fg=white} +\setbeamercolor{button border}{use=button,fg=button.bg} +\setbeamercolor{navigation symbols}{use=structure,fg=structure.fg!40!bg} +\setbeamercolor{navigation symbols dimmed}{use=structure,fg=structure.fg!20!bg} +\setbeamercolor{mini frame}{parent=section in head/foot} + +\setbeamercolor{block body}{fg=black} +\setbeamercolor{block body alerted}{fg=black} +\setbeamercolor{block body example}{fg=black} + +\setbeamercolor{block title}{bg=TACCblue,fg=white} +\setbeamercolor{block title alerted}{bg=TACCred,fg=white} +\setbeamercolor{block title example}{bg=TACCgreen,fg=white} + +\setbeamercolor{item}{parent=local structure} +\setbeamercolor{subitem}{parent=item} +\setbeamercolor{subsubitem}{parent=subitem} + +\setbeamercolor{item projected}{parent=item,use=item,fg=black,bg=item.fg} +\setbeamercolor{subitem projected}{parent=item projected} +\setbeamercolor{subsubitem projected}{parent=subitem projected} + +\setbeamercolor{enumerate item}{parent=item} +\setbeamercolor{enumerate subitem}{parent=subitem} +\setbeamercolor{enumerate subsubitem}{parent=subsubitem} + +\setbeamercolor{itemize item}{parent=item} +\setbeamercolor{itemize subitem}{parent=subitem} +\setbeamercolor{itemize subsubitem}{parent=subsubitem} + +\setbeamercolor{itemize/enumerate body}{} +\setbeamercolor{itemize/enumerate subbody}{} +\setbeamercolor{itemize/enumerate subsubbody}{} + +\setbeamercolor{description item}{parent=item} + +\setbeamercolor{bibliography item}{parent=item} + +\setbeamercolor{bibliography entry author}{use=structure,fg=structure.fg} +\setbeamercolor{bibliography entry title}{use=normal text,fg=normal text.fg} +\setbeamercolor{bibliography entry location}{use=structure,fg=structure.fg!65!bg} +\setbeamercolor{bibliography entry note}{use=structure,fg=structure.fg!65!bg} + +\setbeamercolor{separation line}{} + +\setbeamercolor{upper separation line head}{parent=separation line} +\setbeamercolor{middle separation line head}{parent=separation line} +\setbeamercolor{lower separation line head}{parent=separation line} + +\setbeamercolor{upper separation line foot}{parent=separation line} +\setbeamercolor{middle separation line foot}{parent=separation line} +\setbeamercolor{lower separation line foot}{parent=separation line} + +\setbeamercolor{abstract}{} +\setbeamercolor{abstract title}{parent=structure} + +\setbeamercolor{verse}{} + +\setbeamercolor{quotation}{} +\setbeamercolor{quote}{parent=quotation} + +\setbeamercolor{page number in head/foot}{fg=fg!50!bg} + +\setbeamercolor{qed symbol}{parent=structure} + +\mode + diff --git a/my_docs/23/lmod_zoom_mtg_2023_07_11/themes/beamerfontthemeTACC16.sty b/my_docs/23/lmod_zoom_mtg_2023_07_11/themes/beamerfontthemeTACC16.sty new file mode 100644 index 000000000..d0fc325cc --- /dev/null +++ b/my_docs/23/lmod_zoom_mtg_2023_07_11/themes/beamerfontthemeTACC16.sty @@ -0,0 +1,21 @@ +% Copyright 2003 by Till Tantau +% +% This program can be redistributed and/or modified under the terms +% of the GNU Public License, version 2. + +\mode +\setbeamerfont{title}{parent=structure,size=\LARGE,series=\bfseries} +\setbeamerfont{author}{parent=structure,size=\large, series=\normalfont} +\setbeamerfont{frametitle}{parent=structure,size=\LARGE,series=\bfseries} +\setbeamerfont{framesubtitle}{parent=frametitle,size=\small} + +%\usefonttheme{professionalfonts} % using non standard fonts for beamer +%\usefonttheme{serif} % default family is serif +%\usepackage{fontspec} +%\setmainfont{Century Gothic} + +%\usepackage{fontspec} +\usepackage{libertine} + +\mode + diff --git a/my_docs/23/lmod_zoom_mtg_2023_07_11/themes/beamerinnerthemeTACC16.sty b/my_docs/23/lmod_zoom_mtg_2023_07_11/themes/beamerinnerthemeTACC16.sty new file mode 100644 index 000000000..f7f454e1d --- /dev/null +++ b/my_docs/23/lmod_zoom_mtg_2023_07_11/themes/beamerinnerthemeTACC16.sty @@ -0,0 +1,11 @@ +\mode + +\setbeamertemplate{itemize item}[triangle] +\setbeamertemplate{itemize subitem}[triangle] +\setbeamertemplate{itemize subsubitem}[triangle] +\setbeamertemplate{section in toc}{$\bullet$\hskip.5em\inserttocsection} +%\setbeamertemplate{subsection in toc}{} +\setbeamertemplate{subsubsection in toc}{} + +\mode + diff --git a/my_docs/23/lmod_zoom_mtg_2023_07_11/themes/beamerouterthemeTACC16-169.sty b/my_docs/23/lmod_zoom_mtg_2023_07_11/themes/beamerouterthemeTACC16-169.sty new file mode 100644 index 000000000..c62f9ed04 --- /dev/null +++ b/my_docs/23/lmod_zoom_mtg_2023_07_11/themes/beamerouterthemeTACC16-169.sty @@ -0,0 +1,247 @@ +% Copyright 2003 by Till Tantau +% +% This program can be redistributed and/or modified under the terms +% of the GNU Public License, version 2. + +\mode + +\usepackage{xcolor} +\usepackage{graphicx} +\usepackage{etoolbox} + +\pgfdeclareimage[width=\paperwidth]{titlebackground}{./figures/master169.png} +\pgfdeclareimage[width=\paperwidth]{background}{./figures/secondary169.png} + +\setbeamertemplate{background canvas}{% + \ifnum\c@framenumber=1% + \begin{picture}(0,0) + \put(-0.15,-250){% + \pgfuseimage{titlebackground} + } + %\put(0,-130.7){% + + %\begin{minipage}[b][45mm][t]{\textwidth}%{226mm} + %\begin{center} + % \usebeamerfont{title}{\MakeTextUppercase{\inserttitle}\par} + %\vspace{2ex} + %\usebeamerfont{author}{\insertauthor} + % \end{center} + %\end{minipage} + %} + \end{picture} + % On title page + \else% + % Other frames background + \begin{picture}(0,0) + \put(-0.15,-255.55){% + \pgfuseimage{background} + } + \end{picture} + \fi% +} + + +\setbeamertemplate{title page}{ +\vspace{40pt} +\begin{center} +\usebeamerfont{title} {\huge \inserttitle}\par +\vspace{4ex} +\usebeamerfont{author} { + \insertauthor +}\par +\vspace{2ex} +\usebeamerfont{institute}{ + \insertinstitute +} \par +\vspace{2ex} +\usebeamerfont{date}{ + \insertdate +} +\end{center} +} + + +\setbeamertemplate{frametitle}[default][center] +\setbeamertemplate{frametitle}{ + \makeatletter + \regexpatchcmd{\insertframetitle} + {(\c{usebeamertemplate}.*)\c{fi}} + {\c{NoCaseChange}\cB\{\1\cE\}\c{fi}} + {}{}% + \makeatother + \vskip1ex + \insertframetitle +} + +% Here we define what appears at the bottom of each slide: the "footline". +\setbeamertemplate{footline}{% + \leavevmode% + + % Horizontal line dividing the rest of the slide from the footer? + % hrule goes all the way across... + % \hrule height.3pt% + % With \rule, you can specify the thickness + % \rule[raise-height]{width}{thickness} + % \hspace{.025\textwidth}\rule{.95\textwidth}{.5pt} + + \hbox{% + \ifnum \thepage>1 + % On the left half of the footer, insert the TACC of + \begin{minipage}{.2\textwidth}% + \hskip .05\textwidth%Give horizontal space else this will set on the left edge of the slide! + % \includegraphics[width=.8\textwidth]{TACC_logo.png} + \end{minipage} + + + \begin{minipage}{\textwidth}% + % \vskip .023\textheight% + \raggedleft% + \setlength{\rightskip}{\textwidth} + \hbox{% + \begin{beamercolorbox}[wd=0.7\textwidth,ht=2.25ex,dp=1ex,left]{author in head/foot}% + \insertshorttitle{} \hskip .01\textwidth | \hskip .01\textwidth \insertdate{} \hskip .01\textwidth | \hskip .01\textwidth \insertframenumber{} + \end{beamercolorbox}% + } + + % + % If we are not on the first page, insert a page number + % For some reason, insertframenumber is buggy when you have fragile + % slides with verbatim environments in them... it tends to skip numbers + % for some reason! On the other hand, the pagenumber is incremented + % for *every* slide, including transition slides... + % \hfill\includegraphics[width=\textwidth]{tacc_ut.png} + \end{minipage}% + \begin{minipage}{.05\textwidth}% + \end{minipage}% + \fi %\thepage>1 + }% + \vskip .023\textheight% + +} + + + + +\ifTACCheadernav + +\usesectionheadtemplate +{\hfill\insertsectionhead} +{\hfill\color{fg!50!bg}\insertsectionhead} + +% Head +\ifbeamer@compress + +% Here we define how the top of the frame looks, the "headline". +\setbeamertemplate{headline} +{% + \ifnum \thepage>1 + \leavevmode% + \begin{beamercolorbox}[wd=.5\paperwidth,ht=2.5ex,dp=1.125ex]{% + section in head/foot}% + \insertsectionnavigationhorizontal{.5\paperwidth}{\hskip0pt plus1filll}{}% + \end{beamercolorbox}% + \begin{beamercolorbox}[wd=.5\paperwidth,ht=2.5ex,dp=1.125ex]{% + subsection in head/foot}% + \insertsubsectionnavigationhorizontal{% + .5\paperwidth}{}{\hskip0pt plus1filll}% + \end{beamercolorbox}% + \fi %\thepage>1 +} + +\else% Not compressed + +\setbeamertemplate{headline} +{% + \ifnum \thepage>1 + \leavevmode% + \@tempdimb=2.4375ex% + \ifnum\beamer@subsectionmax<\beamer@sectionmax% + \multiply\@tempdimb by\beamer@sectionmax% + \else% + \multiply\@tempdimb by\beamer@subsectionmax% + \fi% + \ifdim\@tempdimb>0pt% + \advance\@tempdimb by 1.125ex% + \begin{beamercolorbox}[wd=.5\paperwidth,ht=\@tempdimb]{% + section in head/foot}% + \vbox to\@tempdimb{\vfil\insertsectionnavigation{.5\paperwidth}\vfil}% + \end{beamercolorbox}% + \begin{beamercolorbox}[wd=.5\paperwidth,ht=\@tempdimb]{% + subsection in head/foot}% + \vbox to\@tempdimb{\vfil\insertsubsectionnavigation{.5\paperwidth}\vfil}% + \end{beamercolorbox}% + \fi% + \fi % \thepage>1 +} + +\fi % end if compressed +\fi % TACCheadernav + + +\ifTACCheadertree + +\setbeamertemplate{headline} +{ + \begin{beamercolorbox}[wd=\paperwidth,colsep=1.5pt]{upper separation line head} + \end{beamercolorbox} + % + % Place short title + % + \begin{beamercolorbox}[wd=\paperwidth,ht=2.5ex,dp=1.125ex,% + leftskip=.3cm,rightskip=.3cm plus1fil]{title in head/foot} + \usebeamerfont{title in head/foot}\insertshorttitle + \end{beamercolorbox} + + % + % Place section + % + \begin{beamercolorbox}[wd=\paperwidth,ht=2.5ex,dp=1.125ex,% + leftskip=.3cm,rightskip=.3cm plus1fil]{section in head/foot} + \usebeamerfont{section in head/foot}% + %\ifbeamer@tree@showhooks + \setbox\beamer@tempbox=\hbox{\insertsectionhead}% + \ifdim\wd\beamer@tempbox>1pt% + \hskip2pt\raise1.9pt\hbox{\vrule width0.4pt height1.875ex\vrule width 5pt height0.4pt}% + \hskip1pt% + \fi + \insertsectionhead + \end{beamercolorbox} + +% +% Place subsection +% +\begin{beamercolorbox}[wd=\paperwidth,ht=2.5ex,dp=1.125ex,% + leftskip=.3cm,rightskip=.3cm plus1fil]{subsection in head/foot} + \usebeamerfont{subsection in head/foot}% + %\ifbeamer@tree@showhooks + \setbox\beamer@tempbox=\hbox{\insertsubsectionhead}% + \ifdim\wd\beamer@tempbox>1pt% + \hskip9.4pt\raise1.9pt\hbox{\vrule width0.4pt height1.875ex\vrule width 5pt height0.4pt}% + \hskip1pt% + \fi + \insertsubsectionhead +\end{beamercolorbox} + +% +% Place final separation box +% + \begin{beamercolorbox}[wd=\paperwidth,colsep=1.5pt + ]{lower separation line head} + \end{beamercolorbox} + + % + % Another matching rule which helps to frame the content + % + \hspace{.025\textwidth}\rule{.95\textwidth}{.5pt} +} +\fi % TACCheadertree + + +% The following command suppresses all navigation symbols. This is +% necessary in the TACC theme, since it overlaps where we want the +% logo to be. +\setbeamertemplate{navigation symbols}{} + + +\mode + diff --git a/my_docs/23/lmod_zoom_mtg_2023_07_11/themes/beamerouterthemeTACC16.sty b/my_docs/23/lmod_zoom_mtg_2023_07_11/themes/beamerouterthemeTACC16.sty new file mode 100644 index 000000000..c5b178018 --- /dev/null +++ b/my_docs/23/lmod_zoom_mtg_2023_07_11/themes/beamerouterthemeTACC16.sty @@ -0,0 +1,247 @@ +% Copyright 2003 by Till Tantau +% +% This program can be redistributed and/or modified under the terms +% of the GNU Public License, version 2. + +\mode + +\usepackage{xcolor} +\usepackage{graphicx} +\usepackage{etoolbox} + +\pgfdeclareimage[width=\paperwidth]{titlebackground}{master.jpg} +\pgfdeclareimage[width=\paperwidth]{background}{secondary.jpg} + +\setbeamertemplate{background canvas}{% + \ifnum\c@framenumber=1% + \begin{picture}(0,0) + \put(0,-273){% + \pgfuseimage{titlebackground} + } + %\put(0,-130.7){% + + %\begin{minipage}[b][45mm][t]{\textwidth}%{226mm} + %\begin{center} + % \usebeamerfont{title}{\MakeTextUppercase{\inserttitle}\par} + %\vspace{2ex} + %\usebeamerfont{author}{\insertauthor} + % \end{center} + %\end{minipage} + %} + \end{picture} + % On title page + \else% + % Other frames background + \begin{picture}(0,0) + \put(0,-273){% + \pgfuseimage{background} + } + \end{picture} + \fi% +} + + +\setbeamertemplate{title page}{ +\vspace{40pt} +\begin{center} +\usebeamerfont{title} {\huge \inserttitle}\par +\vspace{4ex} +\usebeamerfont{author} { + \insertauthor +}\par +\vspace{2ex} +\usebeamerfont{institute}{ + \insertinstitute +} \par +\vspace{2ex} +\usebeamerfont{date}{ + \insertdate +} +\end{center} +} + + +\setbeamertemplate{frametitle}[default][center] +\setbeamertemplate{frametitle}{ + \makeatletter + \regexpatchcmd{\insertframetitle} + {(\c{usebeamertemplate}.*)\c{fi}} + {\c{NoCaseChange}\cB\{\1\cE\}\c{fi}} + {}{}% + \makeatother + \vskip1ex + \insertframetitle +} + +% Here we define what appears at the bottom of each slide: the "footline". +\setbeamertemplate{footline}{% + \leavevmode% + + % Horizontal line dividing the rest of the slide from the footer? + % hrule goes all the way across... + % \hrule height.3pt% + % With \rule, you can specify the thickness + % \rule[raise-height]{width}{thickness} + % \hspace{.025\textwidth}\rule{.95\textwidth}{.5pt} + + \hbox{% + \ifnum \thepage>1 + % On the left half of the footer, insert the TACC of + \begin{minipage}{.2\textwidth}% + \hskip .05\textwidth%Give horizontal space else this will set on the left edge of the slide! + % \includegraphics[width=.8\textwidth]{figures/TACC_logo.png} + \end{minipage} + + + \begin{minipage}{\textwidth}% + % \vskip .023\textheight% + \raggedleft% + \setlength{\rightskip}{\textwidth} + \hbox{% + \begin{beamercolorbox}[wd=0.7\textwidth,ht=2.25ex,dp=1ex,left]{author in head/foot}% + \insertshorttitle{} \hskip .01\textwidth | \hskip .01\textwidth \insertdate{} \hskip .01\textwidth | \hskip .01\textwidth \insertframenumber{} + \end{beamercolorbox}% + } + + % + % If we are not on the first page, insert a page number + % For some reason, insertframenumber is buggy when you have fragile + % slides with verbatim environments in them... it tends to skip numbers + % for some reason! On the other hand, the pagenumber is incremented + % for *every* slide, including transition slides... + % \hfill\includegraphics[width=\textwidth]{figures/tacc_ut.png} + \end{minipage}% + \begin{minipage}{.05\textwidth}% + \end{minipage}% + \fi %\thepage>1 + }% + \vskip .023\textheight% + +} + + + + +\ifTACCheadernav + +\usesectionheadtemplate +{\hfill\insertsectionhead} +{\hfill\color{fg!50!bg}\insertsectionhead} + +% Head +\ifbeamer@compress + +% Here we define how the top of the frame looks, the "headline". +\setbeamertemplate{headline} +{% + \ifnum \thepage>1 + \leavevmode% + \begin{beamercolorbox}[wd=.5\paperwidth,ht=2.5ex,dp=1.125ex]{% + section in head/foot}% + \insertsectionnavigationhorizontal{.5\paperwidth}{\hskip0pt plus1filll}{}% + \end{beamercolorbox}% + \begin{beamercolorbox}[wd=.5\paperwidth,ht=2.5ex,dp=1.125ex]{% + subsection in head/foot}% + \insertsubsectionnavigationhorizontal{% + .5\paperwidth}{}{\hskip0pt plus1filll}% + \end{beamercolorbox}% + \fi %\thepage>1 +} + +\else% Not compressed + +\setbeamertemplate{headline} +{% + \ifnum \thepage>1 + \leavevmode% + \@tempdimb=2.4375ex% + \ifnum\beamer@subsectionmax<\beamer@sectionmax% + \multiply\@tempdimb by\beamer@sectionmax% + \else% + \multiply\@tempdimb by\beamer@subsectionmax% + \fi% + \ifdim\@tempdimb>0pt% + \advance\@tempdimb by 1.125ex% + \begin{beamercolorbox}[wd=.5\paperwidth,ht=\@tempdimb]{% + section in head/foot}% + \vbox to\@tempdimb{\vfil\insertsectionnavigation{.5\paperwidth}\vfil}% + \end{beamercolorbox}% + \begin{beamercolorbox}[wd=.5\paperwidth,ht=\@tempdimb]{% + subsection in head/foot}% + \vbox to\@tempdimb{\vfil\insertsubsectionnavigation{.5\paperwidth}\vfil}% + \end{beamercolorbox}% + \fi% + \fi % \thepage>1 +} + +\fi % end if compressed +\fi % TACCheadernav + + +\ifTACCheadertree + +\setbeamertemplate{headline} +{ + \begin{beamercolorbox}[wd=\paperwidth,colsep=1.5pt]{upper separation line head} + \end{beamercolorbox} + % + % Place short title + % + \begin{beamercolorbox}[wd=\paperwidth,ht=2.5ex,dp=1.125ex,% + leftskip=.3cm,rightskip=.3cm plus1fil]{title in head/foot} + \usebeamerfont{title in head/foot}\insertshorttitle + \end{beamercolorbox} + + % + % Place section + % + \begin{beamercolorbox}[wd=\paperwidth,ht=2.5ex,dp=1.125ex,% + leftskip=.3cm,rightskip=.3cm plus1fil]{section in head/foot} + \usebeamerfont{section in head/foot}% + %\ifbeamer@tree@showhooks + \setbox\beamer@tempbox=\hbox{\insertsectionhead}% + \ifdim\wd\beamer@tempbox>1pt% + \hskip2pt\raise1.9pt\hbox{\vrule width0.4pt height1.875ex\vrule width 5pt height0.4pt}% + \hskip1pt% + \fi + \insertsectionhead + \end{beamercolorbox} + +% +% Place subsection +% +\begin{beamercolorbox}[wd=\paperwidth,ht=2.5ex,dp=1.125ex,% + leftskip=.3cm,rightskip=.3cm plus1fil]{subsection in head/foot} + \usebeamerfont{subsection in head/foot}% + %\ifbeamer@tree@showhooks + \setbox\beamer@tempbox=\hbox{\insertsubsectionhead}% + \ifdim\wd\beamer@tempbox>1pt% + \hskip9.4pt\raise1.9pt\hbox{\vrule width0.4pt height1.875ex\vrule width 5pt height0.4pt}% + \hskip1pt% + \fi + \insertsubsectionhead +\end{beamercolorbox} + +% +% Place final separation box +% + \begin{beamercolorbox}[wd=\paperwidth,colsep=1.5pt + ]{lower separation line head} + \end{beamercolorbox} + + % + % Another matching rule which helps to frame the content + % + \hspace{.025\textwidth}\rule{.95\textwidth}{.5pt} +} +\fi % TACCheadertree + + +% The following command suppresses all navigation symbols. This is +% necessary in the TACC theme, since it overlaps where we want the +% logo to be. +\setbeamertemplate{navigation symbols}{} + + +\mode + diff --git a/my_docs/23/lmod_zoom_mtg_2023_07_11/themes/beamerthemeTACC16-169.sty b/my_docs/23/lmod_zoom_mtg_2023_07_11/themes/beamerthemeTACC16-169.sty new file mode 100644 index 000000000..22caf9a05 --- /dev/null +++ b/my_docs/23/lmod_zoom_mtg_2023_07_11/themes/beamerthemeTACC16-169.sty @@ -0,0 +1,38 @@ +%% TACC theme for beamer + +\newif\ifTACCheadernav +\DeclareOption{headernav}{\global\TACCheadernavtrue} + +\newif\ifTACCheadertree +\DeclareOption{headertree}{\global\TACCheadertreetrue} +\ProcessOptions + +\mode + +\makeatletter + \def\beamer@calltheme#1#2#3{% + \def\beamer@themelist{#2} + \@for\beamer@themename:=\beamer@themelist\do + {\usepackage[{#1}]{\beamer@themelocation/#3\beamer@themename}}} + + \def\usefolder#1{ + \def\beamer@themelocation{#1} + } + \def\beamer@themelocation{} + +\usefolder{themes} +\usefonttheme{TACC16} +\useinnertheme{TACC16} +\useoutertheme{TACC16-169} +\usecolortheme{TACC16} + +\mode + + +\newcommand{\event}[1]{% + \makeatletter% + \def\TACC@eventname{#1}% + \makeatother} + +\newcommand{\sectionframe}[1]{\section{#1}\frame{\Large\textbf{#1}}} +\newcommand{\subsectionframe}[1]{\subsection{#1}\frame{\large\textbf{#1}}} diff --git a/my_docs/23/lmod_zoom_mtg_2023_07_11/themes/beamerthemeTACC16.sty b/my_docs/23/lmod_zoom_mtg_2023_07_11/themes/beamerthemeTACC16.sty new file mode 100644 index 000000000..750bdd388 --- /dev/null +++ b/my_docs/23/lmod_zoom_mtg_2023_07_11/themes/beamerthemeTACC16.sty @@ -0,0 +1,26 @@ +%% TACC theme for beamer + +\newif\ifTACCheadernav +\DeclareOption{headernav}{\global\TACCheadernavtrue} + +\newif\ifTACCheadertree +\DeclareOption{headertree}{\global\TACCheadertreetrue} +\ProcessOptions + +\mode + +\usefonttheme{TACC16} +\useinnertheme{TACC16} +\useoutertheme{TACC16} +\usecolortheme{TACC16} + +\mode + + +\newcommand{\event}[1]{% + \makeatletter% + \def\TACC@eventname{#1}% + \makeatother} + +\newcommand{\sectionframe}[1]{\section{#1}\frame{\Large\textbf{#1}}} +\newcommand{\subsectionframe}[1]{\subsection{#1}\frame{\large\textbf{#1}}} diff --git a/my_docs/23/lmod_zoom_mtg_2023_07_11/themes/example.pdf b/my_docs/23/lmod_zoom_mtg_2023_07_11/themes/example.pdf new file mode 100644 index 000000000..add373eee Binary files /dev/null and b/my_docs/23/lmod_zoom_mtg_2023_07_11/themes/example.pdf differ diff --git a/my_docs/23/lmod_zoom_mtg_2023_07_11/themes/license.tex b/my_docs/23/lmod_zoom_mtg_2023_07_11/themes/license.tex new file mode 100644 index 000000000..74ff86759 --- /dev/null +++ b/my_docs/23/lmod_zoom_mtg_2023_07_11/themes/license.tex @@ -0,0 +1,14 @@ + +\begin{frame}{License} +\footnotesize +\textcopyright The University of Texas at Austin, \the\year\\ +\vspace{0.5 cm} +This work is licensed under the Creative Commons Attribution Non-Commercial 3.0 Unported License. To view a copy of this license, +visit http://creativecommons.org/licenses/by-nc/3.0/\\ +\vspace{0.5 cm} +When attributing this work, please use the following text: +"Designing and Administering Large-scale Systems", Texas Advanced Computing Center, \the\year. Available under a Creative Commons Attribution Non-Commercial 3.0 Unported License. +\newline +\newline +\includegraphics[width=1cm]{./figures/cc.png} +\end{frame} \ No newline at end of file diff --git a/my_docs/23/lmod_zoom_mtg_2023_08_01/Lmod-4color@2x.png b/my_docs/23/lmod_zoom_mtg_2023_08_01/Lmod-4color@2x.png deleted file mode 120000 index 47d505dbf..000000000 --- a/my_docs/23/lmod_zoom_mtg_2023_08_01/Lmod-4color@2x.png +++ /dev/null @@ -1 +0,0 @@ -../../beamer/Lmod-4color@2x.png \ No newline at end of file diff --git a/my_docs/23/lmod_zoom_mtg_2023_08_01/Lmod-4color@2x.png b/my_docs/23/lmod_zoom_mtg_2023_08_01/Lmod-4color@2x.png new file mode 100644 index 000000000..4810d74c3 Binary files /dev/null and b/my_docs/23/lmod_zoom_mtg_2023_08_01/Lmod-4color@2x.png differ diff --git a/my_docs/23/lmod_zoom_mtg_2023_08_01/beamercolorthemeTACC.sty b/my_docs/23/lmod_zoom_mtg_2023_08_01/beamercolorthemeTACC.sty deleted file mode 120000 index 8d27e673a..000000000 --- a/my_docs/23/lmod_zoom_mtg_2023_08_01/beamercolorthemeTACC.sty +++ /dev/null @@ -1 +0,0 @@ -../../beamer/beamercolorthemeTACC.sty \ No newline at end of file diff --git a/my_docs/23/lmod_zoom_mtg_2023_08_01/beamercolorthemeTACC.sty b/my_docs/23/lmod_zoom_mtg_2023_08_01/beamercolorthemeTACC.sty new file mode 100755 index 000000000..78beb6a4a --- /dev/null +++ b/my_docs/23/lmod_zoom_mtg_2023_08_01/beamercolorthemeTACC.sty @@ -0,0 +1,323 @@ +% Copyright 2003 by Till Tantau . +% +% This program can be redistributed and/or modified under the terms +% of the GNU Public License, version 2. + +\mode + +% I downloaded a gimp color palette from +% http://maururu.net/2007/latex-beamer-color-palette/ +% Which provides rgb values (I think) for several of the +% default beamer themes. You can open this in gimp by +% opening the Palettes dialog, right-clicking anywhere and choosing +% 'Import Palette'. A color in there called 'default added blue' +% appeared to be approximately what I wanted. It had the triple +% of values 141 145 208. If you double-click on this in the +% palette editor it gives you a bunch of information. You can't +% use these values directly to set a color...it just comes out white. +% I think definecolor is expecting something normalized by 255. Yes! + + +% bluish colors +\definecolor{defaddedblue}{rgb}{0.5529,.5686,.8157} % 141,145,208 +\definecolor{defblockheader}{rgb}{.1921,.2235,.6824} % 49,57,174 +\definecolor{flyaddedblue}{rgb}{.5961,.6118,.8431} % 152,156,215 + +% bluish-greys +\definecolor{beetleaddedblue1}{rgb}{.3333,.4039,.6196} % 85 103 158, dark +\definecolor{beetleaddedblue2}{rgb}{.4510,.5098,.7020} % 115 130 179, medium +\definecolor{beetleaddedblue3}{rgb}{.7059,.7255,.7961} % 180 185 203, light (greyest) + +% very light blue-greys +\definecolor{deflightouter1}{rgb}{.7608,.7647,.9020} % 194 195 230, dark +\definecolor{deflightouter2}{rgb}{.8 ,.8039,.9176} % 204 205 234, medium +\definecolor{deflightouter3}{rgb}{.8392,.8431,.9373} % 214 215 239, light + +% reddish colors +\definecolor{flyalertblockheader}{rgb}{.7373,.1294,.1333} % 188 33 34 +\definecolor{flyaddedred}{rgb}{.8667,.5647,.5647}% 221 144 144 +\definecolor{beaverouterframe}{rgb}{.5529,.0980,.0980}% 141 25 25 + +% greens (green is used for 'examples' in beamer) +\definecolor{defexblock}{rgb}{.9098,.9333,.9020} % 232 238 230, light +\definecolor{defaddedgreen}{rgb}{.5412,.6510,.4706} % 138 166 120, medium +\definecolor{defexblockheader}{rgb}{.1686,.3647,.0392} % 43 93 10, dark + +\definecolor{lightexblock}{rgb}{.9137,.9451,.9020} % 233 241 230, light +\definecolor{lightexblockheader}{rgb}{.8235,.8980,.8} % 210 229 204, medium +\definecolor{lightexblockheadertext}{rgb}{.2431,.5098,.0745} % 62 130 19, dark + + +%%% +% Set the normal text color +%%% +\setbeamercolor{normal text}{fg=black,bg=white} + +%%% +% Set the alerted text color +%%% +% \setbeamercolor{alerted text}{fg=red} +\setbeamercolor{alerted text}{fg=red!50!black} % half black/half red for green bg +% \setbeamercolor{alerted text}{fg=beaverouterframe} +% \setbeamercolor{alerted text}{fg=defblockheader} % doesn't stand out enough + + +% Set the 'example' text +\setbeamercolor{example text}{fg=green!50!black} + +\setbeamercolor{structure}{fg=black} + +\setbeamercolor{background canvas}{parent=normal text} +\setbeamercolor{background}{parent=background canvas} + +\setbeamercolor{palette primary}{use=structure,fg=structure.fg} +\setbeamercolor{palette secondary}{use=structure,fg=structure.fg!75!black} +\setbeamercolor{palette tertiary}{use=structure,fg=structure.fg!50!black} +\setbeamercolor{palette quaternary}{fg=black} + +\setbeamercolor{palette sidebar primary}{use=normal text,fg=normal text.fg} +\setbeamercolor{palette sidebar secondary}{use=structure,fg=structure.fg} +\setbeamercolor{palette sidebar tertiary}{use=normal text,fg=normal text.fg} +\setbeamercolor{palette sidebar quaternary}{use=structure,fg=structure.fg} + +\setbeamercolor{math text}{} +\setbeamercolor{math text inlined}{parent=math text} +\setbeamercolor{math text displayed}{parent=math text} + +\setbeamercolor{normal text in math text}{} + +\setbeamercolor{local structure}{parent=structure} + +\setbeamercolor{titlelike}{parent=structure} + +\setbeamercolor{title}{parent=titlelike} +\setbeamercolor{title in head/foot}{parent=palette quaternary} +\setbeamercolor{title in sidebar}{parent=palette sidebar quaternary} + +\setbeamercolor{subtitle}{parent=title} + +\setbeamercolor{author}{} +\setbeamercolor{author in head/foot}{parent=palette primary} +\setbeamercolor{author in sidebar}{use=palette sidebar tertiary,fg=palette sidebar tertiary.fg} + +\setbeamercolor{institute}{} +\setbeamercolor{institute in head/foot}{parent=palette tertiary} +\setbeamercolor{institute in sidebar}{use=palette sidebar tertiary,fg=palette sidebar tertiary.fg} + +\setbeamercolor{date}{} +\setbeamercolor{date in head/foot}{parent=palette secondary} +\setbeamercolor{date in sidebar}{use=palette sidebar tertiary,fg=palette sidebar tertiary.fg} + +\setbeamercolor{titlegraphic}{} + +\setbeamercolor{part name}{} +\setbeamercolor{part title}{parent=titlelike} + +\setbeamercolor{section in toc}{parent=structure} +\setbeamercolor{section in toc shaded}{parent=section in toc} +\setbeamercolor{section in head/foot}{parent=palette tertiary} +\setbeamercolor{section in sidebar}{parent=palette sidebar secondary} +\setbeamercolor{section in sidebar shaded}{use=section in sidebar,fg=section in sidebar.fg!40!bg} +\setbeamercolor{section number projected}{parent=item projected} + +\setbeamercolor{subsection in toc}{} +\setbeamercolor{subsection in toc shaded}{parent=subsection in toc} +\setbeamercolor{subsection in head/foot}{parent=palette secondary} +\setbeamercolor{subsection in sidebar}{parent=palette sidebar primary} +\setbeamercolor{subsection in sidebar shaded}{use=subsection in sidebar,fg=subsection in sidebar.fg!40!bg} +\setbeamercolor{subsection number projected}{parent={subitem projected}} + +\setbeamercolor{subsubsection in toc}{parent=subsection in toc} +\setbeamercolor{subsubsection in toc shaded}{parent=subsubsection in toc} +\setbeamercolor{subsubsection in head/foot}{parent=subsection in head/foot} +\setbeamercolor{subsubsection in sidebar}{parent=subsection in sidebar} +\setbeamercolor{subsubsection in sidebar shaded}{parent=subsection in sidebar shaded} +\setbeamercolor{subsubsection number projected}{parent=subsubitem projected} + +\setbeamercolor{headline}{} +\setbeamercolor{footline}{} + +\setbeamercolor{sidebar}{} +\setbeamercolor{sidebar left}{parent=sidebar} +\setbeamercolor{sidebar right}{parent=sidebar} + +\setbeamercolor{logo}{parent=palette secondary} + +\setbeamercolor{frametitle}{parent=titlelike} +\setbeamercolor{framesubtitle}{parent=frametitle} + +\setbeamercolor{frametitle right}{parent=frametitle} + +\setbeamercolor{caption}{} +\setbeamercolor{caption name}{parent=structure} + +\setbeamercolor{button}{use=local structure,bg=local structure.fg!50!bg,fg=white} +\setbeamercolor{button border}{use=button,fg=button.bg} +\setbeamercolor{navigation symbols}{use=structure,fg=structure.fg!40!bg} +\setbeamercolor{navigation symbols dimmed}{use=structure,fg=structure.fg!20!bg} +\setbeamercolor{mini frame}{parent=section in head/foot} + +% Color expressions are defined in the xcolor package +% +% Ex: Mixture of 40% green, 60% yellow: green!40!yellow +% +% The complement of any color can be obtained by prepending +% a minus sign: -green!40!yellow +% +% One can also combine up to three colors (in differing proportions) +% using the rgb command. For example, the following command combines +% 3 parts of the first color, with 2 parts of the second, and one part +% "red" +% +%\color{rgb:-green!40!yellow,3;green!40!yellow,2;red,1} +% Unfortunately, I don't think this works as an argument to setbeamercolor... +% "Orange" bg=green!30!yellow!30!red +% close to burnt orange: red!75!green +% lightgray is a color, but gray!25!white looks better +% +% A nice pair of greens +% (dark, a little too dark to be under black text...) -red!75!green!50!blue!25 +% (light) -red!75!green!50!blue!25!gray +% +% Some colors are only available via options to the xcolor package, eg. +% x11names,DarkOliveGreen4 +% svgnames, Chartreuse +% dvipsnames, ForestGreen +% +% but beamer does not seem to have any of these. +% +% The base color names which are always available are: +% black +% blue +% brown +% cyan +% darkgray +% gray +% green +% lightgray +% lime +% magenta +% olive +% orange +% pink +% purple +% red +% teal +% violet +% white +% yellow + +% From the beamer user guide, pg. 167 +% Inner color themes only specify the colors of elements used in inner +% themes. Most noticably, they specify the colors used for blocks. +% ... + +% Example color definition +% beamercolorthemedefault.sty:\definecolor{beamer@blendedblue}{rgb}{0.2,0.2,0.7} +% beamercolorthemedefault.sty:\setbeamercolor{structure}{fg=beamer@blendedblue} + +% The greens +% \setbeamercolor{block body}{bg=-red!75!green!50!blue!25!gray} +% \setbeamercolor{block title}{parent=structure,bg=-red!75!green!50!blue!25,fg=-red!75!green!50!blue!25!gray} + +%%% +% Set the block body and title background/foreground colors +%%% +% \setbeamercolor{block body}{bg=flyaddedblue} +% \setbeamercolor{block title}{bg=defblockheader,fg=flyaddedblue} + +% Purplish blues, too dark overall +% \setbeamercolor{block body}{bg=beetleaddedblue3} +% \setbeamercolor{block title}{bg=beetleaddedblue2,fg=beetleaddedblue3} + +% Very light blue greys +% 1. Not enough contrast +% \setbeamercolor{block body}{bg=deflightouter3} +% \setbeamercolor{block title}{bg=deflightouter2,fg=deflightouter3} + +% 2. Not enough contrast +% \setbeamercolor{block body}{bg=deflightouter3} +% \setbeamercolor{block title}{bg=deflightouter1,fg=deflightouter3} + +% 3. Combination of deflightouter and fly. The block bg is +% lighter than the all-beetle color scheme I previously thought was best. +% Currently I like this one the best +\setbeamercolor{block body}{bg=deflightouter3} +\setbeamercolor{block title}{bg=beetleaddedblue2,fg=deflightouter3} + +% 4. Greens. Looks like a highlighter. I don't really trust greens +% on projectors... It's almost too bright/hurts your eyes. +% \setbeamercolor{block body}{bg=defexblock} +% \setbeamercolor{block title}{bg=defaddedgreen,fg=defexblock} + +% This looks pretty good ... it's similar to the greens we had before +% but should be lighter. The blocks are just a little too "mint" colored +% though... +% \setbeamercolor{block body}{bg=defexblock} +% \setbeamercolor{block title}{bg=defexblockheader,fg=defexblock} + +% Pea Soup! +%\setbeamercolor{block body}{bg=defaddedgreen} +%\setbeamercolor{block title}{bg=defexblockheader,fg=defaddedgreen} + + +% Changing these didn't seem to do anything...I had to change the +% 'alerted text' color instead +\setbeamercolor{block body alerted}{} +\setbeamercolor{block body example}{} +\setbeamercolor{block title alerted}{parent=alerted text} +\setbeamercolor{block title example}{parent=example text} + +\setbeamercolor{item}{parent=local structure} +\setbeamercolor{subitem}{parent=item} +\setbeamercolor{subsubitem}{parent=subitem} + +\setbeamercolor{item projected}{parent=item,use=item,fg=white,bg=item.fg} +\setbeamercolor{subitem projected}{parent=item projected} +\setbeamercolor{subsubitem projected}{parent=subitem projected} + +\setbeamercolor{enumerate item}{parent=item} +\setbeamercolor{enumerate subitem}{parent=subitem} +\setbeamercolor{enumerate subsubitem}{parent=subsubitem} + +\setbeamercolor{itemize item}{parent=item} +\setbeamercolor{itemize subitem}{parent=subitem} +\setbeamercolor{itemize subsubitem}{parent=subsubitem} + +\setbeamercolor{itemize/enumerate body}{} +\setbeamercolor{itemize/enumerate subbody}{} +\setbeamercolor{itemize/enumerate subsubbody}{} + +\setbeamercolor{description item}{parent=item} + +\setbeamercolor{bibliography item}{parent=item} + +\setbeamercolor{bibliography entry author}{use=structure,fg=structure.fg} +\setbeamercolor{bibliography entry title}{use=normal text,fg=normal text.fg} +\setbeamercolor{bibliography entry location}{use=structure,fg=structure.fg!65!bg} +\setbeamercolor{bibliography entry note}{use=structure,fg=structure.fg!65!bg} + +\setbeamercolor{separation line}{} + +\setbeamercolor{upper separation line head}{parent=separation line} +\setbeamercolor{middle separation line head}{parent=separation line} +\setbeamercolor{lower separation line head}{parent=separation line} + +\setbeamercolor{upper separation line foot}{parent=separation line} +\setbeamercolor{middle separation line foot}{parent=separation line} +\setbeamercolor{lower separation line foot}{parent=separation line} + +\setbeamercolor{abstract}{} +\setbeamercolor{abstract title}{parent=structure} + +\setbeamercolor{verse}{} + +\setbeamercolor{quotation}{} +\setbeamercolor{quote}{parent=quotation} + +\setbeamercolor{page number in head/foot}{fg=fg!50!bg} + +\setbeamercolor{qed symbol}{parent=structure} + +\mode + diff --git a/my_docs/23/lmod_zoom_mtg_2023_08_01/beamercolorthemeTACC16.sty b/my_docs/23/lmod_zoom_mtg_2023_08_01/beamercolorthemeTACC16.sty deleted file mode 120000 index 58415801b..000000000 --- a/my_docs/23/lmod_zoom_mtg_2023_08_01/beamercolorthemeTACC16.sty +++ /dev/null @@ -1 +0,0 @@ -../../beamer/beamercolorthemeTACC16.sty \ No newline at end of file diff --git a/my_docs/23/lmod_zoom_mtg_2023_08_01/beamercolorthemeTACC16.sty b/my_docs/23/lmod_zoom_mtg_2023_08_01/beamercolorthemeTACC16.sty new file mode 100755 index 000000000..779dde91f --- /dev/null +++ b/my_docs/23/lmod_zoom_mtg_2023_08_01/beamercolorthemeTACC16.sty @@ -0,0 +1,192 @@ +% Copyright 2003 by Till Tantau . +% +% This program can be redistributed and/or modified under the terms +% of the GNU Public License, version 2. + +\mode + +\usepackage{textcase,regexpatch} + +\setbeamertemplate{blocks}[rounded][shadow=true] + + +\definecolor{TACCred}{RGB}{180,13,29} +\definecolor{TACCorange}{RGB}{210,104,43} +\definecolor{TACCblue}{RGB}{108, 134, 191} +\definecolor{TACCgreen}{RGB}{23,106,70} + +% I downloaded a gimp color palette from +% http://maururu.net/2007/latex-beamer-color-palette/ +% Which provides rgb values (I think) for several of the +% default beamer themes. You can open this in gimp by +% opening the Palettes dialog, right-clicking anywhere and choosing +% 'Import Palette'. A color in there called 'default added blue' +% appeared to be approximately what I wanted. It had the triple +% of values 141 145 208. If you double-click on this in the +% palette editor it gives you a bunch of information. You can't +% use these values directly to set a color...it just comes out white. +% I think definecolor is expecting something normalized by 255. Yes! + + +%%% +% Set the normal text color +%%% +\setbeamercolor{normal text}{fg=black} %,bg=white} +\setbeamercolor{example text}{fg=TACCgreen} +\setbeamercolor{alerted text}{fg=TACCorange} + + +\setbeamercolor{structure}{fg=black} +%\setbeamercolor{structure}{fg=black} + +\setbeamercolor{background canvas}{parent=normal text} +\setbeamercolor{background}{parent=background canvas} + +\setbeamercolor{palette primary}{use=structure,fg=structure.fg} +\setbeamercolor{palette secondary}{use=structure,fg=structure.fg!75!black} +\setbeamercolor{palette tertiary}{use=structure,fg=structure.fg!50!black} +\setbeamercolor{palette quaternary}{fg=black} + +\setbeamercolor{palette sidebar primary}{use=normal text,fg=normal text.fg} +\setbeamercolor{palette sidebar secondary}{use=structure,fg=structure.fg} +\setbeamercolor{palette sidebar tertiary}{use=normal text,fg=normal text.fg} +\setbeamercolor{palette sidebar quaternary}{use=structure,fg=structure.fg} + +\setbeamercolor{math text}{} +\setbeamercolor{math text inlined}{parent=math text} +\setbeamercolor{math text displayed}{parent=math text} + +\setbeamercolor{normal text in math text}{} + +\setbeamercolor{local structure}{parent=structure} + +\setbeamercolor{titlelike}{parent=structure} + +\setbeamercolor{title}{parent=titlelike} +\setbeamercolor{title in head/foot}{parent=palette quaternary} +\setbeamercolor{title in sidebar}{parent=palette sidebar quaternary} + +\setbeamercolor{subtitle}{parent=title} + +\setbeamercolor{author}{} +\setbeamercolor{author in head/foot}{parent=palette primary} +\setbeamercolor{author in sidebar}{use=palette sidebar tertiary,fg=palette sidebar tertiary.fg} + +\setbeamercolor{institute}{} +\setbeamercolor{institute in head/foot}{parent=palette tertiary} +\setbeamercolor{institute in sidebar}{use=palette sidebar tertiary,fg=palette sidebar tertiary.fg} + +\setbeamercolor{date}{} +\setbeamercolor{date in head/foot}{parent=palette secondary} +\setbeamercolor{date in sidebar}{use=palette sidebar tertiary,fg=palette sidebar tertiary.fg} + +\setbeamercolor{titlegraphic}{} + +\setbeamercolor{part name}{} +\setbeamercolor{part title}{parent=titlelike} + +\setbeamercolor{section in toc}{parent=structure} +\setbeamercolor{section in toc shaded}{parent=section in toc} +\setbeamercolor{section in head/foot}{parent=palette tertiary} +\setbeamercolor{section in sidebar}{parent=palette sidebar secondary} +\setbeamercolor{section in sidebar shaded}{use=section in sidebar,fg=section in sidebar.fg!40!bg} +\setbeamercolor{section number projected}{parent=item projected} + +\setbeamercolor{subsection in toc}{} +\setbeamercolor{subsection in toc shaded}{parent=subsection in toc} +\setbeamercolor{subsection in head/foot}{parent=palette secondary} +\setbeamercolor{subsection in sidebar}{parent=palette sidebar primary} +\setbeamercolor{subsection in sidebar shaded}{use=subsection in sidebar,fg=subsection in sidebar.fg!40!bg} +\setbeamercolor{subsection number projected}{parent={subitem projected}} + +\setbeamercolor{subsubsection in toc}{parent=subsection in toc} +\setbeamercolor{subsubsection in toc shaded}{parent=subsubsection in toc} +\setbeamercolor{subsubsection in head/foot}{parent=subsection in head/foot} +\setbeamercolor{subsubsection in sidebar}{parent=subsection in sidebar} +\setbeamercolor{subsubsection in sidebar shaded}{parent=subsection in sidebar shaded} +\setbeamercolor{subsubsection number projected}{parent=subsubitem projected} + +\setbeamercolor{headline}{} +\setbeamercolor{footline}{} + +\setbeamercolor{sidebar}{} +\setbeamercolor{sidebar left}{parent=sidebar} +\setbeamercolor{sidebar right}{parent=sidebar} + +\setbeamercolor{logo}{parent=palette secondary} + +\setbeamercolor{frametitle}{parent=titlelike} +\setbeamercolor{framesubtitle}{parent=frametitle} + +\setbeamercolor{frametitle right}{parent=frametitle} + +\setbeamercolor{caption}{} +\setbeamercolor{caption name}{parent=structure} + +\setbeamercolor{button}{use=local structure,bg=local structure.fg!50!bg,fg=white} +\setbeamercolor{button border}{use=button,fg=button.bg} +\setbeamercolor{navigation symbols}{use=structure,fg=structure.fg!40!bg} +\setbeamercolor{navigation symbols dimmed}{use=structure,fg=structure.fg!20!bg} +\setbeamercolor{mini frame}{parent=section in head/foot} + +\setbeamercolor{block body}{fg=black} +\setbeamercolor{block body alerted}{fg=black} +\setbeamercolor{block body example}{fg=black} + +\setbeamercolor{block title}{bg=TACCblue,fg=white} +\setbeamercolor{block title alerted}{bg=TACCred,fg=white} +\setbeamercolor{block title example}{bg=TACCgreen,fg=white} + +\setbeamercolor{item}{parent=local structure} +\setbeamercolor{subitem}{parent=item} +\setbeamercolor{subsubitem}{parent=subitem} + +\setbeamercolor{item projected}{parent=item,use=item,fg=black,bg=item.fg} +\setbeamercolor{subitem projected}{parent=item projected} +\setbeamercolor{subsubitem projected}{parent=subitem projected} + +\setbeamercolor{enumerate item}{parent=item} +\setbeamercolor{enumerate subitem}{parent=subitem} +\setbeamercolor{enumerate subsubitem}{parent=subsubitem} + +\setbeamercolor{itemize item}{parent=item} +\setbeamercolor{itemize subitem}{parent=subitem} +\setbeamercolor{itemize subsubitem}{parent=subsubitem} + +\setbeamercolor{itemize/enumerate body}{} +\setbeamercolor{itemize/enumerate subbody}{} +\setbeamercolor{itemize/enumerate subsubbody}{} + +\setbeamercolor{description item}{parent=item} + +\setbeamercolor{bibliography item}{parent=item} + +\setbeamercolor{bibliography entry author}{use=structure,fg=structure.fg} +\setbeamercolor{bibliography entry title}{use=normal text,fg=normal text.fg} +\setbeamercolor{bibliography entry location}{use=structure,fg=structure.fg!65!bg} +\setbeamercolor{bibliography entry note}{use=structure,fg=structure.fg!65!bg} + +\setbeamercolor{separation line}{} + +\setbeamercolor{upper separation line head}{parent=separation line} +\setbeamercolor{middle separation line head}{parent=separation line} +\setbeamercolor{lower separation line head}{parent=separation line} + +\setbeamercolor{upper separation line foot}{parent=separation line} +\setbeamercolor{middle separation line foot}{parent=separation line} +\setbeamercolor{lower separation line foot}{parent=separation line} + +\setbeamercolor{abstract}{} +\setbeamercolor{abstract title}{parent=structure} + +\setbeamercolor{verse}{} + +\setbeamercolor{quotation}{} +\setbeamercolor{quote}{parent=quotation} + +\setbeamercolor{page number in head/foot}{fg=fg!50!bg} + +\setbeamercolor{qed symbol}{parent=structure} + +\mode + diff --git a/my_docs/23/lmod_zoom_mtg_2023_08_01/beamerfontthemeTACC.sty b/my_docs/23/lmod_zoom_mtg_2023_08_01/beamerfontthemeTACC.sty deleted file mode 120000 index 78e971fb8..000000000 --- a/my_docs/23/lmod_zoom_mtg_2023_08_01/beamerfontthemeTACC.sty +++ /dev/null @@ -1 +0,0 @@ -../../beamer/beamerfontthemeTACC.sty \ No newline at end of file diff --git a/my_docs/23/lmod_zoom_mtg_2023_08_01/beamerfontthemeTACC.sty b/my_docs/23/lmod_zoom_mtg_2023_08_01/beamerfontthemeTACC.sty new file mode 100755 index 000000000..ef9ce1e5e --- /dev/null +++ b/my_docs/23/lmod_zoom_mtg_2023_08_01/beamerfontthemeTACC.sty @@ -0,0 +1,12 @@ +% Copyright 2003 by Till Tantau +% +% This program can be redistributed and/or modified under the terms +% of the GNU Public License, version 2. + +\mode + +\setbeamerfont{frametitle}{parent=structure,size=\LARGE,series=\bfseries} +\setbeamerfont{framesubtitle}{parent=frametitle,size=\small} + +\mode + \ No newline at end of file diff --git a/my_docs/23/lmod_zoom_mtg_2023_08_01/beamerfontthemeTACC16.sty b/my_docs/23/lmod_zoom_mtg_2023_08_01/beamerfontthemeTACC16.sty deleted file mode 120000 index a1f2fa5f9..000000000 --- a/my_docs/23/lmod_zoom_mtg_2023_08_01/beamerfontthemeTACC16.sty +++ /dev/null @@ -1 +0,0 @@ -../../beamer/beamerfontthemeTACC16.sty \ No newline at end of file diff --git a/my_docs/23/lmod_zoom_mtg_2023_08_01/beamerfontthemeTACC16.sty b/my_docs/23/lmod_zoom_mtg_2023_08_01/beamerfontthemeTACC16.sty new file mode 100755 index 000000000..b65271835 --- /dev/null +++ b/my_docs/23/lmod_zoom_mtg_2023_08_01/beamerfontthemeTACC16.sty @@ -0,0 +1,21 @@ +% Copyright 2003 by Till Tantau +% +% This program can be redistributed and/or modified under the terms +% of the GNU Public License, version 2. + +\mode +\setbeamerfont{title}{parent=structure,size=\LARGE,series=\bfseries} +\setbeamerfont{author}{parent=structure,size=\large, series=\normalfont} +\setbeamerfont{frametitle}{parent=structure,size=\LARGE,series=\bfseries} +\setbeamerfont{framesubtitle}{parent=frametitle,size=\small} + +%\usefonttheme{professionalfonts} % using non standard fonts for beamer +%\usefonttheme{serif} % default family is serif +%\usepackage{fontspec} +%\setmainfont{Century Gothic} + +\usepackage{fontspec} +\usepackage{libertine} + +\mode + diff --git a/my_docs/23/lmod_zoom_mtg_2023_08_01/beamerinnerthemeTACC.sty b/my_docs/23/lmod_zoom_mtg_2023_08_01/beamerinnerthemeTACC.sty deleted file mode 120000 index 8d5ae3921..000000000 --- a/my_docs/23/lmod_zoom_mtg_2023_08_01/beamerinnerthemeTACC.sty +++ /dev/null @@ -1 +0,0 @@ -../../beamer/beamerinnerthemeTACC.sty \ No newline at end of file diff --git a/my_docs/23/lmod_zoom_mtg_2023_08_01/beamerinnerthemeTACC.sty b/my_docs/23/lmod_zoom_mtg_2023_08_01/beamerinnerthemeTACC.sty new file mode 100755 index 000000000..29e2bce81 --- /dev/null +++ b/my_docs/23/lmod_zoom_mtg_2023_08_01/beamerinnerthemeTACC.sty @@ -0,0 +1,11 @@ +\mode + +\setbeamertemplate{itemize item}[circle] +\setbeamertemplate{itemize subitem}{{}--{}} +\setbeamertemplate{itemize subsubitem}[circle] +\setbeamertemplate{section in toc}{$\bullet$\hskip.5em\inserttocsection} +%\setbeamertemplate{subsection in toc}{} +\setbeamertemplate{subsubsection in toc}{} + +\mode + diff --git a/my_docs/23/lmod_zoom_mtg_2023_08_01/beamerinnerthemeTACC16.sty b/my_docs/23/lmod_zoom_mtg_2023_08_01/beamerinnerthemeTACC16.sty deleted file mode 120000 index 5955acc99..000000000 --- a/my_docs/23/lmod_zoom_mtg_2023_08_01/beamerinnerthemeTACC16.sty +++ /dev/null @@ -1 +0,0 @@ -../../beamer/beamerinnerthemeTACC16.sty \ No newline at end of file diff --git a/my_docs/23/lmod_zoom_mtg_2023_08_01/beamerinnerthemeTACC16.sty b/my_docs/23/lmod_zoom_mtg_2023_08_01/beamerinnerthemeTACC16.sty new file mode 100755 index 000000000..f7f454e1d --- /dev/null +++ b/my_docs/23/lmod_zoom_mtg_2023_08_01/beamerinnerthemeTACC16.sty @@ -0,0 +1,11 @@ +\mode + +\setbeamertemplate{itemize item}[triangle] +\setbeamertemplate{itemize subitem}[triangle] +\setbeamertemplate{itemize subsubitem}[triangle] +\setbeamertemplate{section in toc}{$\bullet$\hskip.5em\inserttocsection} +%\setbeamertemplate{subsection in toc}{} +\setbeamertemplate{subsubsection in toc}{} + +\mode + diff --git a/my_docs/23/lmod_zoom_mtg_2023_08_01/beamerouterthemeTACC.sty b/my_docs/23/lmod_zoom_mtg_2023_08_01/beamerouterthemeTACC.sty deleted file mode 120000 index da0a45d33..000000000 --- a/my_docs/23/lmod_zoom_mtg_2023_08_01/beamerouterthemeTACC.sty +++ /dev/null @@ -1 +0,0 @@ -../../beamer/beamerouterthemeTACC.sty \ No newline at end of file diff --git a/my_docs/23/lmod_zoom_mtg_2023_08_01/beamerouterthemeTACC.sty b/my_docs/23/lmod_zoom_mtg_2023_08_01/beamerouterthemeTACC.sty new file mode 100755 index 000000000..038580303 --- /dev/null +++ b/my_docs/23/lmod_zoom_mtg_2023_08_01/beamerouterthemeTACC.sty @@ -0,0 +1,196 @@ +% Copyright 2003 by Till Tantau +% +% This program can be redistributed and/or modified under the terms +% of the GNU Public License, version 2. + +\mode + +\setbeamertemplate{frametitle}[default][center] +\addtobeamertemplate{frametitle}{\vskip 4ex minus 4ex}{} + +% Here we define what appears at the bottom of each slide: the "footline". +\setbeamertemplate{footline}{% + \leavevmode% + + % Horizontal line dividing the rest of the slide from the footer? + % hrule goes all the way across... + % \hrule height.3pt% + % With \rule, you can specify the thickness + % \rule[raise-height]{width}{thickness} + \hspace{.025\textwidth}\rule{.95\textwidth}{.5pt} + + \hbox{% + % On the left half of the footer, insert the TACC logo + \begin{minipage}{.5\textwidth}% + \hskip .033\textwidth%Give horizontal space else this will set on the left edge of the slide! + % TACC logo with custom viewport! + \includegraphics[viewport=1 -1 135 35, clip=true, width=.4\textwidth]{figures/TACC_logo} + \end{minipage} + % + \begin{minipage}{.5\textwidth}% + \vskip .023\textheight% + \raggedleft% + \setlength{\rightskip}{.033\textwidth} + % + % If we are not on the first page, insert a page number + % For some reason, insertframenumber is buggy when you have fragile + % slides with verbatim environments in them... it tends to skip numbers + % for some reason! On the other hand, the pagenumber is incremented + % for *every* slide, including transition slides... + \ifnum \thepage>1 + % \insertshorttitle + \insertframenumber + % \insertframenumber/\inserttotalframenumber + % \insertpagenumber + \else % Do a phantom of whatever you do on other pages, so spacing matches + %$\phantom{\insertshorttitle}$ + $\phantom{\insertframenumber}$ + %$\phantom{\insertframenumber/\inserttotalframenumber}$ + %$\phantom{\insertpagenumber}$ + \fi + \hfill\includegraphics[width=.5\textwidth]{figures/UT_logo}% + \end{minipage}% + }% + \vskip .023\textheight% +} + + + + +\ifTACCheadernav + +\usesectionheadtemplate +{\hfill\insertsectionhead} +{\hfill\color{fg!50!bg}\insertsectionhead} + +% Head +\ifbeamer@compress + +% Here we define how the top of the frame looks, the "headline". +\setbeamertemplate{headline} +{% + \ifnum \thepage>1 + \leavevmode% + \begin{beamercolorbox}[wd=.5\paperwidth,ht=2.5ex,dp=1.125ex]{% + section in head/foot}% + \insertsectionnavigationhorizontal{.5\paperwidth}{\hskip0pt plus1filll}{}% + \end{beamercolorbox}% + \begin{beamercolorbox}[wd=.5\paperwidth,ht=2.5ex,dp=1.125ex]{% + subsection in head/foot}% + \insertsubsectionnavigationhorizontal{% + .5\paperwidth}{}{\hskip0pt plus1filll}% + \end{beamercolorbox}% + \fi %\thepage>1 +} + +\else% Not compressed + +\setbeamertemplate{headline} +{% + \ifnum \thepage>1 + \leavevmode% + \@tempdimb=2.4375ex% + \ifnum\beamer@subsectionmax<\beamer@sectionmax% + \multiply\@tempdimb by\beamer@sectionmax% + \else% + \multiply\@tempdimb by\beamer@subsectionmax% + \fi% + \ifdim\@tempdimb>0pt% + \advance\@tempdimb by 1.125ex% + \begin{beamercolorbox}[wd=.5\paperwidth,ht=\@tempdimb]{% + section in head/foot}% + \vbox to\@tempdimb{\vfil\insertsectionnavigation{.5\paperwidth}\vfil}% + \end{beamercolorbox}% + \begin{beamercolorbox}[wd=.5\paperwidth,ht=\@tempdimb]{% + subsection in head/foot}% + \vbox to\@tempdimb{\vfil\insertsubsectionnavigation{.5\paperwidth}\vfil}% + \end{beamercolorbox}% + \fi% + \fi % \thepage>1 +} + +\fi % end if compressed +\fi % TACCheadernav + + +\ifTACCheadertree + +\setbeamertemplate{headline} +{ + \begin{beamercolorbox}[wd=\paperwidth,colsep=1.5pt + ]{upper separation line head} + \end{beamercolorbox} + % + % Place short title + % + \begin{beamercolorbox}[wd=\paperwidth,ht=2.5ex,dp=1.125ex,% + leftskip=.3cm,rightskip=.3cm plus1fil]{title in head/foot} + \usebeamerfont{title in head/foot}\insertshorttitle + \end{beamercolorbox} + + % + % Place section + % + \begin{beamercolorbox}[wd=\paperwidth,ht=2.5ex,dp=1.125ex,% + leftskip=.3cm,rightskip=.3cm plus1fil]{section in head/foot} + \usebeamerfont{section in head/foot}% + %\ifbeamer@tree@showhooks + \setbox\beamer@tempbox=\hbox{\insertsectionhead}% + \ifdim\wd\beamer@tempbox>1pt% + \hskip2pt\raise1.9pt\hbox{\vrule width0.4pt height1.875ex\vrule width 5pt height0.4pt}% + \hskip1pt% + \fi% \ifdim + %\else% + %\hskip6pt% + %\fi% \ifbeamer + \insertsectionhead + \end{beamercolorbox} + +% +% Place subsection +% +\begin{beamercolorbox}[wd=\paperwidth,ht=2.5ex,dp=1.125ex,% + leftskip=.3cm,rightskip=.3cm plus1fil]{subsection in head/foot} + \usebeamerfont{subsection in head/foot}% + %\ifbeamer@tree@showhooks + \setbox\beamer@tempbox=\hbox{\insertsubsectionhead}% + \ifdim\wd\beamer@tempbox>1pt% + \hskip9.4pt\raise1.9pt\hbox{\vrule width0.4pt height1.875ex\vrule width 5pt height0.4pt}% + \hskip1pt% + \fi% \ifdim + %\else% + %\hskip12pt% + %\fi% \ifbeamer + \insertsubsectionhead +\end{beamercolorbox} + +% +% Place final separation box +% + \begin{beamercolorbox}[wd=\paperwidth,colsep=1.5pt + ]{lower separation line head} + \end{beamercolorbox} + + % + % Another matching rule which helps to frame the content + % + \hspace{.025\textwidth}\rule{.95\textwidth}{.5pt} +} +\fi % TACCheadertree + + +% The following command suppresses all navigation symbols. This is +% necessary in the TACC theme, since it overlaps where we want the +% logo to be. +\setbeamertemplate{navigation symbols}{} + +% Align the navigation symbols vertically (still overlaps our logo!) +%\setbeamertemplate{navigation symbols}[vertical]{} + +% Only places the slide-forward and slide-back symbol, but yes, +% this still overlaps our logo! +%\setbeamertemplate{navigation symbols}[only frame symbol]{} + + +\mode + diff --git a/my_docs/23/lmod_zoom_mtg_2023_08_01/beamerouterthemeTACC16.sty b/my_docs/23/lmod_zoom_mtg_2023_08_01/beamerouterthemeTACC16.sty deleted file mode 120000 index 54bd09537..000000000 --- a/my_docs/23/lmod_zoom_mtg_2023_08_01/beamerouterthemeTACC16.sty +++ /dev/null @@ -1 +0,0 @@ -../../beamer/beamerouterthemeTACC16.sty \ No newline at end of file diff --git a/my_docs/23/lmod_zoom_mtg_2023_08_01/beamerouterthemeTACC16.sty b/my_docs/23/lmod_zoom_mtg_2023_08_01/beamerouterthemeTACC16.sty new file mode 100755 index 000000000..d5e6388c7 --- /dev/null +++ b/my_docs/23/lmod_zoom_mtg_2023_08_01/beamerouterthemeTACC16.sty @@ -0,0 +1,312 @@ +% Antonio Gomez (agomez@tacc.utexas.edu) +% 4-20-17. Added option to put the footer on the right side + + + +\mode + +\usepackage{xcolor} +\usepackage{graphicx} +\usepackage{etoolbox} + + + +% This theme accepts the "rightfooter" option +% When used, it will put the TACC logo at the bottom of the slide on the right side +% By default, it goes to the left + +\xifaspectratio{ + {169} { + \pgfdeclareimage[width=\paperwidth]{titlebackground}{./figures/master169.jpg} + \if@rightfooterOption + \pgfdeclareimage[width=\paperwidth]{background}{./figures/secondary_right169.jpg} +\else + \pgfdeclareimage[width=\paperwidth]{background}{./figures/secondary169.jpg} +\fi +} +}[ +\pgfdeclareimage[width=\paperwidth]{titlebackground}{./figures/master.jpg} + \if@rightfooterOption + \pgfdeclareimage[width=\paperwidth]{background}{./figures/secondary_right.jpg} +\else + \pgfdeclareimage[width=\paperwidth]{background}{./figures/secondary.jpg} +\fi +] + +\setbeamertemplate{background canvas}{% +\xifaspectratio{ + {169} { + \ifnum\c@framenumber=1 % + \begin{picture}(0,0) + \put(-3,-256){% + \pgfuseimage{titlebackground} + } + \end{picture} + \else% + \begin{picture}(0,0) + \put(-3,-260){% + \pgfuseimage{background} + } + \end{picture} + \fi + } + {43} { + \ifnum\c@framenumber=1 % + \begin{picture}(0,0) + \put(-4,-274){% + \pgfuseimage{titlebackground} + } + \end{picture} + \else% + \begin{picture}(0,0) + \put(-4,-274){% + \pgfuseimage{background} + } + \end{picture} + \fi + } +} +} + + + +%\setbeamertemplate{background canvas}{% +% % On title page +% \ifnum\c@framenumber=1 % +% \begin{picture}(0,0) +% \put(0,-253){% +% \pgfuseimage{titlebackground} +% } +% \end{picture} +% +% \else% +% \xifaspectratio{ +% {169} { +% % Other frames background +% \begin{picture}(0,0) +% \put(-4,-260){% +% \pgfuseimage{background} +% } +% \end{picture} +% } +% }[ +% % Other frames background +% \begin{picture}(0,0) +% \put(-4,-274){% +% \pgfuseimage{background} +% } +% \end{picture} +% ] +% \fi% +%} + + +\setbeamertemplate{title page}{ +\vspace{40pt} +\begin{center} +\usebeamerfont{title} {\huge \inserttitle}\par +\vspace{4ex} +\usebeamerfont{author} { + \insertauthor +}\par +\vspace{2ex} +\usebeamerfont{institute}{ + \insertinstitute +} \par +\vspace{2ex} +\usebeamerfont{date}{ + \insertdate +} +\end{center} +} + + +\setbeamertemplate{frametitle}[default][center] +\setbeamertemplate{frametitle}{ + \makeatletter + \regexpatchcmd{\insertframetitle} + {(\c{usebeamertemplate}.*)\c{fi}} + {\c{NoCaseChange}\cB\{\1\cE\}\c{fi}} + {}{}% + \makeatother + \vskip1ex + \insertframetitle +} + +% Here we define what appears at the bottom of each slide: the "footline". +\setbeamertemplate{footline}{% + \leavevmode% + + % Horizontal line dividing the rest of the slide from the footer? + % hrule goes all the way across... + % \hrule height.3pt% + % With \rule, you can specify the thickness + % \rule[raise-height]{width}{thickness} + % \hspace{.025\textwidth}\rule{.95\textwidth}{.5pt} + + \hbox{% + \ifnum \thepage>1 + \if@rightfooterOption + \begin{minipage}{.2\textwidth}% + \hskip .05\textwidth%Give horizontal space else this will set on the left edge of the slide! + \end{minipage} + \else + \begin{minipage}{.4\textwidth}% + \hskip .05\textwidth%Give horizontal space else this will set on the left edge of the slide! + \end{minipage} + \fi + + + \begin{minipage}{\textwidth}% + % \vskip .023\textheight% + \raggedleft% + \setlength{\rightskip}{\textwidth} + \if@rightfooterOption + \hbox{% + \begin{beamercolorbox}[wd=0.7\textwidth,ht=2.25ex,dp=1ex,left]{author in head/foot}% + \insertshorttitle{} \hskip .01\textwidth | \hskip .01\textwidth \insertdate{} \hskip .01\textwidth | \hskip .01\textwidth \insertframenumber{} + \end{beamercolorbox}% + } + \else + \hbox{% + \begin{beamercolorbox}[wd=0.5\textwidth,ht=2.25ex,dp=1ex,left]{author in head/foot}% + \insertshorttitle{} \hskip .01\textwidth | \hskip .01\textwidth \insertdate{} \hskip .01\textwidth | \hskip .01\textwidth \insertframenumber{} + \end{beamercolorbox}% + } + \fi + + \end{minipage}% + \begin{minipage}{.05\textwidth}% + \end{minipage}% + \fi %\thepage>1 + }% + \vskip .023\textheight% + +} + + + + +\ifTACCheadernav + +\usesectionheadtemplate +{\hfill\insertsectionhead} +{\hfill\color{fg!50!bg}\insertsectionhead} + +% Head +\ifbeamer@compress + +% Here we define how the top of the frame looks, the "headline". +\setbeamertemplate{headline} +{% + \ifnum \thepage>1 + \leavevmode% + \begin{beamercolorbox}[wd=.5\paperwidth,ht=2.5ex,dp=1.125ex]{% + section in head/foot}% + \insertsectionnavigationhorizontal{.5\paperwidth}{\hskip0pt plus1filll}{}% + \end{beamercolorbox}% + \begin{beamercolorbox}[wd=.5\paperwidth,ht=2.5ex,dp=1.125ex]{% + subsection in head/foot}% + \insertsubsectionnavigationhorizontal{% + .5\paperwidth}{}{\hskip0pt plus1filll}% + \end{beamercolorbox}% + \fi %\thepage>1 +} + +\else% Not compressed + +\setbeamertemplate{headline} +{% + \ifnum \thepage>1 + \leavevmode% + \@tempdimb=2.4375ex% + \ifnum\beamer@subsectionmax<\beamer@sectionmax% + \multiply\@tempdimb by\beamer@sectionmax% + \else% + \multiply\@tempdimb by\beamer@subsectionmax% + \fi% + \ifdim\@tempdimb>0pt% + \advance\@tempdimb by 1.125ex% + \begin{beamercolorbox}[wd=.5\paperwidth,ht=\@tempdimb]{% + section in head/foot}% + \vbox to\@tempdimb{\vfil\insertsectionnavigation{.5\paperwidth}\vfil}% + \end{beamercolorbox}% + \begin{beamercolorbox}[wd=.5\paperwidth,ht=\@tempdimb]{% + subsection in head/foot}% + \vbox to\@tempdimb{\vfil\insertsubsectionnavigation{.5\paperwidth}\vfil}% + \end{beamercolorbox}% + \fi% + \fi % \thepage>1 +} + +\fi % end if compressed +\fi % TACCheadernav + + +\ifTACCheadertree + +\setbeamertemplate{headline} +{ + \begin{beamercolorbox}[wd=\paperwidth,colsep=1.5pt]{upper separation line head} + \end{beamercolorbox} + % + % Place short title + % + \begin{beamercolorbox}[wd=\paperwidth,ht=2.5ex,dp=1.125ex,% + leftskip=.3cm,rightskip=.3cm plus1fil]{title in head/foot} + \usebeamerfont{title in head/foot}\insertshorttitle + \end{beamercolorbox} + + % + % Place section + % + \begin{beamercolorbox}[wd=\paperwidth,ht=2.5ex,dp=1.125ex,% + leftskip=.3cm,rightskip=.3cm plus1fil]{section in head/foot} + \usebeamerfont{section in head/foot}% + %\ifbeamer@tree@showhooks + \setbox\beamer@tempbox=\hbox{\insertsectionhead}% + \ifdim\wd\beamer@tempbox>1pt% + \hskip2pt\raise1.9pt\hbox{\vrule width0.4pt height1.875ex\vrule width 5pt height0.4pt}% + \hskip1pt% + \fi + \insertsectionhead + \end{beamercolorbox} + +% +% Place subsection +% +\begin{beamercolorbox}[wd=\paperwidth,ht=2.5ex,dp=1.125ex,% + leftskip=.3cm,rightskip=.3cm plus1fil]{subsection in head/foot} + \usebeamerfont{subsection in head/foot}% + %\ifbeamer@tree@showhooks + \setbox\beamer@tempbox=\hbox{\insertsubsectionhead}% + \ifdim\wd\beamer@tempbox>1pt% + \hskip9.4pt\raise1.9pt\hbox{\vrule width0.4pt height1.875ex\vrule width 5pt height0.4pt}% + \hskip1pt% + \fi + \insertsubsectionhead +\end{beamercolorbox} + +% +% Place final separation box +% + \begin{beamercolorbox}[wd=\paperwidth,colsep=1.5pt + ]{lower separation line head} + \end{beamercolorbox} + + % + % Another matching rule which helps to frame the content + % + \hspace{.025\textwidth}\rule{.95\textwidth}{.5pt} +} +\fi % TACCheadertree + + +% The following command suppresses all navigation symbols. This is +% necessary in the TACC theme, since it overlaps where we want the +% logo to be. +\setbeamertemplate{navigation symbols}{} + + +\mode + diff --git a/my_docs/23/lmod_zoom_mtg_2023_08_01/beamerthemeTACC.sty b/my_docs/23/lmod_zoom_mtg_2023_08_01/beamerthemeTACC.sty deleted file mode 120000 index 5c339abd4..000000000 --- a/my_docs/23/lmod_zoom_mtg_2023_08_01/beamerthemeTACC.sty +++ /dev/null @@ -1 +0,0 @@ -../../beamer/beamerthemeTACC.sty \ No newline at end of file diff --git a/my_docs/23/lmod_zoom_mtg_2023_08_01/beamerthemeTACC.sty b/my_docs/23/lmod_zoom_mtg_2023_08_01/beamerthemeTACC.sty new file mode 100755 index 000000000..c6a1b1269 --- /dev/null +++ b/my_docs/23/lmod_zoom_mtg_2023_08_01/beamerthemeTACC.sty @@ -0,0 +1,26 @@ +%% TACC theme for beamer + +\newif\ifTACCheadernav +\DeclareOption{headernav}{\global\TACCheadernavtrue} + +\newif\ifTACCheadertree +\DeclareOption{headertree}{\global\TACCheadertreetrue} +\ProcessOptions + +\mode + +\usefonttheme{TACC} +\usecolortheme{TACC} +\useinnertheme{TACC} +\useoutertheme{TACC} + +\mode + + +\newcommand{\event}[1]{% + \makeatletter% + \def\TACC@eventname{#1}% + \makeatother} + +\newcommand{\sectionframe}[1]{\section{#1}\frame{\Large\textbf{#1}}} +\newcommand{\subsectionframe}[1]{\subsection{#1}\frame{\large\textbf{#1}}} diff --git a/my_docs/23/lmod_zoom_mtg_2023_08_01/beamerthemeTACC16.sty b/my_docs/23/lmod_zoom_mtg_2023_08_01/beamerthemeTACC16.sty deleted file mode 120000 index 7a9d4d296..000000000 --- a/my_docs/23/lmod_zoom_mtg_2023_08_01/beamerthemeTACC16.sty +++ /dev/null @@ -1 +0,0 @@ -../../beamer/beamerthemeTACC16.sty \ No newline at end of file diff --git a/my_docs/23/lmod_zoom_mtg_2023_08_01/beamerthemeTACC16.sty b/my_docs/23/lmod_zoom_mtg_2023_08_01/beamerthemeTACC16.sty new file mode 100755 index 000000000..b522d0207 --- /dev/null +++ b/my_docs/23/lmod_zoom_mtg_2023_08_01/beamerthemeTACC16.sty @@ -0,0 +1,61 @@ +%% TACC theme for beamer + + +\newif\if@rightfooterOption +\@rightfooterOptionfalse +\DeclareOption{rightfooter}{\@rightfooterOptiontrue} +\ProcessOptions + + +\newif\ifTACCheadernav +\DeclareOption{headernav}{\global\TACCheadernavtrue} + +\newif\ifTACCheadertree +\DeclareOption{headertree}{\global\TACCheadertreetrue} +\ProcessOptions + +\usepackage{xparse} +\ExplSyntaxOn +\NewDocumentCommand{\ifaspectratio}{mmm} + { + % Recover the option from those passed to the class + \keys_set:nf { zunbeltz/beameroptions } { \use:c { opt@beamer.cls } } + \str_if_eq:nVTF { #1 } \l_zunbeltz_aspectratio_tl { #2 } { #3 } + } +\NewDocumentCommand{\xifaspectratio}{mO{}} + { + % Recover the option from those passed to the class + \keys_set:nf { zunbeltz/beameroptions } { \use:c { opt@beamer.cls } } + \str_case:VnF \l_zunbeltz_aspectratio_tl { #1 } { #2 } + } +% We need to define only one key, the other are treated as `unknown' +\keys_define:nn { zunbeltz/beameroptions } + { + aspectratio .tl_set:N = \l_zunbeltz_aspectratio_tl, + aspectratio .initial:n = 43, + unknown .code:n = {}, + } + +% Generate the variants we need +\cs_generate_variant:Nn \keys_set:nn { nf } +\cs_generate_variant:Nn \str_if_eq:nnTF { nV } +\cs_generate_variant:Nn \str_case:nnF { V } +\ExplSyntaxOff + +\mode + +\usefonttheme{TACC16} +\useinnertheme{TACC16} +\useoutertheme{TACC16} +\usecolortheme{TACC16} + +\mode + + +\newcommand{\event}[1]{% + \makeatletter% + \def\TACC@eventname{#1}% + \makeatother} + +\newcommand{\sectionframe}[1]{\section{#1}\frame{\Large\textbf{#1}}} +\newcommand{\subsectionframe}[1]{\subsection{#1}\frame{\large\textbf{#1}}} diff --git a/my_docs/23/lmod_zoom_mtg_2023_08_01/figures b/my_docs/23/lmod_zoom_mtg_2023_08_01/figures deleted file mode 120000 index ddafd8974..000000000 --- a/my_docs/23/lmod_zoom_mtg_2023_08_01/figures +++ /dev/null @@ -1 +0,0 @@ -../../beamer/figures \ No newline at end of file diff --git a/my_docs/23/lmod_zoom_mtg_2023_08_01/figures/TACC_logo.pdf b/my_docs/23/lmod_zoom_mtg_2023_08_01/figures/TACC_logo.pdf new file mode 100755 index 000000000..c018a20cb Binary files /dev/null and b/my_docs/23/lmod_zoom_mtg_2023_08_01/figures/TACC_logo.pdf differ diff --git a/my_docs/23/lmod_zoom_mtg_2023_08_01/figures/UT_logo.pdf b/my_docs/23/lmod_zoom_mtg_2023_08_01/figures/UT_logo.pdf new file mode 100755 index 000000000..d5b42e752 Binary files /dev/null and b/my_docs/23/lmod_zoom_mtg_2023_08_01/figures/UT_logo.pdf differ diff --git a/my_docs/23/lmod_zoom_mtg_2023_08_01/figures/cc.png b/my_docs/23/lmod_zoom_mtg_2023_08_01/figures/cc.png new file mode 100644 index 000000000..8a532ff8f Binary files /dev/null and b/my_docs/23/lmod_zoom_mtg_2023_08_01/figures/cc.png differ diff --git a/my_docs/23/lmod_zoom_mtg_2023_08_01/figures/isa.png b/my_docs/23/lmod_zoom_mtg_2023_08_01/figures/isa.png new file mode 100644 index 000000000..f95d985e7 Binary files /dev/null and b/my_docs/23/lmod_zoom_mtg_2023_08_01/figures/isa.png differ diff --git a/my_docs/23/lmod_zoom_mtg_2023_08_01/figures/master.jpg b/my_docs/23/lmod_zoom_mtg_2023_08_01/figures/master.jpg new file mode 100644 index 000000000..f5c56c04a Binary files /dev/null and b/my_docs/23/lmod_zoom_mtg_2023_08_01/figures/master.jpg differ diff --git a/my_docs/23/lmod_zoom_mtg_2023_08_01/figures/master169.jpg b/my_docs/23/lmod_zoom_mtg_2023_08_01/figures/master169.jpg new file mode 100644 index 000000000..b215776eb Binary files /dev/null and b/my_docs/23/lmod_zoom_mtg_2023_08_01/figures/master169.jpg differ diff --git a/my_docs/23/lmod_zoom_mtg_2023_08_01/figures/master169.png b/my_docs/23/lmod_zoom_mtg_2023_08_01/figures/master169.png new file mode 100644 index 000000000..bc5c0ed12 Binary files /dev/null and b/my_docs/23/lmod_zoom_mtg_2023_08_01/figures/master169.png differ diff --git a/my_docs/23/lmod_zoom_mtg_2023_08_01/figures/secondary.jpg b/my_docs/23/lmod_zoom_mtg_2023_08_01/figures/secondary.jpg new file mode 100644 index 000000000..d905a95c9 Binary files /dev/null and b/my_docs/23/lmod_zoom_mtg_2023_08_01/figures/secondary.jpg differ diff --git a/my_docs/23/lmod_zoom_mtg_2023_08_01/figures/secondary169.jpg b/my_docs/23/lmod_zoom_mtg_2023_08_01/figures/secondary169.jpg new file mode 100644 index 000000000..4eb017957 Binary files /dev/null and b/my_docs/23/lmod_zoom_mtg_2023_08_01/figures/secondary169.jpg differ diff --git a/my_docs/23/lmod_zoom_mtg_2023_08_01/figures/secondary169.png b/my_docs/23/lmod_zoom_mtg_2023_08_01/figures/secondary169.png new file mode 100644 index 000000000..cb9060a56 Binary files /dev/null and b/my_docs/23/lmod_zoom_mtg_2023_08_01/figures/secondary169.png differ diff --git a/my_docs/23/lmod_zoom_mtg_2023_08_01/figures/secondary_right.jpg b/my_docs/23/lmod_zoom_mtg_2023_08_01/figures/secondary_right.jpg new file mode 100644 index 000000000..f25f93a58 Binary files /dev/null and b/my_docs/23/lmod_zoom_mtg_2023_08_01/figures/secondary_right.jpg differ diff --git a/my_docs/23/lmod_zoom_mtg_2023_08_01/figures/secondary_right169.jpg b/my_docs/23/lmod_zoom_mtg_2023_08_01/figures/secondary_right169.jpg new file mode 100644 index 000000000..567a1078f Binary files /dev/null and b/my_docs/23/lmod_zoom_mtg_2023_08_01/figures/secondary_right169.jpg differ diff --git a/my_docs/23/lmod_zoom_mtg_2023_08_01/themes b/my_docs/23/lmod_zoom_mtg_2023_08_01/themes deleted file mode 120000 index a98530730..000000000 --- a/my_docs/23/lmod_zoom_mtg_2023_08_01/themes +++ /dev/null @@ -1 +0,0 @@ -../../beamer/themes \ No newline at end of file diff --git a/my_docs/23/lmod_zoom_mtg_2023_08_01/themes/beamercolorthemeTACC16.sty b/my_docs/23/lmod_zoom_mtg_2023_08_01/themes/beamercolorthemeTACC16.sty new file mode 100644 index 000000000..248ae8cb6 --- /dev/null +++ b/my_docs/23/lmod_zoom_mtg_2023_08_01/themes/beamercolorthemeTACC16.sty @@ -0,0 +1,193 @@ +% Copyright 2003 by Till Tantau . +% +% This program can be redistributed and/or modified under the terms +% of the GNU Public License, version 2. + +\mode + +\usepackage{textcase,regexpatch} + +\setbeamertemplate{blocks}[rounded][shadow=true] + + +\definecolor{TACCred}{RGB}{180,13,29} +\definecolor{TACCorange}{RGB}{210,104,43} +\definecolor{TACCblue}{RGB}{21,77,122} +%\definecolor{TACCgreen}{RGB}{30,134,104} +\definecolor{TACCgreen}{RGB}{49,168,51} + +% I downloaded a gimp color palette from +% http://maururu.net/2007/latex-beamer-color-palette/ +% Which provides rgb values (I think) for several of the +% default beamer themes. You can open this in gimp by +% opening the Palettes dialog, right-clicking anywhere and choosing +% 'Import Palette'. A color in there called 'default added blue' +% appeared to be approximately what I wanted. It had the triple +% of values 141 145 208. If you double-click on this in the +% palette editor it gives you a bunch of information. You can't +% use these values directly to set a color...it just comes out white. +% I think definecolor is expecting something normalized by 255. Yes! + + +%%% +% Set the normal text color +%%% +\setbeamercolor{normal text}{fg=black} %,bg=white} +\setbeamercolor{example text}{fg=TACCgreen} +\setbeamercolor{alerted text}{fg=TACCorange} + + +\setbeamercolor{structure}{fg=black} +%\setbeamercolor{structure}{fg=black} + +\setbeamercolor{background canvas}{parent=normal text} +\setbeamercolor{background}{parent=background canvas} + +\setbeamercolor{palette primary}{use=structure,fg=structure.fg} +\setbeamercolor{palette secondary}{use=structure,fg=structure.fg!75!black} +\setbeamercolor{palette tertiary}{use=structure,fg=structure.fg!50!black} +\setbeamercolor{palette quaternary}{fg=black} + +\setbeamercolor{palette sidebar primary}{use=normal text,fg=normal text.fg} +\setbeamercolor{palette sidebar secondary}{use=structure,fg=structure.fg} +\setbeamercolor{palette sidebar tertiary}{use=normal text,fg=normal text.fg} +\setbeamercolor{palette sidebar quaternary}{use=structure,fg=structure.fg} + +\setbeamercolor{math text}{} +\setbeamercolor{math text inlined}{parent=math text} +\setbeamercolor{math text displayed}{parent=math text} + +\setbeamercolor{normal text in math text}{} + +\setbeamercolor{local structure}{parent=structure} + +\setbeamercolor{titlelike}{parent=structure} + +\setbeamercolor{title}{parent=titlelike} +\setbeamercolor{title in head/foot}{parent=palette quaternary} +\setbeamercolor{title in sidebar}{parent=palette sidebar quaternary} + +\setbeamercolor{subtitle}{parent=title} + +\setbeamercolor{author}{} +\setbeamercolor{author in head/foot}{parent=palette primary} +\setbeamercolor{author in sidebar}{use=palette sidebar tertiary,fg=palette sidebar tertiary.fg} + +\setbeamercolor{institute}{} +\setbeamercolor{institute in head/foot}{parent=palette tertiary} +\setbeamercolor{institute in sidebar}{use=palette sidebar tertiary,fg=palette sidebar tertiary.fg} + +\setbeamercolor{date}{} +\setbeamercolor{date in head/foot}{parent=palette secondary} +\setbeamercolor{date in sidebar}{use=palette sidebar tertiary,fg=palette sidebar tertiary.fg} + +\setbeamercolor{titlegraphic}{} + +\setbeamercolor{part name}{} +\setbeamercolor{part title}{parent=titlelike} + +\setbeamercolor{section in toc}{parent=structure} +\setbeamercolor{section in toc shaded}{parent=section in toc} +\setbeamercolor{section in head/foot}{parent=palette tertiary} +\setbeamercolor{section in sidebar}{parent=palette sidebar secondary} +\setbeamercolor{section in sidebar shaded}{use=section in sidebar,fg=section in sidebar.fg!40!bg} +\setbeamercolor{section number projected}{parent=item projected} + +\setbeamercolor{subsection in toc}{} +\setbeamercolor{subsection in toc shaded}{parent=subsection in toc} +\setbeamercolor{subsection in head/foot}{parent=palette secondary} +\setbeamercolor{subsection in sidebar}{parent=palette sidebar primary} +\setbeamercolor{subsection in sidebar shaded}{use=subsection in sidebar,fg=subsection in sidebar.fg!40!bg} +\setbeamercolor{subsection number projected}{parent={subitem projected}} + +\setbeamercolor{subsubsection in toc}{parent=subsection in toc} +\setbeamercolor{subsubsection in toc shaded}{parent=subsubsection in toc} +\setbeamercolor{subsubsection in head/foot}{parent=subsection in head/foot} +\setbeamercolor{subsubsection in sidebar}{parent=subsection in sidebar} +\setbeamercolor{subsubsection in sidebar shaded}{parent=subsection in sidebar shaded} +\setbeamercolor{subsubsection number projected}{parent=subsubitem projected} + +\setbeamercolor{headline}{} +\setbeamercolor{footline}{} + +\setbeamercolor{sidebar}{} +\setbeamercolor{sidebar left}{parent=sidebar} +\setbeamercolor{sidebar right}{parent=sidebar} + +\setbeamercolor{logo}{parent=palette secondary} + +\setbeamercolor{frametitle}{parent=titlelike} +\setbeamercolor{framesubtitle}{parent=frametitle} + +\setbeamercolor{frametitle right}{parent=frametitle} + +\setbeamercolor{caption}{} +\setbeamercolor{caption name}{parent=structure} + +\setbeamercolor{button}{use=local structure,bg=local structure.fg!50!bg,fg=white} +\setbeamercolor{button border}{use=button,fg=button.bg} +\setbeamercolor{navigation symbols}{use=structure,fg=structure.fg!40!bg} +\setbeamercolor{navigation symbols dimmed}{use=structure,fg=structure.fg!20!bg} +\setbeamercolor{mini frame}{parent=section in head/foot} + +\setbeamercolor{block body}{fg=black} +\setbeamercolor{block body alerted}{fg=black} +\setbeamercolor{block body example}{fg=black} + +\setbeamercolor{block title}{bg=TACCblue,fg=white} +\setbeamercolor{block title alerted}{bg=TACCred,fg=white} +\setbeamercolor{block title example}{bg=TACCgreen,fg=white} + +\setbeamercolor{item}{parent=local structure} +\setbeamercolor{subitem}{parent=item} +\setbeamercolor{subsubitem}{parent=subitem} + +\setbeamercolor{item projected}{parent=item,use=item,fg=black,bg=item.fg} +\setbeamercolor{subitem projected}{parent=item projected} +\setbeamercolor{subsubitem projected}{parent=subitem projected} + +\setbeamercolor{enumerate item}{parent=item} +\setbeamercolor{enumerate subitem}{parent=subitem} +\setbeamercolor{enumerate subsubitem}{parent=subsubitem} + +\setbeamercolor{itemize item}{parent=item} +\setbeamercolor{itemize subitem}{parent=subitem} +\setbeamercolor{itemize subsubitem}{parent=subsubitem} + +\setbeamercolor{itemize/enumerate body}{} +\setbeamercolor{itemize/enumerate subbody}{} +\setbeamercolor{itemize/enumerate subsubbody}{} + +\setbeamercolor{description item}{parent=item} + +\setbeamercolor{bibliography item}{parent=item} + +\setbeamercolor{bibliography entry author}{use=structure,fg=structure.fg} +\setbeamercolor{bibliography entry title}{use=normal text,fg=normal text.fg} +\setbeamercolor{bibliography entry location}{use=structure,fg=structure.fg!65!bg} +\setbeamercolor{bibliography entry note}{use=structure,fg=structure.fg!65!bg} + +\setbeamercolor{separation line}{} + +\setbeamercolor{upper separation line head}{parent=separation line} +\setbeamercolor{middle separation line head}{parent=separation line} +\setbeamercolor{lower separation line head}{parent=separation line} + +\setbeamercolor{upper separation line foot}{parent=separation line} +\setbeamercolor{middle separation line foot}{parent=separation line} +\setbeamercolor{lower separation line foot}{parent=separation line} + +\setbeamercolor{abstract}{} +\setbeamercolor{abstract title}{parent=structure} + +\setbeamercolor{verse}{} + +\setbeamercolor{quotation}{} +\setbeamercolor{quote}{parent=quotation} + +\setbeamercolor{page number in head/foot}{fg=fg!50!bg} + +\setbeamercolor{qed symbol}{parent=structure} + +\mode + diff --git a/my_docs/23/lmod_zoom_mtg_2023_08_01/themes/beamerfontthemeTACC16.sty b/my_docs/23/lmod_zoom_mtg_2023_08_01/themes/beamerfontthemeTACC16.sty new file mode 100644 index 000000000..d0fc325cc --- /dev/null +++ b/my_docs/23/lmod_zoom_mtg_2023_08_01/themes/beamerfontthemeTACC16.sty @@ -0,0 +1,21 @@ +% Copyright 2003 by Till Tantau +% +% This program can be redistributed and/or modified under the terms +% of the GNU Public License, version 2. + +\mode +\setbeamerfont{title}{parent=structure,size=\LARGE,series=\bfseries} +\setbeamerfont{author}{parent=structure,size=\large, series=\normalfont} +\setbeamerfont{frametitle}{parent=structure,size=\LARGE,series=\bfseries} +\setbeamerfont{framesubtitle}{parent=frametitle,size=\small} + +%\usefonttheme{professionalfonts} % using non standard fonts for beamer +%\usefonttheme{serif} % default family is serif +%\usepackage{fontspec} +%\setmainfont{Century Gothic} + +%\usepackage{fontspec} +\usepackage{libertine} + +\mode + diff --git a/my_docs/23/lmod_zoom_mtg_2023_08_01/themes/beamerinnerthemeTACC16.sty b/my_docs/23/lmod_zoom_mtg_2023_08_01/themes/beamerinnerthemeTACC16.sty new file mode 100644 index 000000000..f7f454e1d --- /dev/null +++ b/my_docs/23/lmod_zoom_mtg_2023_08_01/themes/beamerinnerthemeTACC16.sty @@ -0,0 +1,11 @@ +\mode + +\setbeamertemplate{itemize item}[triangle] +\setbeamertemplate{itemize subitem}[triangle] +\setbeamertemplate{itemize subsubitem}[triangle] +\setbeamertemplate{section in toc}{$\bullet$\hskip.5em\inserttocsection} +%\setbeamertemplate{subsection in toc}{} +\setbeamertemplate{subsubsection in toc}{} + +\mode + diff --git a/my_docs/23/lmod_zoom_mtg_2023_08_01/themes/beamerouterthemeTACC16-169.sty b/my_docs/23/lmod_zoom_mtg_2023_08_01/themes/beamerouterthemeTACC16-169.sty new file mode 100644 index 000000000..c62f9ed04 --- /dev/null +++ b/my_docs/23/lmod_zoom_mtg_2023_08_01/themes/beamerouterthemeTACC16-169.sty @@ -0,0 +1,247 @@ +% Copyright 2003 by Till Tantau +% +% This program can be redistributed and/or modified under the terms +% of the GNU Public License, version 2. + +\mode + +\usepackage{xcolor} +\usepackage{graphicx} +\usepackage{etoolbox} + +\pgfdeclareimage[width=\paperwidth]{titlebackground}{./figures/master169.png} +\pgfdeclareimage[width=\paperwidth]{background}{./figures/secondary169.png} + +\setbeamertemplate{background canvas}{% + \ifnum\c@framenumber=1% + \begin{picture}(0,0) + \put(-0.15,-250){% + \pgfuseimage{titlebackground} + } + %\put(0,-130.7){% + + %\begin{minipage}[b][45mm][t]{\textwidth}%{226mm} + %\begin{center} + % \usebeamerfont{title}{\MakeTextUppercase{\inserttitle}\par} + %\vspace{2ex} + %\usebeamerfont{author}{\insertauthor} + % \end{center} + %\end{minipage} + %} + \end{picture} + % On title page + \else% + % Other frames background + \begin{picture}(0,0) + \put(-0.15,-255.55){% + \pgfuseimage{background} + } + \end{picture} + \fi% +} + + +\setbeamertemplate{title page}{ +\vspace{40pt} +\begin{center} +\usebeamerfont{title} {\huge \inserttitle}\par +\vspace{4ex} +\usebeamerfont{author} { + \insertauthor +}\par +\vspace{2ex} +\usebeamerfont{institute}{ + \insertinstitute +} \par +\vspace{2ex} +\usebeamerfont{date}{ + \insertdate +} +\end{center} +} + + +\setbeamertemplate{frametitle}[default][center] +\setbeamertemplate{frametitle}{ + \makeatletter + \regexpatchcmd{\insertframetitle} + {(\c{usebeamertemplate}.*)\c{fi}} + {\c{NoCaseChange}\cB\{\1\cE\}\c{fi}} + {}{}% + \makeatother + \vskip1ex + \insertframetitle +} + +% Here we define what appears at the bottom of each slide: the "footline". +\setbeamertemplate{footline}{% + \leavevmode% + + % Horizontal line dividing the rest of the slide from the footer? + % hrule goes all the way across... + % \hrule height.3pt% + % With \rule, you can specify the thickness + % \rule[raise-height]{width}{thickness} + % \hspace{.025\textwidth}\rule{.95\textwidth}{.5pt} + + \hbox{% + \ifnum \thepage>1 + % On the left half of the footer, insert the TACC of + \begin{minipage}{.2\textwidth}% + \hskip .05\textwidth%Give horizontal space else this will set on the left edge of the slide! + % \includegraphics[width=.8\textwidth]{TACC_logo.png} + \end{minipage} + + + \begin{minipage}{\textwidth}% + % \vskip .023\textheight% + \raggedleft% + \setlength{\rightskip}{\textwidth} + \hbox{% + \begin{beamercolorbox}[wd=0.7\textwidth,ht=2.25ex,dp=1ex,left]{author in head/foot}% + \insertshorttitle{} \hskip .01\textwidth | \hskip .01\textwidth \insertdate{} \hskip .01\textwidth | \hskip .01\textwidth \insertframenumber{} + \end{beamercolorbox}% + } + + % + % If we are not on the first page, insert a page number + % For some reason, insertframenumber is buggy when you have fragile + % slides with verbatim environments in them... it tends to skip numbers + % for some reason! On the other hand, the pagenumber is incremented + % for *every* slide, including transition slides... + % \hfill\includegraphics[width=\textwidth]{tacc_ut.png} + \end{minipage}% + \begin{minipage}{.05\textwidth}% + \end{minipage}% + \fi %\thepage>1 + }% + \vskip .023\textheight% + +} + + + + +\ifTACCheadernav + +\usesectionheadtemplate +{\hfill\insertsectionhead} +{\hfill\color{fg!50!bg}\insertsectionhead} + +% Head +\ifbeamer@compress + +% Here we define how the top of the frame looks, the "headline". +\setbeamertemplate{headline} +{% + \ifnum \thepage>1 + \leavevmode% + \begin{beamercolorbox}[wd=.5\paperwidth,ht=2.5ex,dp=1.125ex]{% + section in head/foot}% + \insertsectionnavigationhorizontal{.5\paperwidth}{\hskip0pt plus1filll}{}% + \end{beamercolorbox}% + \begin{beamercolorbox}[wd=.5\paperwidth,ht=2.5ex,dp=1.125ex]{% + subsection in head/foot}% + \insertsubsectionnavigationhorizontal{% + .5\paperwidth}{}{\hskip0pt plus1filll}% + \end{beamercolorbox}% + \fi %\thepage>1 +} + +\else% Not compressed + +\setbeamertemplate{headline} +{% + \ifnum \thepage>1 + \leavevmode% + \@tempdimb=2.4375ex% + \ifnum\beamer@subsectionmax<\beamer@sectionmax% + \multiply\@tempdimb by\beamer@sectionmax% + \else% + \multiply\@tempdimb by\beamer@subsectionmax% + \fi% + \ifdim\@tempdimb>0pt% + \advance\@tempdimb by 1.125ex% + \begin{beamercolorbox}[wd=.5\paperwidth,ht=\@tempdimb]{% + section in head/foot}% + \vbox to\@tempdimb{\vfil\insertsectionnavigation{.5\paperwidth}\vfil}% + \end{beamercolorbox}% + \begin{beamercolorbox}[wd=.5\paperwidth,ht=\@tempdimb]{% + subsection in head/foot}% + \vbox to\@tempdimb{\vfil\insertsubsectionnavigation{.5\paperwidth}\vfil}% + \end{beamercolorbox}% + \fi% + \fi % \thepage>1 +} + +\fi % end if compressed +\fi % TACCheadernav + + +\ifTACCheadertree + +\setbeamertemplate{headline} +{ + \begin{beamercolorbox}[wd=\paperwidth,colsep=1.5pt]{upper separation line head} + \end{beamercolorbox} + % + % Place short title + % + \begin{beamercolorbox}[wd=\paperwidth,ht=2.5ex,dp=1.125ex,% + leftskip=.3cm,rightskip=.3cm plus1fil]{title in head/foot} + \usebeamerfont{title in head/foot}\insertshorttitle + \end{beamercolorbox} + + % + % Place section + % + \begin{beamercolorbox}[wd=\paperwidth,ht=2.5ex,dp=1.125ex,% + leftskip=.3cm,rightskip=.3cm plus1fil]{section in head/foot} + \usebeamerfont{section in head/foot}% + %\ifbeamer@tree@showhooks + \setbox\beamer@tempbox=\hbox{\insertsectionhead}% + \ifdim\wd\beamer@tempbox>1pt% + \hskip2pt\raise1.9pt\hbox{\vrule width0.4pt height1.875ex\vrule width 5pt height0.4pt}% + \hskip1pt% + \fi + \insertsectionhead + \end{beamercolorbox} + +% +% Place subsection +% +\begin{beamercolorbox}[wd=\paperwidth,ht=2.5ex,dp=1.125ex,% + leftskip=.3cm,rightskip=.3cm plus1fil]{subsection in head/foot} + \usebeamerfont{subsection in head/foot}% + %\ifbeamer@tree@showhooks + \setbox\beamer@tempbox=\hbox{\insertsubsectionhead}% + \ifdim\wd\beamer@tempbox>1pt% + \hskip9.4pt\raise1.9pt\hbox{\vrule width0.4pt height1.875ex\vrule width 5pt height0.4pt}% + \hskip1pt% + \fi + \insertsubsectionhead +\end{beamercolorbox} + +% +% Place final separation box +% + \begin{beamercolorbox}[wd=\paperwidth,colsep=1.5pt + ]{lower separation line head} + \end{beamercolorbox} + + % + % Another matching rule which helps to frame the content + % + \hspace{.025\textwidth}\rule{.95\textwidth}{.5pt} +} +\fi % TACCheadertree + + +% The following command suppresses all navigation symbols. This is +% necessary in the TACC theme, since it overlaps where we want the +% logo to be. +\setbeamertemplate{navigation symbols}{} + + +\mode + diff --git a/my_docs/23/lmod_zoom_mtg_2023_08_01/themes/beamerouterthemeTACC16.sty b/my_docs/23/lmod_zoom_mtg_2023_08_01/themes/beamerouterthemeTACC16.sty new file mode 100644 index 000000000..c5b178018 --- /dev/null +++ b/my_docs/23/lmod_zoom_mtg_2023_08_01/themes/beamerouterthemeTACC16.sty @@ -0,0 +1,247 @@ +% Copyright 2003 by Till Tantau +% +% This program can be redistributed and/or modified under the terms +% of the GNU Public License, version 2. + +\mode + +\usepackage{xcolor} +\usepackage{graphicx} +\usepackage{etoolbox} + +\pgfdeclareimage[width=\paperwidth]{titlebackground}{master.jpg} +\pgfdeclareimage[width=\paperwidth]{background}{secondary.jpg} + +\setbeamertemplate{background canvas}{% + \ifnum\c@framenumber=1% + \begin{picture}(0,0) + \put(0,-273){% + \pgfuseimage{titlebackground} + } + %\put(0,-130.7){% + + %\begin{minipage}[b][45mm][t]{\textwidth}%{226mm} + %\begin{center} + % \usebeamerfont{title}{\MakeTextUppercase{\inserttitle}\par} + %\vspace{2ex} + %\usebeamerfont{author}{\insertauthor} + % \end{center} + %\end{minipage} + %} + \end{picture} + % On title page + \else% + % Other frames background + \begin{picture}(0,0) + \put(0,-273){% + \pgfuseimage{background} + } + \end{picture} + \fi% +} + + +\setbeamertemplate{title page}{ +\vspace{40pt} +\begin{center} +\usebeamerfont{title} {\huge \inserttitle}\par +\vspace{4ex} +\usebeamerfont{author} { + \insertauthor +}\par +\vspace{2ex} +\usebeamerfont{institute}{ + \insertinstitute +} \par +\vspace{2ex} +\usebeamerfont{date}{ + \insertdate +} +\end{center} +} + + +\setbeamertemplate{frametitle}[default][center] +\setbeamertemplate{frametitle}{ + \makeatletter + \regexpatchcmd{\insertframetitle} + {(\c{usebeamertemplate}.*)\c{fi}} + {\c{NoCaseChange}\cB\{\1\cE\}\c{fi}} + {}{}% + \makeatother + \vskip1ex + \insertframetitle +} + +% Here we define what appears at the bottom of each slide: the "footline". +\setbeamertemplate{footline}{% + \leavevmode% + + % Horizontal line dividing the rest of the slide from the footer? + % hrule goes all the way across... + % \hrule height.3pt% + % With \rule, you can specify the thickness + % \rule[raise-height]{width}{thickness} + % \hspace{.025\textwidth}\rule{.95\textwidth}{.5pt} + + \hbox{% + \ifnum \thepage>1 + % On the left half of the footer, insert the TACC of + \begin{minipage}{.2\textwidth}% + \hskip .05\textwidth%Give horizontal space else this will set on the left edge of the slide! + % \includegraphics[width=.8\textwidth]{figures/TACC_logo.png} + \end{minipage} + + + \begin{minipage}{\textwidth}% + % \vskip .023\textheight% + \raggedleft% + \setlength{\rightskip}{\textwidth} + \hbox{% + \begin{beamercolorbox}[wd=0.7\textwidth,ht=2.25ex,dp=1ex,left]{author in head/foot}% + \insertshorttitle{} \hskip .01\textwidth | \hskip .01\textwidth \insertdate{} \hskip .01\textwidth | \hskip .01\textwidth \insertframenumber{} + \end{beamercolorbox}% + } + + % + % If we are not on the first page, insert a page number + % For some reason, insertframenumber is buggy when you have fragile + % slides with verbatim environments in them... it tends to skip numbers + % for some reason! On the other hand, the pagenumber is incremented + % for *every* slide, including transition slides... + % \hfill\includegraphics[width=\textwidth]{figures/tacc_ut.png} + \end{minipage}% + \begin{minipage}{.05\textwidth}% + \end{minipage}% + \fi %\thepage>1 + }% + \vskip .023\textheight% + +} + + + + +\ifTACCheadernav + +\usesectionheadtemplate +{\hfill\insertsectionhead} +{\hfill\color{fg!50!bg}\insertsectionhead} + +% Head +\ifbeamer@compress + +% Here we define how the top of the frame looks, the "headline". +\setbeamertemplate{headline} +{% + \ifnum \thepage>1 + \leavevmode% + \begin{beamercolorbox}[wd=.5\paperwidth,ht=2.5ex,dp=1.125ex]{% + section in head/foot}% + \insertsectionnavigationhorizontal{.5\paperwidth}{\hskip0pt plus1filll}{}% + \end{beamercolorbox}% + \begin{beamercolorbox}[wd=.5\paperwidth,ht=2.5ex,dp=1.125ex]{% + subsection in head/foot}% + \insertsubsectionnavigationhorizontal{% + .5\paperwidth}{}{\hskip0pt plus1filll}% + \end{beamercolorbox}% + \fi %\thepage>1 +} + +\else% Not compressed + +\setbeamertemplate{headline} +{% + \ifnum \thepage>1 + \leavevmode% + \@tempdimb=2.4375ex% + \ifnum\beamer@subsectionmax<\beamer@sectionmax% + \multiply\@tempdimb by\beamer@sectionmax% + \else% + \multiply\@tempdimb by\beamer@subsectionmax% + \fi% + \ifdim\@tempdimb>0pt% + \advance\@tempdimb by 1.125ex% + \begin{beamercolorbox}[wd=.5\paperwidth,ht=\@tempdimb]{% + section in head/foot}% + \vbox to\@tempdimb{\vfil\insertsectionnavigation{.5\paperwidth}\vfil}% + \end{beamercolorbox}% + \begin{beamercolorbox}[wd=.5\paperwidth,ht=\@tempdimb]{% + subsection in head/foot}% + \vbox to\@tempdimb{\vfil\insertsubsectionnavigation{.5\paperwidth}\vfil}% + \end{beamercolorbox}% + \fi% + \fi % \thepage>1 +} + +\fi % end if compressed +\fi % TACCheadernav + + +\ifTACCheadertree + +\setbeamertemplate{headline} +{ + \begin{beamercolorbox}[wd=\paperwidth,colsep=1.5pt]{upper separation line head} + \end{beamercolorbox} + % + % Place short title + % + \begin{beamercolorbox}[wd=\paperwidth,ht=2.5ex,dp=1.125ex,% + leftskip=.3cm,rightskip=.3cm plus1fil]{title in head/foot} + \usebeamerfont{title in head/foot}\insertshorttitle + \end{beamercolorbox} + + % + % Place section + % + \begin{beamercolorbox}[wd=\paperwidth,ht=2.5ex,dp=1.125ex,% + leftskip=.3cm,rightskip=.3cm plus1fil]{section in head/foot} + \usebeamerfont{section in head/foot}% + %\ifbeamer@tree@showhooks + \setbox\beamer@tempbox=\hbox{\insertsectionhead}% + \ifdim\wd\beamer@tempbox>1pt% + \hskip2pt\raise1.9pt\hbox{\vrule width0.4pt height1.875ex\vrule width 5pt height0.4pt}% + \hskip1pt% + \fi + \insertsectionhead + \end{beamercolorbox} + +% +% Place subsection +% +\begin{beamercolorbox}[wd=\paperwidth,ht=2.5ex,dp=1.125ex,% + leftskip=.3cm,rightskip=.3cm plus1fil]{subsection in head/foot} + \usebeamerfont{subsection in head/foot}% + %\ifbeamer@tree@showhooks + \setbox\beamer@tempbox=\hbox{\insertsubsectionhead}% + \ifdim\wd\beamer@tempbox>1pt% + \hskip9.4pt\raise1.9pt\hbox{\vrule width0.4pt height1.875ex\vrule width 5pt height0.4pt}% + \hskip1pt% + \fi + \insertsubsectionhead +\end{beamercolorbox} + +% +% Place final separation box +% + \begin{beamercolorbox}[wd=\paperwidth,colsep=1.5pt + ]{lower separation line head} + \end{beamercolorbox} + + % + % Another matching rule which helps to frame the content + % + \hspace{.025\textwidth}\rule{.95\textwidth}{.5pt} +} +\fi % TACCheadertree + + +% The following command suppresses all navigation symbols. This is +% necessary in the TACC theme, since it overlaps where we want the +% logo to be. +\setbeamertemplate{navigation symbols}{} + + +\mode + diff --git a/my_docs/23/lmod_zoom_mtg_2023_08_01/themes/beamerthemeTACC16-169.sty b/my_docs/23/lmod_zoom_mtg_2023_08_01/themes/beamerthemeTACC16-169.sty new file mode 100644 index 000000000..22caf9a05 --- /dev/null +++ b/my_docs/23/lmod_zoom_mtg_2023_08_01/themes/beamerthemeTACC16-169.sty @@ -0,0 +1,38 @@ +%% TACC theme for beamer + +\newif\ifTACCheadernav +\DeclareOption{headernav}{\global\TACCheadernavtrue} + +\newif\ifTACCheadertree +\DeclareOption{headertree}{\global\TACCheadertreetrue} +\ProcessOptions + +\mode + +\makeatletter + \def\beamer@calltheme#1#2#3{% + \def\beamer@themelist{#2} + \@for\beamer@themename:=\beamer@themelist\do + {\usepackage[{#1}]{\beamer@themelocation/#3\beamer@themename}}} + + \def\usefolder#1{ + \def\beamer@themelocation{#1} + } + \def\beamer@themelocation{} + +\usefolder{themes} +\usefonttheme{TACC16} +\useinnertheme{TACC16} +\useoutertheme{TACC16-169} +\usecolortheme{TACC16} + +\mode + + +\newcommand{\event}[1]{% + \makeatletter% + \def\TACC@eventname{#1}% + \makeatother} + +\newcommand{\sectionframe}[1]{\section{#1}\frame{\Large\textbf{#1}}} +\newcommand{\subsectionframe}[1]{\subsection{#1}\frame{\large\textbf{#1}}} diff --git a/my_docs/23/lmod_zoom_mtg_2023_08_01/themes/beamerthemeTACC16.sty b/my_docs/23/lmod_zoom_mtg_2023_08_01/themes/beamerthemeTACC16.sty new file mode 100644 index 000000000..750bdd388 --- /dev/null +++ b/my_docs/23/lmod_zoom_mtg_2023_08_01/themes/beamerthemeTACC16.sty @@ -0,0 +1,26 @@ +%% TACC theme for beamer + +\newif\ifTACCheadernav +\DeclareOption{headernav}{\global\TACCheadernavtrue} + +\newif\ifTACCheadertree +\DeclareOption{headertree}{\global\TACCheadertreetrue} +\ProcessOptions + +\mode + +\usefonttheme{TACC16} +\useinnertheme{TACC16} +\useoutertheme{TACC16} +\usecolortheme{TACC16} + +\mode + + +\newcommand{\event}[1]{% + \makeatletter% + \def\TACC@eventname{#1}% + \makeatother} + +\newcommand{\sectionframe}[1]{\section{#1}\frame{\Large\textbf{#1}}} +\newcommand{\subsectionframe}[1]{\subsection{#1}\frame{\large\textbf{#1}}} diff --git a/my_docs/23/lmod_zoom_mtg_2023_08_01/themes/example.pdf b/my_docs/23/lmod_zoom_mtg_2023_08_01/themes/example.pdf new file mode 100644 index 000000000..add373eee Binary files /dev/null and b/my_docs/23/lmod_zoom_mtg_2023_08_01/themes/example.pdf differ diff --git a/my_docs/23/lmod_zoom_mtg_2023_08_01/themes/license.tex b/my_docs/23/lmod_zoom_mtg_2023_08_01/themes/license.tex new file mode 100644 index 000000000..74ff86759 --- /dev/null +++ b/my_docs/23/lmod_zoom_mtg_2023_08_01/themes/license.tex @@ -0,0 +1,14 @@ + +\begin{frame}{License} +\footnotesize +\textcopyright The University of Texas at Austin, \the\year\\ +\vspace{0.5 cm} +This work is licensed under the Creative Commons Attribution Non-Commercial 3.0 Unported License. To view a copy of this license, +visit http://creativecommons.org/licenses/by-nc/3.0/\\ +\vspace{0.5 cm} +When attributing this work, please use the following text: +"Designing and Administering Large-scale Systems", Texas Advanced Computing Center, \the\year. Available under a Creative Commons Attribution Non-Commercial 3.0 Unported License. +\newline +\newline +\includegraphics[width=1cm]{./figures/cc.png} +\end{frame} \ No newline at end of file diff --git a/rt/avail/mf/Compiler/intel/10.1/gotoblas/.version b/rt/avail/mf/Compiler/intel/10.1/gotoblas/.version deleted file mode 120000 index 9ec9ba9fc..000000000 --- a/rt/avail/mf/Compiler/intel/10.1/gotoblas/.version +++ /dev/null @@ -1 +0,0 @@ -.version-1.32 \ No newline at end of file diff --git a/rt/avail/mf/Compiler/intel/10.1/gotoblas/.version b/rt/avail/mf/Compiler/intel/10.1/gotoblas/.version new file mode 100644 index 000000000..9c66bd0cd --- /dev/null +++ b/rt/avail/mf/Compiler/intel/10.1/gotoblas/.version @@ -0,0 +1,7 @@ +#%Module3.1.6################################################# +## +## Version file for 1.32 of the gotoblas +## File default is copied to .version in modulefiles directory. +## + +set ModulesVersion "1.32" diff --git a/rt/avail/mf/Core/admin/default b/rt/avail/mf/Core/admin/default deleted file mode 120000 index 4a4a278b2..000000000 --- a/rt/avail/mf/Core/admin/default +++ /dev/null @@ -1 +0,0 @@ -admin-1.0.lua \ No newline at end of file diff --git a/rt/avail/mf/Core/admin/default b/rt/avail/mf/Core/admin/default new file mode 100644 index 000000000..9b91b10cf --- /dev/null +++ b/rt/avail/mf/Core/admin/default @@ -0,0 +1,3 @@ +-- -*- lua -*- +setenv("ADMIN_MODULE_LOADED","1") +prepend_path('PATH','/usr/sbin/://sbin///') diff --git a/rt/avail/mf/Core/bar/1.4-dbg.lua b/rt/avail/mf/Core/bar/1.4-dbg.lua deleted file mode 120000 index b7e9b4151..000000000 --- a/rt/avail/mf/Core/bar/1.4-dbg.lua +++ /dev/null @@ -1 +0,0 @@ -../.base/bar/1.4-dbg.lua \ No newline at end of file diff --git a/rt/avail/mf/Core/bar/1.4-dbg.lua b/rt/avail/mf/Core/bar/1.4-dbg.lua new file mode 100644 index 000000000..bb28a9aa8 --- /dev/null +++ b/rt/avail/mf/Core/bar/1.4-dbg.lua @@ -0,0 +1 @@ +prepend_path("PATH","/foo/bar/1.4-dbg/bin") diff --git a/rt/avail/mf/Core/bar/1.4.lua b/rt/avail/mf/Core/bar/1.4.lua deleted file mode 120000 index 75a47df49..000000000 --- a/rt/avail/mf/Core/bar/1.4.lua +++ /dev/null @@ -1 +0,0 @@ -../.base/bar/1.4.lua \ No newline at end of file diff --git a/rt/avail/mf/Core/bar/1.4.lua b/rt/avail/mf/Core/bar/1.4.lua new file mode 100644 index 000000000..e7edf9a20 --- /dev/null +++ b/rt/avail/mf/Core/bar/1.4.lua @@ -0,0 +1 @@ +prepend_path("PATH","/foo/bar/1.4/bin") diff --git a/rt/avail/mf/Core/baz/1.4-dbg.lua b/rt/avail/mf/Core/baz/1.4-dbg.lua deleted file mode 120000 index 39cf840a8..000000000 --- a/rt/avail/mf/Core/baz/1.4-dbg.lua +++ /dev/null @@ -1 +0,0 @@ -../.base/baz/1.4-dbg.lua \ No newline at end of file diff --git a/rt/avail/mf/Core/baz/1.4-dbg.lua b/rt/avail/mf/Core/baz/1.4-dbg.lua new file mode 100644 index 000000000..bb28a9aa8 --- /dev/null +++ b/rt/avail/mf/Core/baz/1.4-dbg.lua @@ -0,0 +1 @@ +prepend_path("PATH","/foo/bar/1.4-dbg/bin") diff --git a/rt/avail/mf/Core/baz/1.4.lua b/rt/avail/mf/Core/baz/1.4.lua deleted file mode 120000 index 4de16b2e5..000000000 --- a/rt/avail/mf/Core/baz/1.4.lua +++ /dev/null @@ -1 +0,0 @@ -../.base/baz/1.4.lua \ No newline at end of file diff --git a/rt/avail/mf/Core/baz/1.4.lua b/rt/avail/mf/Core/baz/1.4.lua new file mode 100644 index 000000000..e7edf9a20 --- /dev/null +++ b/rt/avail/mf/Core/baz/1.4.lua @@ -0,0 +1 @@ +prepend_path("PATH","/foo/bar/1.4/bin") diff --git a/rt/avail/mf/Core/baz/default b/rt/avail/mf/Core/baz/default deleted file mode 120000 index 7f6ad29b8..000000000 --- a/rt/avail/mf/Core/baz/default +++ /dev/null @@ -1 +0,0 @@ -1.4.lua \ No newline at end of file diff --git a/rt/avail/mf/Core/baz/default b/rt/avail/mf/Core/baz/default new file mode 100644 index 000000000..e7edf9a20 --- /dev/null +++ b/rt/avail/mf/Core/baz/default @@ -0,0 +1 @@ +prepend_path("PATH","/foo/bar/1.4/bin") diff --git a/rt/avail/mf/Core/foo/default b/rt/avail/mf/Core/foo/default deleted file mode 120000 index 7f6ad29b8..000000000 --- a/rt/avail/mf/Core/foo/default +++ /dev/null @@ -1 +0,0 @@ -1.4.lua \ No newline at end of file diff --git a/rt/avail/mf/Core/foo/default b/rt/avail/mf/Core/foo/default new file mode 100644 index 000000000..e7edf9a20 --- /dev/null +++ b/rt/avail/mf/Core/foo/default @@ -0,0 +1 @@ +prepend_path("PATH","/foo/bar/1.4/bin") diff --git a/rt/avail/mf/Core/gotoblas/default b/rt/avail/mf/Core/gotoblas/default deleted file mode 120000 index 1c8cd10a3..000000000 --- a/rt/avail/mf/Core/gotoblas/default +++ /dev/null @@ -1 +0,0 @@ -1.26.lua \ No newline at end of file diff --git a/rt/avail/mf/Core/gotoblas/default b/rt/avail/mf/Core/gotoblas/default new file mode 100644 index 000000000..c0005392d --- /dev/null +++ b/rt/avail/mf/Core/gotoblas/default @@ -0,0 +1,17 @@ +local version = "1.26" +whatis("Name: Gotoblas") +whatis("Version: " .. version) +whatis("Category: library, mathematics") +whatis("Description: Blas Level 1, 2, 3 routines") +whatis("URL: http://www.tacc.utexas.edu") + +local pkgRoot = "/vol/pkg" + +local pkgName = pathJoin("gotoblas",version) +local base = pathJoin(pkgRoot, pkgName) +setenv("TACC_GOTOBLAS_DIR",base) +setenv("TACC_GOTOBLAS_LIB",base) + +if (os.getenv("LMOD_sys") ~= "Darwin") then + prepend_path("LD_LIBRARY_PATH",base) +end diff --git a/rt/avail/mf/Core/ucc/default b/rt/avail/mf/Core/ucc/default deleted file mode 120000 index 6b5f70449..000000000 --- a/rt/avail/mf/Core/ucc/default +++ /dev/null @@ -1 +0,0 @@ -13.1.2.lua \ No newline at end of file diff --git a/rt/avail/mf/Core/ucc/default b/rt/avail/mf/Core/ucc/default new file mode 100644 index 000000000..09b4c2c51 --- /dev/null +++ b/rt/avail/mf/Core/ucc/default @@ -0,0 +1 @@ +setenv("MY_VERSION",myModuleVersion()) diff --git a/rt/between/mf/Core/b/default b/rt/between/mf/Core/b/default deleted file mode 120000 index e357e888c..000000000 --- a/rt/between/mf/Core/b/default +++ /dev/null @@ -1 +0,0 @@ -1.1.lua \ No newline at end of file diff --git a/rt/between/mf/Core/b/default b/rt/between/mf/Core/b/default new file mode 100644 index 000000000..746e4135c --- /dev/null +++ b/rt/between/mf/Core/b/default @@ -0,0 +1,8 @@ +local pkg = Pkg:new{Category = "base", + Keywords = "base", + URL = "http://acme.com", + Description = "b module", + level = 0, + help = "help", +} +setenv("B_VERSION",pkg:pkgVersion()) diff --git a/rt/cache/mf/Compiler/intel/10.1/gotoblas/.version b/rt/cache/mf/Compiler/intel/10.1/gotoblas/.version deleted file mode 120000 index 9ec9ba9fc..000000000 --- a/rt/cache/mf/Compiler/intel/10.1/gotoblas/.version +++ /dev/null @@ -1 +0,0 @@ -.version-1.32 \ No newline at end of file diff --git a/rt/cache/mf/Compiler/intel/10.1/gotoblas/.version b/rt/cache/mf/Compiler/intel/10.1/gotoblas/.version new file mode 100644 index 000000000..9c66bd0cd --- /dev/null +++ b/rt/cache/mf/Compiler/intel/10.1/gotoblas/.version @@ -0,0 +1,7 @@ +#%Module3.1.6################################################# +## +## Version file for 1.32 of the gotoblas +## File default is copied to .version in modulefiles directory. +## + +set ModulesVersion "1.32" diff --git a/rt/cache/mf/Core/admin/default b/rt/cache/mf/Core/admin/default deleted file mode 120000 index 4a4a278b2..000000000 --- a/rt/cache/mf/Core/admin/default +++ /dev/null @@ -1 +0,0 @@ -admin-1.0.lua \ No newline at end of file diff --git a/rt/cache/mf/Core/admin/default b/rt/cache/mf/Core/admin/default new file mode 100644 index 000000000..9b91b10cf --- /dev/null +++ b/rt/cache/mf/Core/admin/default @@ -0,0 +1,3 @@ +-- -*- lua -*- +setenv("ADMIN_MODULE_LOADED","1") +prepend_path('PATH','/usr/sbin/://sbin///') diff --git a/rt/cache/mf/Core/bar/1.4-dbg.lua b/rt/cache/mf/Core/bar/1.4-dbg.lua deleted file mode 120000 index b7e9b4151..000000000 --- a/rt/cache/mf/Core/bar/1.4-dbg.lua +++ /dev/null @@ -1 +0,0 @@ -../.base/bar/1.4-dbg.lua \ No newline at end of file diff --git a/rt/cache/mf/Core/bar/1.4-dbg.lua b/rt/cache/mf/Core/bar/1.4-dbg.lua new file mode 100644 index 000000000..bb28a9aa8 --- /dev/null +++ b/rt/cache/mf/Core/bar/1.4-dbg.lua @@ -0,0 +1 @@ +prepend_path("PATH","/foo/bar/1.4-dbg/bin") diff --git a/rt/cache/mf/Core/bar/1.4.lua b/rt/cache/mf/Core/bar/1.4.lua deleted file mode 120000 index 75a47df49..000000000 --- a/rt/cache/mf/Core/bar/1.4.lua +++ /dev/null @@ -1 +0,0 @@ -../.base/bar/1.4.lua \ No newline at end of file diff --git a/rt/cache/mf/Core/bar/1.4.lua b/rt/cache/mf/Core/bar/1.4.lua new file mode 100644 index 000000000..e7edf9a20 --- /dev/null +++ b/rt/cache/mf/Core/bar/1.4.lua @@ -0,0 +1 @@ +prepend_path("PATH","/foo/bar/1.4/bin") diff --git a/rt/cache/mf/Core/baz/1.4-dbg.lua b/rt/cache/mf/Core/baz/1.4-dbg.lua deleted file mode 120000 index 39cf840a8..000000000 --- a/rt/cache/mf/Core/baz/1.4-dbg.lua +++ /dev/null @@ -1 +0,0 @@ -../.base/baz/1.4-dbg.lua \ No newline at end of file diff --git a/rt/cache/mf/Core/baz/1.4-dbg.lua b/rt/cache/mf/Core/baz/1.4-dbg.lua new file mode 100644 index 000000000..bb28a9aa8 --- /dev/null +++ b/rt/cache/mf/Core/baz/1.4-dbg.lua @@ -0,0 +1 @@ +prepend_path("PATH","/foo/bar/1.4-dbg/bin") diff --git a/rt/cache/mf/Core/baz/1.4.lua b/rt/cache/mf/Core/baz/1.4.lua deleted file mode 120000 index 4de16b2e5..000000000 --- a/rt/cache/mf/Core/baz/1.4.lua +++ /dev/null @@ -1 +0,0 @@ -../.base/baz/1.4.lua \ No newline at end of file diff --git a/rt/cache/mf/Core/baz/1.4.lua b/rt/cache/mf/Core/baz/1.4.lua new file mode 100644 index 000000000..e7edf9a20 --- /dev/null +++ b/rt/cache/mf/Core/baz/1.4.lua @@ -0,0 +1 @@ +prepend_path("PATH","/foo/bar/1.4/bin") diff --git a/rt/cache/mf/Core/baz/default b/rt/cache/mf/Core/baz/default deleted file mode 120000 index 7f6ad29b8..000000000 --- a/rt/cache/mf/Core/baz/default +++ /dev/null @@ -1 +0,0 @@ -1.4.lua \ No newline at end of file diff --git a/rt/cache/mf/Core/baz/default b/rt/cache/mf/Core/baz/default new file mode 100644 index 000000000..e7edf9a20 --- /dev/null +++ b/rt/cache/mf/Core/baz/default @@ -0,0 +1 @@ +prepend_path("PATH","/foo/bar/1.4/bin") diff --git a/rt/cache/mf/Core/foo/default b/rt/cache/mf/Core/foo/default deleted file mode 120000 index 7f6ad29b8..000000000 --- a/rt/cache/mf/Core/foo/default +++ /dev/null @@ -1 +0,0 @@ -1.4.lua \ No newline at end of file diff --git a/rt/cache/mf/Core/foo/default b/rt/cache/mf/Core/foo/default new file mode 100644 index 000000000..e7edf9a20 --- /dev/null +++ b/rt/cache/mf/Core/foo/default @@ -0,0 +1 @@ +prepend_path("PATH","/foo/bar/1.4/bin") diff --git a/rt/cache/mf/Core/gotoblas/default b/rt/cache/mf/Core/gotoblas/default deleted file mode 120000 index 1c8cd10a3..000000000 --- a/rt/cache/mf/Core/gotoblas/default +++ /dev/null @@ -1 +0,0 @@ -1.26.lua \ No newline at end of file diff --git a/rt/cache/mf/Core/gotoblas/default b/rt/cache/mf/Core/gotoblas/default new file mode 100644 index 000000000..c0005392d --- /dev/null +++ b/rt/cache/mf/Core/gotoblas/default @@ -0,0 +1,17 @@ +local version = "1.26" +whatis("Name: Gotoblas") +whatis("Version: " .. version) +whatis("Category: library, mathematics") +whatis("Description: Blas Level 1, 2, 3 routines") +whatis("URL: http://www.tacc.utexas.edu") + +local pkgRoot = "/vol/pkg" + +local pkgName = pathJoin("gotoblas",version) +local base = pathJoin(pkgRoot, pkgName) +setenv("TACC_GOTOBLAS_DIR",base) +setenv("TACC_GOTOBLAS_LIB",base) + +if (os.getenv("LMOD_sys") ~= "Darwin") then + prepend_path("LD_LIBRARY_PATH",base) +end diff --git a/rt/cache/mf/Core/ucc/default b/rt/cache/mf/Core/ucc/default deleted file mode 120000 index 6b5f70449..000000000 --- a/rt/cache/mf/Core/ucc/default +++ /dev/null @@ -1 +0,0 @@ -13.1.2.lua \ No newline at end of file diff --git a/rt/cache/mf/Core/ucc/default b/rt/cache/mf/Core/ucc/default new file mode 100644 index 000000000..09b4c2c51 --- /dev/null +++ b/rt/cache/mf/Core/ucc/default @@ -0,0 +1 @@ +setenv("MY_VERSION",myModuleVersion()) diff --git a/rt/changeMPATH/mf/Compiler/intel/10.1/gotoblas/.version b/rt/changeMPATH/mf/Compiler/intel/10.1/gotoblas/.version deleted file mode 120000 index 9ec9ba9fc..000000000 --- a/rt/changeMPATH/mf/Compiler/intel/10.1/gotoblas/.version +++ /dev/null @@ -1 +0,0 @@ -.version-1.32 \ No newline at end of file diff --git a/rt/changeMPATH/mf/Compiler/intel/10.1/gotoblas/.version b/rt/changeMPATH/mf/Compiler/intel/10.1/gotoblas/.version new file mode 100644 index 000000000..9c66bd0cd --- /dev/null +++ b/rt/changeMPATH/mf/Compiler/intel/10.1/gotoblas/.version @@ -0,0 +1,7 @@ +#%Module3.1.6################################################# +## +## Version file for 1.32 of the gotoblas +## File default is copied to .version in modulefiles directory. +## + +set ModulesVersion "1.32" diff --git a/rt/changeMPATH/mf/Core/admin/default b/rt/changeMPATH/mf/Core/admin/default deleted file mode 120000 index 4a4a278b2..000000000 --- a/rt/changeMPATH/mf/Core/admin/default +++ /dev/null @@ -1 +0,0 @@ -admin-1.0.lua \ No newline at end of file diff --git a/rt/changeMPATH/mf/Core/admin/default b/rt/changeMPATH/mf/Core/admin/default new file mode 100644 index 000000000..9b91b10cf --- /dev/null +++ b/rt/changeMPATH/mf/Core/admin/default @@ -0,0 +1,3 @@ +-- -*- lua -*- +setenv("ADMIN_MODULE_LOADED","1") +prepend_path('PATH','/usr/sbin/://sbin///') diff --git a/rt/changeMPATH/mf/Core/bar/1.4-dbg.lua b/rt/changeMPATH/mf/Core/bar/1.4-dbg.lua deleted file mode 120000 index b7e9b4151..000000000 --- a/rt/changeMPATH/mf/Core/bar/1.4-dbg.lua +++ /dev/null @@ -1 +0,0 @@ -../.base/bar/1.4-dbg.lua \ No newline at end of file diff --git a/rt/changeMPATH/mf/Core/bar/1.4-dbg.lua b/rt/changeMPATH/mf/Core/bar/1.4-dbg.lua new file mode 100644 index 000000000..bb28a9aa8 --- /dev/null +++ b/rt/changeMPATH/mf/Core/bar/1.4-dbg.lua @@ -0,0 +1 @@ +prepend_path("PATH","/foo/bar/1.4-dbg/bin") diff --git a/rt/changeMPATH/mf/Core/bar/1.4.lua b/rt/changeMPATH/mf/Core/bar/1.4.lua deleted file mode 120000 index 75a47df49..000000000 --- a/rt/changeMPATH/mf/Core/bar/1.4.lua +++ /dev/null @@ -1 +0,0 @@ -../.base/bar/1.4.lua \ No newline at end of file diff --git a/rt/changeMPATH/mf/Core/bar/1.4.lua b/rt/changeMPATH/mf/Core/bar/1.4.lua new file mode 100644 index 000000000..e7edf9a20 --- /dev/null +++ b/rt/changeMPATH/mf/Core/bar/1.4.lua @@ -0,0 +1 @@ +prepend_path("PATH","/foo/bar/1.4/bin") diff --git a/rt/changeMPATH/mf/Core/baz/1.4-dbg.lua b/rt/changeMPATH/mf/Core/baz/1.4-dbg.lua deleted file mode 120000 index 39cf840a8..000000000 --- a/rt/changeMPATH/mf/Core/baz/1.4-dbg.lua +++ /dev/null @@ -1 +0,0 @@ -../.base/baz/1.4-dbg.lua \ No newline at end of file diff --git a/rt/changeMPATH/mf/Core/baz/1.4-dbg.lua b/rt/changeMPATH/mf/Core/baz/1.4-dbg.lua new file mode 100644 index 000000000..bb28a9aa8 --- /dev/null +++ b/rt/changeMPATH/mf/Core/baz/1.4-dbg.lua @@ -0,0 +1 @@ +prepend_path("PATH","/foo/bar/1.4-dbg/bin") diff --git a/rt/changeMPATH/mf/Core/baz/1.4.lua b/rt/changeMPATH/mf/Core/baz/1.4.lua deleted file mode 120000 index 4de16b2e5..000000000 --- a/rt/changeMPATH/mf/Core/baz/1.4.lua +++ /dev/null @@ -1 +0,0 @@ -../.base/baz/1.4.lua \ No newline at end of file diff --git a/rt/changeMPATH/mf/Core/baz/1.4.lua b/rt/changeMPATH/mf/Core/baz/1.4.lua new file mode 100644 index 000000000..e7edf9a20 --- /dev/null +++ b/rt/changeMPATH/mf/Core/baz/1.4.lua @@ -0,0 +1 @@ +prepend_path("PATH","/foo/bar/1.4/bin") diff --git a/rt/changeMPATH/mf/Core/baz/default b/rt/changeMPATH/mf/Core/baz/default deleted file mode 120000 index 7f6ad29b8..000000000 --- a/rt/changeMPATH/mf/Core/baz/default +++ /dev/null @@ -1 +0,0 @@ -1.4.lua \ No newline at end of file diff --git a/rt/changeMPATH/mf/Core/baz/default b/rt/changeMPATH/mf/Core/baz/default new file mode 100644 index 000000000..e7edf9a20 --- /dev/null +++ b/rt/changeMPATH/mf/Core/baz/default @@ -0,0 +1 @@ +prepend_path("PATH","/foo/bar/1.4/bin") diff --git a/rt/changeMPATH/mf/Core/foo/default b/rt/changeMPATH/mf/Core/foo/default deleted file mode 120000 index 7f6ad29b8..000000000 --- a/rt/changeMPATH/mf/Core/foo/default +++ /dev/null @@ -1 +0,0 @@ -1.4.lua \ No newline at end of file diff --git a/rt/changeMPATH/mf/Core/foo/default b/rt/changeMPATH/mf/Core/foo/default new file mode 100644 index 000000000..e7edf9a20 --- /dev/null +++ b/rt/changeMPATH/mf/Core/foo/default @@ -0,0 +1 @@ +prepend_path("PATH","/foo/bar/1.4/bin") diff --git a/rt/changeMPATH/mf/Core/gotoblas/default b/rt/changeMPATH/mf/Core/gotoblas/default deleted file mode 120000 index 1c8cd10a3..000000000 --- a/rt/changeMPATH/mf/Core/gotoblas/default +++ /dev/null @@ -1 +0,0 @@ -1.26.lua \ No newline at end of file diff --git a/rt/changeMPATH/mf/Core/gotoblas/default b/rt/changeMPATH/mf/Core/gotoblas/default new file mode 100644 index 000000000..c0005392d --- /dev/null +++ b/rt/changeMPATH/mf/Core/gotoblas/default @@ -0,0 +1,17 @@ +local version = "1.26" +whatis("Name: Gotoblas") +whatis("Version: " .. version) +whatis("Category: library, mathematics") +whatis("Description: Blas Level 1, 2, 3 routines") +whatis("URL: http://www.tacc.utexas.edu") + +local pkgRoot = "/vol/pkg" + +local pkgName = pathJoin("gotoblas",version) +local base = pathJoin(pkgRoot, pkgName) +setenv("TACC_GOTOBLAS_DIR",base) +setenv("TACC_GOTOBLAS_LIB",base) + +if (os.getenv("LMOD_sys") ~= "Darwin") then + prepend_path("LD_LIBRARY_PATH",base) +end diff --git a/rt/changeMPATH/mf/Core/ucc/default b/rt/changeMPATH/mf/Core/ucc/default deleted file mode 120000 index 6b5f70449..000000000 --- a/rt/changeMPATH/mf/Core/ucc/default +++ /dev/null @@ -1 +0,0 @@ -13.1.2.lua \ No newline at end of file diff --git a/rt/changeMPATH/mf/Core/ucc/default b/rt/changeMPATH/mf/Core/ucc/default new file mode 100644 index 000000000..09b4c2c51 --- /dev/null +++ b/rt/changeMPATH/mf/Core/ucc/default @@ -0,0 +1 @@ +setenv("MY_VERSION",myModuleVersion()) diff --git a/rt/changeMPATH/mf/Core2/admin/default b/rt/changeMPATH/mf/Core2/admin/default deleted file mode 120000 index 4a4a278b2..000000000 --- a/rt/changeMPATH/mf/Core2/admin/default +++ /dev/null @@ -1 +0,0 @@ -admin-1.0.lua \ No newline at end of file diff --git a/rt/changeMPATH/mf/Core2/admin/default b/rt/changeMPATH/mf/Core2/admin/default new file mode 100644 index 000000000..18e74b776 --- /dev/null +++ b/rt/changeMPATH/mf/Core2/admin/default @@ -0,0 +1,2 @@ +setenv("ADMIN_MODULE_LOADED","1") +prepend_path('PATH','/usr/sbin:/sbin') diff --git a/rt/ck_mtree_syntax/mf/A/.version b/rt/ck_mtree_syntax/mf/A/.version deleted file mode 120000 index ec79207dd..000000000 --- a/rt/ck_mtree_syntax/mf/A/.version +++ /dev/null @@ -1 +0,0 @@ -.version.2.0 \ No newline at end of file diff --git a/rt/ck_mtree_syntax/mf/A/.version b/rt/ck_mtree_syntax/mf/A/.version new file mode 100644 index 000000000..a590decd5 --- /dev/null +++ b/rt/ck_mtree_syntax/mf/A/.version @@ -0,0 +1,2 @@ +#%Module +set ModulesVersion 2.0 diff --git a/rt/ck_mtree_syntax/mf/A/default b/rt/ck_mtree_syntax/mf/A/default deleted file mode 120000 index 23f8f0351..000000000 --- a/rt/ck_mtree_syntax/mf/A/default +++ /dev/null @@ -1 +0,0 @@ -1.0.lua \ No newline at end of file diff --git a/rt/ck_mtree_syntax/mf/A/default b/rt/ck_mtree_syntax/mf/A/default new file mode 100644 index 000000000..642a24fe0 --- /dev/null +++ b/rt/ck_mtree_syntax/mf/A/default @@ -0,0 +1,2 @@ +setenv("MY_VERSION", myModuleVersion()) +# diff --git a/rt/csh_swap/mf/Compiler/intel/10.1/gotoblas/.version b/rt/csh_swap/mf/Compiler/intel/10.1/gotoblas/.version deleted file mode 120000 index 9ec9ba9fc..000000000 --- a/rt/csh_swap/mf/Compiler/intel/10.1/gotoblas/.version +++ /dev/null @@ -1 +0,0 @@ -.version-1.32 \ No newline at end of file diff --git a/rt/csh_swap/mf/Compiler/intel/10.1/gotoblas/.version b/rt/csh_swap/mf/Compiler/intel/10.1/gotoblas/.version new file mode 100644 index 000000000..9c66bd0cd --- /dev/null +++ b/rt/csh_swap/mf/Compiler/intel/10.1/gotoblas/.version @@ -0,0 +1,7 @@ +#%Module3.1.6################################################# +## +## Version file for 1.32 of the gotoblas +## File default is copied to .version in modulefiles directory. +## + +set ModulesVersion "1.32" diff --git a/rt/csh_swap/mf/Core/admin/default b/rt/csh_swap/mf/Core/admin/default deleted file mode 120000 index 4a4a278b2..000000000 --- a/rt/csh_swap/mf/Core/admin/default +++ /dev/null @@ -1 +0,0 @@ -admin-1.0.lua \ No newline at end of file diff --git a/rt/csh_swap/mf/Core/admin/default b/rt/csh_swap/mf/Core/admin/default new file mode 100644 index 000000000..82a114fd1 --- /dev/null +++ b/rt/csh_swap/mf/Core/admin/default @@ -0,0 +1,7 @@ +-- -*- lua -*- +setenv("ADMIN_MODULE_LOADED","1") +prepend_path('PATH','/usr/sbin/://sbin///') +setenv("FOO","aa,bb$bb,$cc,dd plus spaces") +setenv("BAR","ab?c") +setenv("BAZ","ab-c") +setenv("GZ","a[b-c]") diff --git a/rt/csh_swap/mf/Core/bar/1.4-dbg.lua b/rt/csh_swap/mf/Core/bar/1.4-dbg.lua deleted file mode 120000 index b7e9b4151..000000000 --- a/rt/csh_swap/mf/Core/bar/1.4-dbg.lua +++ /dev/null @@ -1 +0,0 @@ -../.base/bar/1.4-dbg.lua \ No newline at end of file diff --git a/rt/csh_swap/mf/Core/bar/1.4-dbg.lua b/rt/csh_swap/mf/Core/bar/1.4-dbg.lua new file mode 100644 index 000000000..bb28a9aa8 --- /dev/null +++ b/rt/csh_swap/mf/Core/bar/1.4-dbg.lua @@ -0,0 +1 @@ +prepend_path("PATH","/foo/bar/1.4-dbg/bin") diff --git a/rt/csh_swap/mf/Core/bar/1.4.lua b/rt/csh_swap/mf/Core/bar/1.4.lua deleted file mode 120000 index 75a47df49..000000000 --- a/rt/csh_swap/mf/Core/bar/1.4.lua +++ /dev/null @@ -1 +0,0 @@ -../.base/bar/1.4.lua \ No newline at end of file diff --git a/rt/csh_swap/mf/Core/bar/1.4.lua b/rt/csh_swap/mf/Core/bar/1.4.lua new file mode 100644 index 000000000..e7edf9a20 --- /dev/null +++ b/rt/csh_swap/mf/Core/bar/1.4.lua @@ -0,0 +1 @@ +prepend_path("PATH","/foo/bar/1.4/bin") diff --git a/rt/csh_swap/mf/Core/baz/1.4-dbg.lua b/rt/csh_swap/mf/Core/baz/1.4-dbg.lua deleted file mode 120000 index 39cf840a8..000000000 --- a/rt/csh_swap/mf/Core/baz/1.4-dbg.lua +++ /dev/null @@ -1 +0,0 @@ -../.base/baz/1.4-dbg.lua \ No newline at end of file diff --git a/rt/csh_swap/mf/Core/baz/1.4-dbg.lua b/rt/csh_swap/mf/Core/baz/1.4-dbg.lua new file mode 100644 index 000000000..bb28a9aa8 --- /dev/null +++ b/rt/csh_swap/mf/Core/baz/1.4-dbg.lua @@ -0,0 +1 @@ +prepend_path("PATH","/foo/bar/1.4-dbg/bin") diff --git a/rt/csh_swap/mf/Core/baz/1.4.lua b/rt/csh_swap/mf/Core/baz/1.4.lua deleted file mode 120000 index 4de16b2e5..000000000 --- a/rt/csh_swap/mf/Core/baz/1.4.lua +++ /dev/null @@ -1 +0,0 @@ -../.base/baz/1.4.lua \ No newline at end of file diff --git a/rt/csh_swap/mf/Core/baz/1.4.lua b/rt/csh_swap/mf/Core/baz/1.4.lua new file mode 100644 index 000000000..e7edf9a20 --- /dev/null +++ b/rt/csh_swap/mf/Core/baz/1.4.lua @@ -0,0 +1 @@ +prepend_path("PATH","/foo/bar/1.4/bin") diff --git a/rt/csh_swap/mf/Core/baz/default b/rt/csh_swap/mf/Core/baz/default deleted file mode 120000 index 7f6ad29b8..000000000 --- a/rt/csh_swap/mf/Core/baz/default +++ /dev/null @@ -1 +0,0 @@ -1.4.lua \ No newline at end of file diff --git a/rt/csh_swap/mf/Core/baz/default b/rt/csh_swap/mf/Core/baz/default new file mode 100644 index 000000000..e7edf9a20 --- /dev/null +++ b/rt/csh_swap/mf/Core/baz/default @@ -0,0 +1 @@ +prepend_path("PATH","/foo/bar/1.4/bin") diff --git a/rt/csh_swap/mf/Core/foo/default b/rt/csh_swap/mf/Core/foo/default deleted file mode 120000 index 7f6ad29b8..000000000 --- a/rt/csh_swap/mf/Core/foo/default +++ /dev/null @@ -1 +0,0 @@ -1.4.lua \ No newline at end of file diff --git a/rt/csh_swap/mf/Core/foo/default b/rt/csh_swap/mf/Core/foo/default new file mode 100644 index 000000000..e7edf9a20 --- /dev/null +++ b/rt/csh_swap/mf/Core/foo/default @@ -0,0 +1 @@ +prepend_path("PATH","/foo/bar/1.4/bin") diff --git a/rt/csh_swap/mf/Core/gotoblas/default b/rt/csh_swap/mf/Core/gotoblas/default deleted file mode 120000 index 1c8cd10a3..000000000 --- a/rt/csh_swap/mf/Core/gotoblas/default +++ /dev/null @@ -1 +0,0 @@ -1.26.lua \ No newline at end of file diff --git a/rt/csh_swap/mf/Core/gotoblas/default b/rt/csh_swap/mf/Core/gotoblas/default new file mode 100644 index 000000000..c0005392d --- /dev/null +++ b/rt/csh_swap/mf/Core/gotoblas/default @@ -0,0 +1,17 @@ +local version = "1.26" +whatis("Name: Gotoblas") +whatis("Version: " .. version) +whatis("Category: library, mathematics") +whatis("Description: Blas Level 1, 2, 3 routines") +whatis("URL: http://www.tacc.utexas.edu") + +local pkgRoot = "/vol/pkg" + +local pkgName = pathJoin("gotoblas",version) +local base = pathJoin(pkgRoot, pkgName) +setenv("TACC_GOTOBLAS_DIR",base) +setenv("TACC_GOTOBLAS_LIB",base) + +if (os.getenv("LMOD_sys") ~= "Darwin") then + prepend_path("LD_LIBRARY_PATH",base) +end diff --git a/rt/csh_swap/mf/Core/ucc/default b/rt/csh_swap/mf/Core/ucc/default deleted file mode 120000 index 6b5f70449..000000000 --- a/rt/csh_swap/mf/Core/ucc/default +++ /dev/null @@ -1 +0,0 @@ -13.1.2.lua \ No newline at end of file diff --git a/rt/csh_swap/mf/Core/ucc/default b/rt/csh_swap/mf/Core/ucc/default new file mode 100644 index 000000000..09b4c2c51 --- /dev/null +++ b/rt/csh_swap/mf/Core/ucc/default @@ -0,0 +1 @@ +setenv("MY_VERSION",myModuleVersion()) diff --git a/rt/defaults/mf/Core/a/default b/rt/defaults/mf/Core/a/default deleted file mode 120000 index 514e59114..000000000 --- a/rt/defaults/mf/Core/a/default +++ /dev/null @@ -1 +0,0 @@ -1.2.lua \ No newline at end of file diff --git a/rt/defaults/mf/Core/a/default b/rt/defaults/mf/Core/a/default new file mode 100644 index 000000000..71d32cb87 --- /dev/null +++ b/rt/defaults/mf/Core/a/default @@ -0,0 +1 @@ +setenv("VERSION",myModuleVersion()) diff --git a/rt/defaults/mf/Core/b/.version b/rt/defaults/mf/Core/b/.version deleted file mode 120000 index 0363f14bb..000000000 --- a/rt/defaults/mf/Core/b/.version +++ /dev/null @@ -1 +0,0 @@ -.version.1.1 \ No newline at end of file diff --git a/rt/defaults/mf/Core/b/.version b/rt/defaults/mf/Core/b/.version new file mode 100644 index 000000000..6175e12e2 --- /dev/null +++ b/rt/defaults/mf/Core/b/.version @@ -0,0 +1,7 @@ +#%Module3.1.6################################################# +## +## Version file for 7.1 intel compiler. +## File default is copied to .version in modulefiles directory. +## + +set ModulesVersion "1.1" diff --git a/rt/defaults/mf/Core/b/1.2.lua b/rt/defaults/mf/Core/b/1.2.lua deleted file mode 120000 index e357e888c..000000000 --- a/rt/defaults/mf/Core/b/1.2.lua +++ /dev/null @@ -1 +0,0 @@ -1.1.lua \ No newline at end of file diff --git a/rt/defaults/mf/Core/b/1.2.lua b/rt/defaults/mf/Core/b/1.2.lua new file mode 100644 index 000000000..71d32cb87 --- /dev/null +++ b/rt/defaults/mf/Core/b/1.2.lua @@ -0,0 +1 @@ +setenv("VERSION",myModuleVersion()) diff --git a/rt/defaults/mf/Core/boost/1.55.0.lua b/rt/defaults/mf/Core/boost/1.55.0.lua deleted file mode 120000 index 75e35c5da..000000000 --- a/rt/defaults/mf/Core/boost/1.55.0.lua +++ /dev/null @@ -1 +0,0 @@ -../.base/boost/1.55.0.lua \ No newline at end of file diff --git a/rt/defaults/mf/Core/boost/1.55.0.lua b/rt/defaults/mf/Core/boost/1.55.0.lua new file mode 100644 index 000000000..71d32cb87 --- /dev/null +++ b/rt/defaults/mf/Core/boost/1.55.0.lua @@ -0,0 +1 @@ +setenv("VERSION",myModuleVersion()) diff --git a/rt/defaults/mf/Core/boost/1.56.0.lua b/rt/defaults/mf/Core/boost/1.56.0.lua deleted file mode 120000 index 86cd11483..000000000 --- a/rt/defaults/mf/Core/boost/1.56.0.lua +++ /dev/null @@ -1 +0,0 @@ -../.base/boost/1.56.0.lua \ No newline at end of file diff --git a/rt/defaults/mf/Core/boost/1.56.0.lua b/rt/defaults/mf/Core/boost/1.56.0.lua new file mode 100644 index 000000000..71d32cb87 --- /dev/null +++ b/rt/defaults/mf/Core/boost/1.56.0.lua @@ -0,0 +1 @@ +setenv("VERSION",myModuleVersion()) diff --git a/rt/defaults/mf/Core/boost/default b/rt/defaults/mf/Core/boost/default deleted file mode 120000 index ff539008d..000000000 --- a/rt/defaults/mf/Core/boost/default +++ /dev/null @@ -1 +0,0 @@ -1.55.0.lua \ No newline at end of file diff --git a/rt/defaults/mf/Core/boost/default b/rt/defaults/mf/Core/boost/default new file mode 100644 index 000000000..71d32cb87 --- /dev/null +++ b/rt/defaults/mf/Core/boost/default @@ -0,0 +1 @@ +setenv("VERSION",myModuleVersion()) diff --git a/rt/defaults/mf/Core/mv2/2.1rc1.lua b/rt/defaults/mf/Core/mv2/2.1rc1.lua deleted file mode 120000 index 53787f31d..000000000 --- a/rt/defaults/mf/Core/mv2/2.1rc1.lua +++ /dev/null @@ -1 +0,0 @@ -2.1.lua \ No newline at end of file diff --git a/rt/defaults/mf/Core/mv2/2.1rc1.lua b/rt/defaults/mf/Core/mv2/2.1rc1.lua new file mode 100644 index 000000000..71d32cb87 --- /dev/null +++ b/rt/defaults/mf/Core/mv2/2.1rc1.lua @@ -0,0 +1 @@ +setenv("VERSION",myModuleVersion()) diff --git a/rt/defaults/mf/Core/mv2/2.1rc2.lua b/rt/defaults/mf/Core/mv2/2.1rc2.lua deleted file mode 120000 index 53787f31d..000000000 --- a/rt/defaults/mf/Core/mv2/2.1rc2.lua +++ /dev/null @@ -1 +0,0 @@ -2.1.lua \ No newline at end of file diff --git a/rt/defaults/mf/Core/mv2/2.1rc2.lua b/rt/defaults/mf/Core/mv2/2.1rc2.lua new file mode 100644 index 000000000..71d32cb87 --- /dev/null +++ b/rt/defaults/mf/Core/mv2/2.1rc2.lua @@ -0,0 +1 @@ +setenv("VERSION",myModuleVersion()) diff --git a/rt/defaults/mf/Core/mv2/default b/rt/defaults/mf/Core/mv2/default deleted file mode 120000 index 27264c644..000000000 --- a/rt/defaults/mf/Core/mv2/default +++ /dev/null @@ -1 +0,0 @@ -2.1rc2.lua \ No newline at end of file diff --git a/rt/defaults/mf/Core/mv2/default b/rt/defaults/mf/Core/mv2/default new file mode 100644 index 000000000..71d32cb87 --- /dev/null +++ b/rt/defaults/mf/Core/mv2/default @@ -0,0 +1 @@ +setenv("VERSION",myModuleVersion()) diff --git a/rt/dyn/mf/Compiler/gcc/7.1/impi/18.0.1.lua b/rt/dyn/mf/Compiler/gcc/7.1/impi/18.0.1.lua deleted file mode 120000 index 3e2a07158..000000000 --- a/rt/dyn/mf/Compiler/gcc/7.1/impi/18.0.1.lua +++ /dev/null @@ -1 +0,0 @@ -../../../.base/impi/18.0.1.lua \ No newline at end of file diff --git a/rt/dyn/mf/Compiler/gcc/7.1/impi/18.0.1.lua b/rt/dyn/mf/Compiler/gcc/7.1/impi/18.0.1.lua new file mode 100644 index 000000000..56a88e024 --- /dev/null +++ b/rt/dyn/mf/Compiler/gcc/7.1/impi/18.0.1.lua @@ -0,0 +1,12 @@ +local pkgName = myModuleName() +local fn = myFileName():gsub("%.lua$","") +local fullVersion = barefilename(fn) +local pkgVersion = fullVersion:match("([0-9]+%.[0-9]+)%.?") +local pkgNameFullV = pathJoin(pkgName,fullVersion) +local pkgNameVer = pathJoin(pkgName,pkgVersion) +local hierA = hierarchyA(pkgNameFullV,1) +local compiler_dir = hierA[1] +local mdir = pathJoin(os.getenv('MODULEPATH_ROOT'), "MPI",compiler_dir,pkgNameVer) +prepend_path("MODULEPATH",mdir) +family("MPI") + diff --git a/rt/dyn/mf/Compiler/intel/18.0/impi/18.0.1.lua b/rt/dyn/mf/Compiler/intel/18.0/impi/18.0.1.lua deleted file mode 120000 index 3e2a07158..000000000 --- a/rt/dyn/mf/Compiler/intel/18.0/impi/18.0.1.lua +++ /dev/null @@ -1 +0,0 @@ -../../../.base/impi/18.0.1.lua \ No newline at end of file diff --git a/rt/dyn/mf/Compiler/intel/18.0/impi/18.0.1.lua b/rt/dyn/mf/Compiler/intel/18.0/impi/18.0.1.lua new file mode 100644 index 000000000..56a88e024 --- /dev/null +++ b/rt/dyn/mf/Compiler/intel/18.0/impi/18.0.1.lua @@ -0,0 +1,12 @@ +local pkgName = myModuleName() +local fn = myFileName():gsub("%.lua$","") +local fullVersion = barefilename(fn) +local pkgVersion = fullVersion:match("([0-9]+%.[0-9]+)%.?") +local pkgNameFullV = pathJoin(pkgName,fullVersion) +local pkgNameVer = pathJoin(pkgName,pkgVersion) +local hierA = hierarchyA(pkgNameFullV,1) +local compiler_dir = hierA[1] +local mdir = pathJoin(os.getenv('MODULEPATH_ROOT'), "MPI",compiler_dir,pkgNameVer) +prepend_path("MODULEPATH",mdir) +family("MPI") + diff --git a/rt/dyn/mf/MPI/gcc/7.1/impi/18.0/fenics/1.0.lua b/rt/dyn/mf/MPI/gcc/7.1/impi/18.0/fenics/1.0.lua deleted file mode 120000 index 137514aa1..000000000 --- a/rt/dyn/mf/MPI/gcc/7.1/impi/18.0/fenics/1.0.lua +++ /dev/null @@ -1 +0,0 @@ -../../../../../.base/fenics/1.0.lua \ No newline at end of file diff --git a/rt/dyn/mf/MPI/gcc/7.1/impi/18.0/fenics/1.0.lua b/rt/dyn/mf/MPI/gcc/7.1/impi/18.0/fenics/1.0.lua new file mode 100644 index 000000000..5e3a25e40 --- /dev/null +++ b/rt/dyn/mf/MPI/gcc/7.1/impi/18.0/fenics/1.0.lua @@ -0,0 +1 @@ +setenv(myModuleName(), myModuleVersion()) diff --git a/rt/end2end/mf/Core/admin/default b/rt/end2end/mf/Core/admin/default deleted file mode 120000 index 4a4a278b2..000000000 --- a/rt/end2end/mf/Core/admin/default +++ /dev/null @@ -1 +0,0 @@ -admin-1.0.lua \ No newline at end of file diff --git a/rt/end2end/mf/Core/admin/default b/rt/end2end/mf/Core/admin/default new file mode 100644 index 000000000..9b91b10cf --- /dev/null +++ b/rt/end2end/mf/Core/admin/default @@ -0,0 +1,3 @@ +-- -*- lua -*- +setenv("ADMIN_MODULE_LOADED","1") +prepend_path('PATH','/usr/sbin/://sbin///') diff --git a/rt/family/mf/Compiler/gcc/7/mpich/3.2.1.lua b/rt/family/mf/Compiler/gcc/7/mpich/3.2.1.lua deleted file mode 120000 index e23001b3c..000000000 --- a/rt/family/mf/Compiler/gcc/7/mpich/3.2.1.lua +++ /dev/null @@ -1 +0,0 @@ -../../../.base/mpich/3.2.1.lua \ No newline at end of file diff --git a/rt/family/mf/Compiler/gcc/7/mpich/3.2.1.lua b/rt/family/mf/Compiler/gcc/7/mpich/3.2.1.lua new file mode 100644 index 000000000..26e53c286 --- /dev/null +++ b/rt/family/mf/Compiler/gcc/7/mpich/3.2.1.lua @@ -0,0 +1,21 @@ +help([[Sets up the MPICH environment. +Depends on: gcc/7.1.0, common +Dependents: Libraries built with this MPI +Family: mpi +]]) + +local pkgName = myModuleName() +local fullVersion = myModuleVersion() +local pkgV = fullVersion:match('(%d+%.%d+)%.?') +local hierA = hierarchyA(pathJoin(pkgName,fullVersion),1) +local compilerV = hierA[1] +local compilerD = compilerV:gsub("/","-"):gsub("%.","_") +local base = pathJoin("/opt/apps",compilerD,pkgName,fullVersion) +local mroot = os.getenv("MODULEPATH_ROOT") +local mpath = pathJoin(mroot, "MPI", compilerV, pkgName, pkgV) + +append_path('MODULEPATH', mpath) +prepend_path('PATH', pathJoin(base,"bin")) +family("mpi") + +load("mpi-common/.mpich") diff --git a/rt/family/mf/Compiler/gcc/7/openmpi/2.1.1.lua b/rt/family/mf/Compiler/gcc/7/openmpi/2.1.1.lua deleted file mode 120000 index 35d397d15..000000000 --- a/rt/family/mf/Compiler/gcc/7/openmpi/2.1.1.lua +++ /dev/null @@ -1 +0,0 @@ -../../../.base/openmpi/2.1.1.lua \ No newline at end of file diff --git a/rt/family/mf/Compiler/gcc/7/openmpi/2.1.1.lua b/rt/family/mf/Compiler/gcc/7/openmpi/2.1.1.lua new file mode 100644 index 000000000..66a1dfbe7 --- /dev/null +++ b/rt/family/mf/Compiler/gcc/7/openmpi/2.1.1.lua @@ -0,0 +1,21 @@ +help([[Sets up the OpenMPI MPI environment. +Depends on: gcc/7.1.0, common +Dependents: Libraries built with this MPI +Family: mpi +]]) + +local pkgName = myModuleName() +local fullVersion = myModuleVersion() +local pkgV = fullVersion:match('(%d+%.%d+)%.?') +local hierA = hierarchyA(pathJoin(pkgName,fullVersion),1) +local compilerV = hierA[1] +local compilerD = compilerV:gsub("/","-"):gsub("%.","_") +local base = pathJoin("/opt/apps",compilerD,pkgName,fullVersion) +local mroot = os.getenv("MODULEPATH_ROOT") +local mpath = pathJoin(mroot, "MPI", compilerV, pkgName, pkgV) + +append_path('MODULEPATH', mpath) +prepend_path('PATH', pathJoin(base,"bin")) +family("mpi") + +load("mpi-common/.openmpi") diff --git a/rt/family/mf/Compiler/ibm/13/mpich/3.2.1.lua b/rt/family/mf/Compiler/ibm/13/mpich/3.2.1.lua deleted file mode 120000 index e23001b3c..000000000 --- a/rt/family/mf/Compiler/ibm/13/mpich/3.2.1.lua +++ /dev/null @@ -1 +0,0 @@ -../../../.base/mpich/3.2.1.lua \ No newline at end of file diff --git a/rt/family/mf/Compiler/ibm/13/mpich/3.2.1.lua b/rt/family/mf/Compiler/ibm/13/mpich/3.2.1.lua new file mode 100644 index 000000000..26e53c286 --- /dev/null +++ b/rt/family/mf/Compiler/ibm/13/mpich/3.2.1.lua @@ -0,0 +1,21 @@ +help([[Sets up the MPICH environment. +Depends on: gcc/7.1.0, common +Dependents: Libraries built with this MPI +Family: mpi +]]) + +local pkgName = myModuleName() +local fullVersion = myModuleVersion() +local pkgV = fullVersion:match('(%d+%.%d+)%.?') +local hierA = hierarchyA(pathJoin(pkgName,fullVersion),1) +local compilerV = hierA[1] +local compilerD = compilerV:gsub("/","-"):gsub("%.","_") +local base = pathJoin("/opt/apps",compilerD,pkgName,fullVersion) +local mroot = os.getenv("MODULEPATH_ROOT") +local mpath = pathJoin(mroot, "MPI", compilerV, pkgName, pkgV) + +append_path('MODULEPATH', mpath) +prepend_path('PATH', pathJoin(base,"bin")) +family("mpi") + +load("mpi-common/.mpich") diff --git a/rt/family/mf/Compiler/ibm/13/openmpi/2.1.1.lua b/rt/family/mf/Compiler/ibm/13/openmpi/2.1.1.lua deleted file mode 120000 index 35d397d15..000000000 --- a/rt/family/mf/Compiler/ibm/13/openmpi/2.1.1.lua +++ /dev/null @@ -1 +0,0 @@ -../../../.base/openmpi/2.1.1.lua \ No newline at end of file diff --git a/rt/family/mf/Compiler/ibm/13/openmpi/2.1.1.lua b/rt/family/mf/Compiler/ibm/13/openmpi/2.1.1.lua new file mode 100644 index 000000000..66a1dfbe7 --- /dev/null +++ b/rt/family/mf/Compiler/ibm/13/openmpi/2.1.1.lua @@ -0,0 +1,21 @@ +help([[Sets up the OpenMPI MPI environment. +Depends on: gcc/7.1.0, common +Dependents: Libraries built with this MPI +Family: mpi +]]) + +local pkgName = myModuleName() +local fullVersion = myModuleVersion() +local pkgV = fullVersion:match('(%d+%.%d+)%.?') +local hierA = hierarchyA(pathJoin(pkgName,fullVersion),1) +local compilerV = hierA[1] +local compilerD = compilerV:gsub("/","-"):gsub("%.","_") +local base = pathJoin("/opt/apps",compilerD,pkgName,fullVersion) +local mroot = os.getenv("MODULEPATH_ROOT") +local mpath = pathJoin(mroot, "MPI", compilerV, pkgName, pkgV) + +append_path('MODULEPATH', mpath) +prepend_path('PATH', pathJoin(base,"bin")) +family("mpi") + +load("mpi-common/.openmpi") diff --git a/rt/family/mf/MPI/gcc/7/mpich/3.2/phdf5/1.8.18.lua b/rt/family/mf/MPI/gcc/7/mpich/3.2/phdf5/1.8.18.lua deleted file mode 120000 index 096da3a03..000000000 --- a/rt/family/mf/MPI/gcc/7/mpich/3.2/phdf5/1.8.18.lua +++ /dev/null @@ -1 +0,0 @@ -../../../../../.base/phdf5/1.8.18.lua \ No newline at end of file diff --git a/rt/family/mf/MPI/gcc/7/mpich/3.2/phdf5/1.8.18.lua b/rt/family/mf/MPI/gcc/7/mpich/3.2/phdf5/1.8.18.lua new file mode 100644 index 000000000..86a448e7c --- /dev/null +++ b/rt/family/mf/MPI/gcc/7/mpich/3.2/phdf5/1.8.18.lua @@ -0,0 +1,24 @@ +local pkgName = myModuleName() +local pkgVersion = myModuleVersion() +local pkgNameVer = myModuleFullName() + +local hierA = hierarchyA(pkgNameVer,2) +local mpi_dir = hierA[1]:gsub("/","-"):gsub("%.","_") +local compiler_dir = hierA[2]:gsub("/","-"):gsub("%.","_") +local pkgRoot = "/opt/apps" +local base = pathJoin(pkgRoot, compiler_dir, mpi_dir, pkgNameVer) + +setenv( "TACC_HDF5_DIR", base) +setenv( "TACC_HDF5_DOC", pathJoin(base,"doc")) +setenv( "TACC_HDF5_INC", pathJoin(base,"include")) +setenv( "TACC_HDF5_LIB", pathJoin(base,"lib")) +setenv( "TACC_HDF5_BIN", pathJoin(base,"bin")) +prepend_path("PATH", pathJoin(base,"bin")) +prepend_path("LD_LIBRARY_PATH", pathJoin(base,"lib")) + +family("HDF5") +whatis("Name: Parallel HDF5") +whatis("Version: " .. pkgVersion) +whatis("Category: library, mathematics") +whatis("URL: http://www.hdfgroup.org/HDF5") +whatis("Description: General purpose library and file format for storing scientific data (parallel I/O version)") diff --git a/rt/family/mf/MPI/gcc/7/openmpi/2.1/phdf5/1.8.18.lua b/rt/family/mf/MPI/gcc/7/openmpi/2.1/phdf5/1.8.18.lua deleted file mode 120000 index 096da3a03..000000000 --- a/rt/family/mf/MPI/gcc/7/openmpi/2.1/phdf5/1.8.18.lua +++ /dev/null @@ -1 +0,0 @@ -../../../../../.base/phdf5/1.8.18.lua \ No newline at end of file diff --git a/rt/family/mf/MPI/gcc/7/openmpi/2.1/phdf5/1.8.18.lua b/rt/family/mf/MPI/gcc/7/openmpi/2.1/phdf5/1.8.18.lua new file mode 100644 index 000000000..86a448e7c --- /dev/null +++ b/rt/family/mf/MPI/gcc/7/openmpi/2.1/phdf5/1.8.18.lua @@ -0,0 +1,24 @@ +local pkgName = myModuleName() +local pkgVersion = myModuleVersion() +local pkgNameVer = myModuleFullName() + +local hierA = hierarchyA(pkgNameVer,2) +local mpi_dir = hierA[1]:gsub("/","-"):gsub("%.","_") +local compiler_dir = hierA[2]:gsub("/","-"):gsub("%.","_") +local pkgRoot = "/opt/apps" +local base = pathJoin(pkgRoot, compiler_dir, mpi_dir, pkgNameVer) + +setenv( "TACC_HDF5_DIR", base) +setenv( "TACC_HDF5_DOC", pathJoin(base,"doc")) +setenv( "TACC_HDF5_INC", pathJoin(base,"include")) +setenv( "TACC_HDF5_LIB", pathJoin(base,"lib")) +setenv( "TACC_HDF5_BIN", pathJoin(base,"bin")) +prepend_path("PATH", pathJoin(base,"bin")) +prepend_path("LD_LIBRARY_PATH", pathJoin(base,"lib")) + +family("HDF5") +whatis("Name: Parallel HDF5") +whatis("Version: " .. pkgVersion) +whatis("Category: library, mathematics") +whatis("URL: http://www.hdfgroup.org/HDF5") +whatis("Description: General purpose library and file format for storing scientific data (parallel I/O version)") diff --git a/rt/family/mf/MPI/ibm/13/mpich/3.2/phdf5/1.8.18.lua b/rt/family/mf/MPI/ibm/13/mpich/3.2/phdf5/1.8.18.lua deleted file mode 120000 index 096da3a03..000000000 --- a/rt/family/mf/MPI/ibm/13/mpich/3.2/phdf5/1.8.18.lua +++ /dev/null @@ -1 +0,0 @@ -../../../../../.base/phdf5/1.8.18.lua \ No newline at end of file diff --git a/rt/family/mf/MPI/ibm/13/mpich/3.2/phdf5/1.8.18.lua b/rt/family/mf/MPI/ibm/13/mpich/3.2/phdf5/1.8.18.lua new file mode 100644 index 000000000..86a448e7c --- /dev/null +++ b/rt/family/mf/MPI/ibm/13/mpich/3.2/phdf5/1.8.18.lua @@ -0,0 +1,24 @@ +local pkgName = myModuleName() +local pkgVersion = myModuleVersion() +local pkgNameVer = myModuleFullName() + +local hierA = hierarchyA(pkgNameVer,2) +local mpi_dir = hierA[1]:gsub("/","-"):gsub("%.","_") +local compiler_dir = hierA[2]:gsub("/","-"):gsub("%.","_") +local pkgRoot = "/opt/apps" +local base = pathJoin(pkgRoot, compiler_dir, mpi_dir, pkgNameVer) + +setenv( "TACC_HDF5_DIR", base) +setenv( "TACC_HDF5_DOC", pathJoin(base,"doc")) +setenv( "TACC_HDF5_INC", pathJoin(base,"include")) +setenv( "TACC_HDF5_LIB", pathJoin(base,"lib")) +setenv( "TACC_HDF5_BIN", pathJoin(base,"bin")) +prepend_path("PATH", pathJoin(base,"bin")) +prepend_path("LD_LIBRARY_PATH", pathJoin(base,"lib")) + +family("HDF5") +whatis("Name: Parallel HDF5") +whatis("Version: " .. pkgVersion) +whatis("Category: library, mathematics") +whatis("URL: http://www.hdfgroup.org/HDF5") +whatis("Description: General purpose library and file format for storing scientific data (parallel I/O version)") diff --git a/rt/family/mf/MPI/ibm/13/openmpi/2.1/phdf5/1.8.18.lua b/rt/family/mf/MPI/ibm/13/openmpi/2.1/phdf5/1.8.18.lua deleted file mode 120000 index 096da3a03..000000000 --- a/rt/family/mf/MPI/ibm/13/openmpi/2.1/phdf5/1.8.18.lua +++ /dev/null @@ -1 +0,0 @@ -../../../../../.base/phdf5/1.8.18.lua \ No newline at end of file diff --git a/rt/family/mf/MPI/ibm/13/openmpi/2.1/phdf5/1.8.18.lua b/rt/family/mf/MPI/ibm/13/openmpi/2.1/phdf5/1.8.18.lua new file mode 100644 index 000000000..86a448e7c --- /dev/null +++ b/rt/family/mf/MPI/ibm/13/openmpi/2.1/phdf5/1.8.18.lua @@ -0,0 +1,24 @@ +local pkgName = myModuleName() +local pkgVersion = myModuleVersion() +local pkgNameVer = myModuleFullName() + +local hierA = hierarchyA(pkgNameVer,2) +local mpi_dir = hierA[1]:gsub("/","-"):gsub("%.","_") +local compiler_dir = hierA[2]:gsub("/","-"):gsub("%.","_") +local pkgRoot = "/opt/apps" +local base = pathJoin(pkgRoot, compiler_dir, mpi_dir, pkgNameVer) + +setenv( "TACC_HDF5_DIR", base) +setenv( "TACC_HDF5_DOC", pathJoin(base,"doc")) +setenv( "TACC_HDF5_INC", pathJoin(base,"include")) +setenv( "TACC_HDF5_LIB", pathJoin(base,"lib")) +setenv( "TACC_HDF5_BIN", pathJoin(base,"bin")) +prepend_path("PATH", pathJoin(base,"bin")) +prepend_path("LD_LIBRARY_PATH", pathJoin(base,"lib")) + +family("HDF5") +whatis("Name: Parallel HDF5") +whatis("Version: " .. pkgVersion) +whatis("Category: library, mathematics") +whatis("URL: http://www.hdfgroup.org/HDF5") +whatis("Description: General purpose library and file format for storing scientific data (parallel I/O version)") diff --git a/rt/hierarchy/mf/Compiler/gcc/6.1/boost/1.59.0.lua b/rt/hierarchy/mf/Compiler/gcc/6.1/boost/1.59.0.lua deleted file mode 120000 index 6914cbfdc..000000000 --- a/rt/hierarchy/mf/Compiler/gcc/6.1/boost/1.59.0.lua +++ /dev/null @@ -1 +0,0 @@ -../../../.base/boost/1.59.0.lua \ No newline at end of file diff --git a/rt/hierarchy/mf/Compiler/gcc/6.1/boost/1.59.0.lua b/rt/hierarchy/mf/Compiler/gcc/6.1/boost/1.59.0.lua new file mode 100644 index 000000000..e3601b23e --- /dev/null +++ b/rt/hierarchy/mf/Compiler/gcc/6.1/boost/1.59.0.lua @@ -0,0 +1 @@ +setenv("BOOST_VERSION", myModuleVersion()) diff --git a/rt/hierarchy/mf/Compiler/gcc/6.1/impi/17.0.3.lua b/rt/hierarchy/mf/Compiler/gcc/6.1/impi/17.0.3.lua deleted file mode 120000 index 29d8aa204..000000000 --- a/rt/hierarchy/mf/Compiler/gcc/6.1/impi/17.0.3.lua +++ /dev/null @@ -1 +0,0 @@ -../../../.base/impi/17.0.3.lua \ No newline at end of file diff --git a/rt/hierarchy/mf/Compiler/gcc/6.1/impi/17.0.3.lua b/rt/hierarchy/mf/Compiler/gcc/6.1/impi/17.0.3.lua new file mode 100644 index 000000000..5cbad1941 --- /dev/null +++ b/rt/hierarchy/mf/Compiler/gcc/6.1/impi/17.0.3.lua @@ -0,0 +1,36 @@ +-- -*- lua -*- + +local helpMsg = [[ +Intel MPI help +]] + +local pkgName = myModuleName() +local fullVersion = myModuleVersion() +local pkgV = fullVersion:match('(%d+%.%d+)%.?') +local hierA = hierarchyA(pathJoin(pkgName,fullVersion),1) +local compilerV = hierA[1] +local compilerD = compilerV:gsub("/","-"):gsub("%.","_") +local base = pathJoin("/opt/apps",compilerD,pkgName,fullVersion) +local mroot = os.getenv("MODULEPATH_ROOT") +local mpath = pathJoin(mroot, "MPI", compilerV, pkgName, pkgV) + +whatis("Name: "..pkgName) +whatis("Version "..fullVersion) +whatis("Category: mpi") +whatis("Description: Intel Version of the Message Passing Interface Library") +whatis("Keyword: library, mpi") + +help(helpMsg, "Version ",fullVersion) + +setenv( "TACC_IMPI_DIR", base) +setenv( "TACC_IMPI_LIB", pathJoin(base,"lib")) +setenv( "TACC_IMPI_BIN", pathJoin(base,"bin")) +setenv( "TACC_IMPI_INC", pathJoin(base,"include")) +prepend_path("MANPATH", pathJoin(base,"man")) +prepend_path('MODULEPATH', mpath) + +prepend_path('LD_LIBRARY_PATH', pathJoin(mpihome,"lib")) +prepend_path('LD_LIBRARY_PATH', pathJoin(mpihome,"lib","openmpi")) +setenv( 'MPIHOME', base) +setenv( 'MPICH_HOME', base) +family("MPI") diff --git a/rt/hierarchy/mf/Compiler/gcc/6.1/python/2.7.9.lua b/rt/hierarchy/mf/Compiler/gcc/6.1/python/2.7.9.lua deleted file mode 120000 index c54c0b856..000000000 --- a/rt/hierarchy/mf/Compiler/gcc/6.1/python/2.7.9.lua +++ /dev/null @@ -1 +0,0 @@ -../../../.base/python/2.7.9.lua \ No newline at end of file diff --git a/rt/hierarchy/mf/Compiler/gcc/6.1/python/2.7.9.lua b/rt/hierarchy/mf/Compiler/gcc/6.1/python/2.7.9.lua new file mode 100644 index 000000000..6345a5dc9 --- /dev/null +++ b/rt/hierarchy/mf/Compiler/gcc/6.1/python/2.7.9.lua @@ -0,0 +1,2 @@ +setenv("COMPILER_DEPENDENT","yes") +setenv("MY_VERSION",myModuleVersion()) diff --git a/rt/hierarchy/mf/Compiler/intel/17.0/impi/17.0.3.lua b/rt/hierarchy/mf/Compiler/intel/17.0/impi/17.0.3.lua deleted file mode 120000 index 29d8aa204..000000000 --- a/rt/hierarchy/mf/Compiler/intel/17.0/impi/17.0.3.lua +++ /dev/null @@ -1 +0,0 @@ -../../../.base/impi/17.0.3.lua \ No newline at end of file diff --git a/rt/hierarchy/mf/Compiler/intel/17.0/impi/17.0.3.lua b/rt/hierarchy/mf/Compiler/intel/17.0/impi/17.0.3.lua new file mode 100644 index 000000000..5cbad1941 --- /dev/null +++ b/rt/hierarchy/mf/Compiler/intel/17.0/impi/17.0.3.lua @@ -0,0 +1,36 @@ +-- -*- lua -*- + +local helpMsg = [[ +Intel MPI help +]] + +local pkgName = myModuleName() +local fullVersion = myModuleVersion() +local pkgV = fullVersion:match('(%d+%.%d+)%.?') +local hierA = hierarchyA(pathJoin(pkgName,fullVersion),1) +local compilerV = hierA[1] +local compilerD = compilerV:gsub("/","-"):gsub("%.","_") +local base = pathJoin("/opt/apps",compilerD,pkgName,fullVersion) +local mroot = os.getenv("MODULEPATH_ROOT") +local mpath = pathJoin(mroot, "MPI", compilerV, pkgName, pkgV) + +whatis("Name: "..pkgName) +whatis("Version "..fullVersion) +whatis("Category: mpi") +whatis("Description: Intel Version of the Message Passing Interface Library") +whatis("Keyword: library, mpi") + +help(helpMsg, "Version ",fullVersion) + +setenv( "TACC_IMPI_DIR", base) +setenv( "TACC_IMPI_LIB", pathJoin(base,"lib")) +setenv( "TACC_IMPI_BIN", pathJoin(base,"bin")) +setenv( "TACC_IMPI_INC", pathJoin(base,"include")) +prepend_path("MANPATH", pathJoin(base,"man")) +prepend_path('MODULEPATH', mpath) + +prepend_path('LD_LIBRARY_PATH', pathJoin(mpihome,"lib")) +prepend_path('LD_LIBRARY_PATH', pathJoin(mpihome,"lib","openmpi")) +setenv( 'MPIHOME', base) +setenv( 'MPICH_HOME', base) +family("MPI") diff --git a/rt/hierarchy/mf/MPI/gcc/6.1/impi/17.0/petsc/3.7.lua b/rt/hierarchy/mf/MPI/gcc/6.1/impi/17.0/petsc/3.7.lua deleted file mode 120000 index 26748ab20..000000000 --- a/rt/hierarchy/mf/MPI/gcc/6.1/impi/17.0/petsc/3.7.lua +++ /dev/null @@ -1 +0,0 @@ -../../../../../.base/petsc/3.7.lua \ No newline at end of file diff --git a/rt/hierarchy/mf/MPI/gcc/6.1/impi/17.0/petsc/3.7.lua b/rt/hierarchy/mf/MPI/gcc/6.1/impi/17.0/petsc/3.7.lua new file mode 100644 index 000000000..e69de29bb diff --git a/rt/hierarchy/mf/MPI/intel/17.0/impi/17.0/petsc/3.7.lua b/rt/hierarchy/mf/MPI/intel/17.0/impi/17.0/petsc/3.7.lua deleted file mode 120000 index 26748ab20..000000000 --- a/rt/hierarchy/mf/MPI/intel/17.0/impi/17.0/petsc/3.7.lua +++ /dev/null @@ -1 +0,0 @@ -../../../../../.base/petsc/3.7.lua \ No newline at end of file diff --git a/rt/hierarchy/mf/MPI/intel/17.0/impi/17.0/petsc/3.7.lua b/rt/hierarchy/mf/MPI/intel/17.0/impi/17.0/petsc/3.7.lua new file mode 100644 index 000000000..e69de29bb diff --git a/rt/hook/append/test_hooks.lua b/rt/hook/append/test_hooks.lua deleted file mode 120000 index 80adeedbf..000000000 --- a/rt/hook/append/test_hooks.lua +++ /dev/null @@ -1 +0,0 @@ -../test_hooks.lua \ No newline at end of file diff --git a/rt/hook/append/test_hooks.lua b/rt/hook/append/test_hooks.lua new file mode 100644 index 000000000..ba1b5a7b6 --- /dev/null +++ b/rt/hook/append/test_hooks.lua @@ -0,0 +1,13 @@ +function load_hook_a(t) + local frameStk = require("FrameStk"):singleton() + local mt = frameStk:mt() + local simpleName = string.match(t.modFullName, "(.-)/") + LmodMessage("Load hook A called on " .. simpleName) +end + +function load_hook_b(t) + local frameStk = require("FrameStk"):singleton() + local mt = frameStk:mt() + local simpleName = string.match(t.modFullName, "(.-)/") + LmodMessage("Load hook B called on " .. simpleName) +end diff --git a/rt/hook/mf/Core/admin/default b/rt/hook/mf/Core/admin/default deleted file mode 120000 index 4a4a278b2..000000000 --- a/rt/hook/mf/Core/admin/default +++ /dev/null @@ -1 +0,0 @@ -admin-1.0.lua \ No newline at end of file diff --git a/rt/hook/mf/Core/admin/default b/rt/hook/mf/Core/admin/default new file mode 100644 index 000000000..9b91b10cf --- /dev/null +++ b/rt/hook/mf/Core/admin/default @@ -0,0 +1,3 @@ +-- -*- lua -*- +setenv("ADMIN_MODULE_LOADED","1") +prepend_path('PATH','/usr/sbin/://sbin///') diff --git a/rt/hook/orig_hook_style/test_hooks.lua b/rt/hook/orig_hook_style/test_hooks.lua deleted file mode 120000 index 80adeedbf..000000000 --- a/rt/hook/orig_hook_style/test_hooks.lua +++ /dev/null @@ -1 +0,0 @@ -../test_hooks.lua \ No newline at end of file diff --git a/rt/hook/orig_hook_style/test_hooks.lua b/rt/hook/orig_hook_style/test_hooks.lua new file mode 100644 index 000000000..ba1b5a7b6 --- /dev/null +++ b/rt/hook/orig_hook_style/test_hooks.lua @@ -0,0 +1,13 @@ +function load_hook_a(t) + local frameStk = require("FrameStk"):singleton() + local mt = frameStk:mt() + local simpleName = string.match(t.modFullName, "(.-)/") + LmodMessage("Load hook A called on " .. simpleName) +end + +function load_hook_b(t) + local frameStk = require("FrameStk"):singleton() + local mt = frameStk:mt() + local simpleName = string.match(t.modFullName, "(.-)/") + LmodMessage("Load hook B called on " .. simpleName) +end diff --git a/rt/hook/prepend/test_hooks.lua b/rt/hook/prepend/test_hooks.lua deleted file mode 120000 index 80adeedbf..000000000 --- a/rt/hook/prepend/test_hooks.lua +++ /dev/null @@ -1 +0,0 @@ -../test_hooks.lua \ No newline at end of file diff --git a/rt/hook/prepend/test_hooks.lua b/rt/hook/prepend/test_hooks.lua new file mode 100644 index 000000000..ba1b5a7b6 --- /dev/null +++ b/rt/hook/prepend/test_hooks.lua @@ -0,0 +1,13 @@ +function load_hook_a(t) + local frameStk = require("FrameStk"):singleton() + local mt = frameStk:mt() + local simpleName = string.match(t.modFullName, "(.-)/") + LmodMessage("Load hook A called on " .. simpleName) +end + +function load_hook_b(t) + local frameStk = require("FrameStk"):singleton() + local mt = frameStk:mt() + local simpleName = string.match(t.modFullName, "(.-)/") + LmodMessage("Load hook B called on " .. simpleName) +end diff --git a/rt/hook/replace/test_hooks.lua b/rt/hook/replace/test_hooks.lua deleted file mode 120000 index 80adeedbf..000000000 --- a/rt/hook/replace/test_hooks.lua +++ /dev/null @@ -1 +0,0 @@ -../test_hooks.lua \ No newline at end of file diff --git a/rt/hook/replace/test_hooks.lua b/rt/hook/replace/test_hooks.lua new file mode 100644 index 000000000..ba1b5a7b6 --- /dev/null +++ b/rt/hook/replace/test_hooks.lua @@ -0,0 +1,13 @@ +function load_hook_a(t) + local frameStk = require("FrameStk"):singleton() + local mt = frameStk:mt() + local simpleName = string.match(t.modFullName, "(.-)/") + LmodMessage("Load hook A called on " .. simpleName) +end + +function load_hook_b(t) + local frameStk = require("FrameStk"):singleton() + local mt = frameStk:mt() + local simpleName = string.match(t.modFullName, "(.-)/") + LmodMessage("Load hook B called on " .. simpleName) +end diff --git a/rt/hook_avail/mf/Compilers/intel14.0/mpi/openmpi/default b/rt/hook_avail/mf/Compilers/intel14.0/mpi/openmpi/default deleted file mode 120000 index ad19b527e..000000000 --- a/rt/hook_avail/mf/Compilers/intel14.0/mpi/openmpi/default +++ /dev/null @@ -1 +0,0 @@ -1.6.5.lua \ No newline at end of file diff --git a/rt/hook_avail/mf/Compilers/intel14.0/mpi/openmpi/default b/rt/hook_avail/mf/Compilers/intel14.0/mpi/openmpi/default new file mode 100644 index 000000000..f543abb6e --- /dev/null +++ b/rt/hook_avail/mf/Compilers/intel14.0/mpi/openmpi/default @@ -0,0 +1,22 @@ +help( +[[ +This module loads the OpenMPI library. +]]) + +family("mpi") +whatis("(Website________) http://www.open-mpi.org/") + +local base = "/software6/mpi/openmpi/1.6.5_intel" + +prepend_path("PATH", pathJoin(base, "bin")) +prepend_path("MANPATH", pathJoin(base, "share/man")) +prepend_path("LIBRARY_PATH", pathJoin(base, "lib")) +prepend_path("LD_LIBRARY_PATH", pathJoin(base, "lib")) +prepend_path("CPATH", pathJoin(base, "include")) + +setenv("OMPI_MCA_plm_rsh_num_concurrent", 960) + +local mroot = os.getenv("MODULEPATH_ROOT") +local mdir = pathJoin(mroot,"MPI","intel14.0","openmpi1.6.5") +prepend_path("MODULEPATH", mdir) + diff --git a/rt/inherit/mf/Compiler/gcc/4.7/mpich/3.0.4.lua b/rt/inherit/mf/Compiler/gcc/4.7/mpich/3.0.4.lua deleted file mode 120000 index c43a4236c..000000000 --- a/rt/inherit/mf/Compiler/gcc/4.7/mpich/3.0.4.lua +++ /dev/null @@ -1 +0,0 @@ -../../../.base/mpich/3.0.4.lua \ No newline at end of file diff --git a/rt/inherit/mf/Compiler/gcc/4.7/mpich/3.0.4.lua b/rt/inherit/mf/Compiler/gcc/4.7/mpich/3.0.4.lua new file mode 100644 index 000000000..65a718631 --- /dev/null +++ b/rt/inherit/mf/Compiler/gcc/4.7/mpich/3.0.4.lua @@ -0,0 +1,18 @@ +-- -*- lua -*- +local helpMsg = [[ +Mpich implementation MPI 3.0 +]] + +local pkg = Pkg:new{Category = "MPI library", + URL = "http://www.mpich.org", + Description = "High-Performance Portable MPI", + display_name = "MPICH", + level = 1, + help = helpMsg, +} + +pkg:setStandardPaths("LIB","DIR","BIN","MAN") +prepend_path('MODULEPATH', pkg:moduleDir()) +local base = pkg:pkgBase() +setenv( "MPICH_HOME", base) +family("MPI") diff --git a/rt/inherit/mf/Compiler/gcc/4.7/openmpi/1.6.5.lua b/rt/inherit/mf/Compiler/gcc/4.7/openmpi/1.6.5.lua deleted file mode 120000 index 6c05ddbf4..000000000 --- a/rt/inherit/mf/Compiler/gcc/4.7/openmpi/1.6.5.lua +++ /dev/null @@ -1 +0,0 @@ -../../../.base/openmpi/1.6.5.lua \ No newline at end of file diff --git a/rt/inherit/mf/Compiler/gcc/4.7/openmpi/1.6.5.lua b/rt/inherit/mf/Compiler/gcc/4.7/openmpi/1.6.5.lua new file mode 100644 index 000000000..f4f42d94a --- /dev/null +++ b/rt/inherit/mf/Compiler/gcc/4.7/openmpi/1.6.5.lua @@ -0,0 +1,25 @@ +-- -*- lua -*- + +local helpMsg = [[ +Open MPI help +]] + +local pkg = Pkg:new{Category = "MPI library", + URL = "http://www.openmpi.org", + Description = "Openmpi Version of the " .. + "Message Passing Interface Library", + display_name = "OPENMPI", + level = 1, + help = helpMsg, +} + +pkg:setStandardPaths("LIB","DIR","BIN","MAN") +prepend_path('MODULEPATH', pkg:moduleDir()) +local base = pkg:pkgBase() + +prepend_path('LD_LIBRARY_PATH', pathJoin(mpihome,"lib")) +prepend_path('LD_LIBRARY_PATH', pathJoin(mpihome,"lib","openmpi")) +prepend_path('MANPATH', pathJoin(mpihome,"man")) +setenv( 'MPIHOME', base) +setenv( 'MPICH_HOME', base) +family("MPI") diff --git a/rt/inherit/mf/Compiler/intel/13.1/mpich/3.0.4.lua b/rt/inherit/mf/Compiler/intel/13.1/mpich/3.0.4.lua deleted file mode 120000 index c43a4236c..000000000 --- a/rt/inherit/mf/Compiler/intel/13.1/mpich/3.0.4.lua +++ /dev/null @@ -1 +0,0 @@ -../../../.base/mpich/3.0.4.lua \ No newline at end of file diff --git a/rt/inherit/mf/Compiler/intel/13.1/mpich/3.0.4.lua b/rt/inherit/mf/Compiler/intel/13.1/mpich/3.0.4.lua new file mode 100644 index 000000000..65a718631 --- /dev/null +++ b/rt/inherit/mf/Compiler/intel/13.1/mpich/3.0.4.lua @@ -0,0 +1,18 @@ +-- -*- lua -*- +local helpMsg = [[ +Mpich implementation MPI 3.0 +]] + +local pkg = Pkg:new{Category = "MPI library", + URL = "http://www.mpich.org", + Description = "High-Performance Portable MPI", + display_name = "MPICH", + level = 1, + help = helpMsg, +} + +pkg:setStandardPaths("LIB","DIR","BIN","MAN") +prepend_path('MODULEPATH', pkg:moduleDir()) +local base = pkg:pkgBase() +setenv( "MPICH_HOME", base) +family("MPI") diff --git a/rt/inherit/mf/Compiler/intel/13.1/openmpi/1.6.5.lua b/rt/inherit/mf/Compiler/intel/13.1/openmpi/1.6.5.lua deleted file mode 120000 index 6c05ddbf4..000000000 --- a/rt/inherit/mf/Compiler/intel/13.1/openmpi/1.6.5.lua +++ /dev/null @@ -1 +0,0 @@ -../../../.base/openmpi/1.6.5.lua \ No newline at end of file diff --git a/rt/inherit/mf/Compiler/intel/13.1/openmpi/1.6.5.lua b/rt/inherit/mf/Compiler/intel/13.1/openmpi/1.6.5.lua new file mode 100644 index 000000000..f4f42d94a --- /dev/null +++ b/rt/inherit/mf/Compiler/intel/13.1/openmpi/1.6.5.lua @@ -0,0 +1,25 @@ +-- -*- lua -*- + +local helpMsg = [[ +Open MPI help +]] + +local pkg = Pkg:new{Category = "MPI library", + URL = "http://www.openmpi.org", + Description = "Openmpi Version of the " .. + "Message Passing Interface Library", + display_name = "OPENMPI", + level = 1, + help = helpMsg, +} + +pkg:setStandardPaths("LIB","DIR","BIN","MAN") +prepend_path('MODULEPATH', pkg:moduleDir()) +local base = pkg:pkgBase() + +prepend_path('LD_LIBRARY_PATH', pathJoin(mpihome,"lib")) +prepend_path('LD_LIBRARY_PATH', pathJoin(mpihome,"lib","openmpi")) +prepend_path('MANPATH', pathJoin(mpihome,"man")) +setenv( 'MPIHOME', base) +setenv( 'MPICH_HOME', base) +family("MPI") diff --git a/rt/inherit/pmf/compiler/gcc/4.7/mpich/3.0.4.lua b/rt/inherit/pmf/compiler/gcc/4.7/mpich/3.0.4.lua deleted file mode 120000 index c43a4236c..000000000 --- a/rt/inherit/pmf/compiler/gcc/4.7/mpich/3.0.4.lua +++ /dev/null @@ -1 +0,0 @@ -../../../.base/mpich/3.0.4.lua \ No newline at end of file diff --git a/rt/inherit/pmf/compiler/gcc/4.7/mpich/3.0.4.lua b/rt/inherit/pmf/compiler/gcc/4.7/mpich/3.0.4.lua new file mode 100644 index 000000000..e45c1d739 --- /dev/null +++ b/rt/inherit/pmf/compiler/gcc/4.7/mpich/3.0.4.lua @@ -0,0 +1,10 @@ +local fn = myFileName():gsub("%.lua$","") +local mroot = fn:gsub("/compiler/.*$","") +local name = myModuleName() +local version = myModuleVersion() +local v = version:match("([0-9]+%.[0-9]+)%.?") +local hierA = hierarchyA(myModuleFullName(),1) +local mdir = pathJoin(mroot,"mpi",hierA[1],name,v) +setenv("PERSONAL_"..name,version) +inherit() +prepend_path("MODULEPATH",mdir) diff --git a/rt/inherit/pmf/compiler/gcc/4.7/openmpi/1.6.5.lua b/rt/inherit/pmf/compiler/gcc/4.7/openmpi/1.6.5.lua deleted file mode 120000 index 6c05ddbf4..000000000 --- a/rt/inherit/pmf/compiler/gcc/4.7/openmpi/1.6.5.lua +++ /dev/null @@ -1 +0,0 @@ -../../../.base/openmpi/1.6.5.lua \ No newline at end of file diff --git a/rt/inherit/pmf/compiler/gcc/4.7/openmpi/1.6.5.lua b/rt/inherit/pmf/compiler/gcc/4.7/openmpi/1.6.5.lua new file mode 100644 index 000000000..e45c1d739 --- /dev/null +++ b/rt/inherit/pmf/compiler/gcc/4.7/openmpi/1.6.5.lua @@ -0,0 +1,10 @@ +local fn = myFileName():gsub("%.lua$","") +local mroot = fn:gsub("/compiler/.*$","") +local name = myModuleName() +local version = myModuleVersion() +local v = version:match("([0-9]+%.[0-9]+)%.?") +local hierA = hierarchyA(myModuleFullName(),1) +local mdir = pathJoin(mroot,"mpi",hierA[1],name,v) +setenv("PERSONAL_"..name,version) +inherit() +prepend_path("MODULEPATH",mdir) diff --git a/rt/inherit/pmf/compiler/intel/13.1/mpich/3.0.4.lua b/rt/inherit/pmf/compiler/intel/13.1/mpich/3.0.4.lua deleted file mode 120000 index c43a4236c..000000000 --- a/rt/inherit/pmf/compiler/intel/13.1/mpich/3.0.4.lua +++ /dev/null @@ -1 +0,0 @@ -../../../.base/mpich/3.0.4.lua \ No newline at end of file diff --git a/rt/inherit/pmf/compiler/intel/13.1/mpich/3.0.4.lua b/rt/inherit/pmf/compiler/intel/13.1/mpich/3.0.4.lua new file mode 100644 index 000000000..e45c1d739 --- /dev/null +++ b/rt/inherit/pmf/compiler/intel/13.1/mpich/3.0.4.lua @@ -0,0 +1,10 @@ +local fn = myFileName():gsub("%.lua$","") +local mroot = fn:gsub("/compiler/.*$","") +local name = myModuleName() +local version = myModuleVersion() +local v = version:match("([0-9]+%.[0-9]+)%.?") +local hierA = hierarchyA(myModuleFullName(),1) +local mdir = pathJoin(mroot,"mpi",hierA[1],name,v) +setenv("PERSONAL_"..name,version) +inherit() +prepend_path("MODULEPATH",mdir) diff --git a/rt/inherit/pmf/compiler/intel/13.1/openmpi/1.6.5.lua b/rt/inherit/pmf/compiler/intel/13.1/openmpi/1.6.5.lua deleted file mode 120000 index 6c05ddbf4..000000000 --- a/rt/inherit/pmf/compiler/intel/13.1/openmpi/1.6.5.lua +++ /dev/null @@ -1 +0,0 @@ -../../../.base/openmpi/1.6.5.lua \ No newline at end of file diff --git a/rt/inherit/pmf/compiler/intel/13.1/openmpi/1.6.5.lua b/rt/inherit/pmf/compiler/intel/13.1/openmpi/1.6.5.lua new file mode 100644 index 000000000..e45c1d739 --- /dev/null +++ b/rt/inherit/pmf/compiler/intel/13.1/openmpi/1.6.5.lua @@ -0,0 +1,10 @@ +local fn = myFileName():gsub("%.lua$","") +local mroot = fn:gsub("/compiler/.*$","") +local name = myModuleName() +local version = myModuleVersion() +local v = version:match("([0-9]+%.[0-9]+)%.?") +local hierA = hierarchyA(myModuleFullName(),1) +local mdir = pathJoin(mroot,"mpi",hierA[1],name,v) +setenv("PERSONAL_"..name,version) +inherit() +prepend_path("MODULEPATH",mdir) diff --git a/rt/inherit/pmf/mpi/gcc/4.7/mpich/3.0/p4est/1.0.lua b/rt/inherit/pmf/mpi/gcc/4.7/mpich/3.0/p4est/1.0.lua deleted file mode 120000 index bf30ca3be..000000000 --- a/rt/inherit/pmf/mpi/gcc/4.7/mpich/3.0/p4est/1.0.lua +++ /dev/null @@ -1 +0,0 @@ -../../../../../.base/p4est/1.0.lua \ No newline at end of file diff --git a/rt/inherit/pmf/mpi/gcc/4.7/mpich/3.0/p4est/1.0.lua b/rt/inherit/pmf/mpi/gcc/4.7/mpich/3.0/p4est/1.0.lua new file mode 100644 index 000000000..753f5a278 --- /dev/null +++ b/rt/inherit/pmf/mpi/gcc/4.7/mpich/3.0/p4est/1.0.lua @@ -0,0 +1,6 @@ +local pkgRoot = "/work/12345/aterrel/opt/apps" +local hierA = hierarchyA(myModuleFullName(),2) +local compiler = hierA[1]:gsub("/","-"):gsub("%.","_") +local mpi = hierA[2]:gsub("/","-"):gsub("%.","_") +local base = pathJoin(pkgRoot,compiler,mpi,myModuleFullName()) +setenv("P4EST_DIR",base) diff --git a/rt/inherit/pmf/mpi/gcc/4.7/openmpi/1.6/p4est/1.0.lua b/rt/inherit/pmf/mpi/gcc/4.7/openmpi/1.6/p4est/1.0.lua deleted file mode 120000 index bf30ca3be..000000000 --- a/rt/inherit/pmf/mpi/gcc/4.7/openmpi/1.6/p4est/1.0.lua +++ /dev/null @@ -1 +0,0 @@ -../../../../../.base/p4est/1.0.lua \ No newline at end of file diff --git a/rt/inherit/pmf/mpi/gcc/4.7/openmpi/1.6/p4est/1.0.lua b/rt/inherit/pmf/mpi/gcc/4.7/openmpi/1.6/p4est/1.0.lua new file mode 100644 index 000000000..753f5a278 --- /dev/null +++ b/rt/inherit/pmf/mpi/gcc/4.7/openmpi/1.6/p4est/1.0.lua @@ -0,0 +1,6 @@ +local pkgRoot = "/work/12345/aterrel/opt/apps" +local hierA = hierarchyA(myModuleFullName(),2) +local compiler = hierA[1]:gsub("/","-"):gsub("%.","_") +local mpi = hierA[2]:gsub("/","-"):gsub("%.","_") +local base = pathJoin(pkgRoot,compiler,mpi,myModuleFullName()) +setenv("P4EST_DIR",base) diff --git a/rt/inherit/pmf/mpi/intel/13.1/mpich/3.0/p4est/1.0.lua b/rt/inherit/pmf/mpi/intel/13.1/mpich/3.0/p4est/1.0.lua deleted file mode 120000 index bf30ca3be..000000000 --- a/rt/inherit/pmf/mpi/intel/13.1/mpich/3.0/p4est/1.0.lua +++ /dev/null @@ -1 +0,0 @@ -../../../../../.base/p4est/1.0.lua \ No newline at end of file diff --git a/rt/inherit/pmf/mpi/intel/13.1/mpich/3.0/p4est/1.0.lua b/rt/inherit/pmf/mpi/intel/13.1/mpich/3.0/p4est/1.0.lua new file mode 100644 index 000000000..753f5a278 --- /dev/null +++ b/rt/inherit/pmf/mpi/intel/13.1/mpich/3.0/p4est/1.0.lua @@ -0,0 +1,6 @@ +local pkgRoot = "/work/12345/aterrel/opt/apps" +local hierA = hierarchyA(myModuleFullName(),2) +local compiler = hierA[1]:gsub("/","-"):gsub("%.","_") +local mpi = hierA[2]:gsub("/","-"):gsub("%.","_") +local base = pathJoin(pkgRoot,compiler,mpi,myModuleFullName()) +setenv("P4EST_DIR",base) diff --git a/rt/inherit/pmf/mpi/intel/13.1/openmpi/1.6/p4est/1.0.lua b/rt/inherit/pmf/mpi/intel/13.1/openmpi/1.6/p4est/1.0.lua deleted file mode 120000 index bf30ca3be..000000000 --- a/rt/inherit/pmf/mpi/intel/13.1/openmpi/1.6/p4est/1.0.lua +++ /dev/null @@ -1 +0,0 @@ -../../../../../.base/p4est/1.0.lua \ No newline at end of file diff --git a/rt/inherit/pmf/mpi/intel/13.1/openmpi/1.6/p4est/1.0.lua b/rt/inherit/pmf/mpi/intel/13.1/openmpi/1.6/p4est/1.0.lua new file mode 100644 index 000000000..753f5a278 --- /dev/null +++ b/rt/inherit/pmf/mpi/intel/13.1/openmpi/1.6/p4est/1.0.lua @@ -0,0 +1,6 @@ +local pkgRoot = "/work/12345/aterrel/opt/apps" +local hierA = hierarchyA(myModuleFullName(),2) +local compiler = hierA[1]:gsub("/","-"):gsub("%.","_") +local mpi = hierA[2]:gsub("/","-"):gsub("%.","_") +local base = pathJoin(pkgRoot,compiler,mpi,myModuleFullName()) +setenv("P4EST_DIR",base) diff --git a/rt/isloaded/mf/Compiler/intel/10.1/gotoblas/.version b/rt/isloaded/mf/Compiler/intel/10.1/gotoblas/.version deleted file mode 120000 index 9ec9ba9fc..000000000 --- a/rt/isloaded/mf/Compiler/intel/10.1/gotoblas/.version +++ /dev/null @@ -1 +0,0 @@ -.version-1.32 \ No newline at end of file diff --git a/rt/isloaded/mf/Compiler/intel/10.1/gotoblas/.version b/rt/isloaded/mf/Compiler/intel/10.1/gotoblas/.version new file mode 100644 index 000000000..9c66bd0cd --- /dev/null +++ b/rt/isloaded/mf/Compiler/intel/10.1/gotoblas/.version @@ -0,0 +1,7 @@ +#%Module3.1.6################################################# +## +## Version file for 1.32 of the gotoblas +## File default is copied to .version in modulefiles directory. +## + +set ModulesVersion "1.32" diff --git a/rt/isloaded/mf/Core/admin/default b/rt/isloaded/mf/Core/admin/default deleted file mode 120000 index 4a4a278b2..000000000 --- a/rt/isloaded/mf/Core/admin/default +++ /dev/null @@ -1 +0,0 @@ -admin-1.0.lua \ No newline at end of file diff --git a/rt/isloaded/mf/Core/admin/default b/rt/isloaded/mf/Core/admin/default new file mode 100644 index 000000000..9b91b10cf --- /dev/null +++ b/rt/isloaded/mf/Core/admin/default @@ -0,0 +1,3 @@ +-- -*- lua -*- +setenv("ADMIN_MODULE_LOADED","1") +prepend_path('PATH','/usr/sbin/://sbin///') diff --git a/rt/isloaded/mf/Core/bar/1.4-dbg.lua b/rt/isloaded/mf/Core/bar/1.4-dbg.lua deleted file mode 120000 index b7e9b4151..000000000 --- a/rt/isloaded/mf/Core/bar/1.4-dbg.lua +++ /dev/null @@ -1 +0,0 @@ -../.base/bar/1.4-dbg.lua \ No newline at end of file diff --git a/rt/isloaded/mf/Core/bar/1.4-dbg.lua b/rt/isloaded/mf/Core/bar/1.4-dbg.lua new file mode 100644 index 000000000..bb28a9aa8 --- /dev/null +++ b/rt/isloaded/mf/Core/bar/1.4-dbg.lua @@ -0,0 +1 @@ +prepend_path("PATH","/foo/bar/1.4-dbg/bin") diff --git a/rt/isloaded/mf/Core/bar/1.4.lua b/rt/isloaded/mf/Core/bar/1.4.lua deleted file mode 120000 index 75a47df49..000000000 --- a/rt/isloaded/mf/Core/bar/1.4.lua +++ /dev/null @@ -1 +0,0 @@ -../.base/bar/1.4.lua \ No newline at end of file diff --git a/rt/isloaded/mf/Core/bar/1.4.lua b/rt/isloaded/mf/Core/bar/1.4.lua new file mode 100644 index 000000000..e7edf9a20 --- /dev/null +++ b/rt/isloaded/mf/Core/bar/1.4.lua @@ -0,0 +1 @@ +prepend_path("PATH","/foo/bar/1.4/bin") diff --git a/rt/isloaded/mf/Core/baz/1.4-dbg.lua b/rt/isloaded/mf/Core/baz/1.4-dbg.lua deleted file mode 120000 index 39cf840a8..000000000 --- a/rt/isloaded/mf/Core/baz/1.4-dbg.lua +++ /dev/null @@ -1 +0,0 @@ -../.base/baz/1.4-dbg.lua \ No newline at end of file diff --git a/rt/isloaded/mf/Core/baz/1.4-dbg.lua b/rt/isloaded/mf/Core/baz/1.4-dbg.lua new file mode 100644 index 000000000..bb28a9aa8 --- /dev/null +++ b/rt/isloaded/mf/Core/baz/1.4-dbg.lua @@ -0,0 +1 @@ +prepend_path("PATH","/foo/bar/1.4-dbg/bin") diff --git a/rt/isloaded/mf/Core/baz/1.4.lua b/rt/isloaded/mf/Core/baz/1.4.lua deleted file mode 120000 index 4de16b2e5..000000000 --- a/rt/isloaded/mf/Core/baz/1.4.lua +++ /dev/null @@ -1 +0,0 @@ -../.base/baz/1.4.lua \ No newline at end of file diff --git a/rt/isloaded/mf/Core/baz/1.4.lua b/rt/isloaded/mf/Core/baz/1.4.lua new file mode 100644 index 000000000..e7edf9a20 --- /dev/null +++ b/rt/isloaded/mf/Core/baz/1.4.lua @@ -0,0 +1 @@ +prepend_path("PATH","/foo/bar/1.4/bin") diff --git a/rt/isloaded/mf/Core/baz/default b/rt/isloaded/mf/Core/baz/default deleted file mode 120000 index 7f6ad29b8..000000000 --- a/rt/isloaded/mf/Core/baz/default +++ /dev/null @@ -1 +0,0 @@ -1.4.lua \ No newline at end of file diff --git a/rt/isloaded/mf/Core/baz/default b/rt/isloaded/mf/Core/baz/default new file mode 100644 index 000000000..e7edf9a20 --- /dev/null +++ b/rt/isloaded/mf/Core/baz/default @@ -0,0 +1 @@ +prepend_path("PATH","/foo/bar/1.4/bin") diff --git a/rt/isloaded/mf/Core/foo/default b/rt/isloaded/mf/Core/foo/default deleted file mode 120000 index 7f6ad29b8..000000000 --- a/rt/isloaded/mf/Core/foo/default +++ /dev/null @@ -1 +0,0 @@ -1.4.lua \ No newline at end of file diff --git a/rt/isloaded/mf/Core/foo/default b/rt/isloaded/mf/Core/foo/default new file mode 100644 index 000000000..e7edf9a20 --- /dev/null +++ b/rt/isloaded/mf/Core/foo/default @@ -0,0 +1 @@ +prepend_path("PATH","/foo/bar/1.4/bin") diff --git a/rt/isloaded/mf/Core/gotoblas/default b/rt/isloaded/mf/Core/gotoblas/default deleted file mode 120000 index 1c8cd10a3..000000000 --- a/rt/isloaded/mf/Core/gotoblas/default +++ /dev/null @@ -1 +0,0 @@ -1.26.lua \ No newline at end of file diff --git a/rt/isloaded/mf/Core/gotoblas/default b/rt/isloaded/mf/Core/gotoblas/default new file mode 100644 index 000000000..c0005392d --- /dev/null +++ b/rt/isloaded/mf/Core/gotoblas/default @@ -0,0 +1,17 @@ +local version = "1.26" +whatis("Name: Gotoblas") +whatis("Version: " .. version) +whatis("Category: library, mathematics") +whatis("Description: Blas Level 1, 2, 3 routines") +whatis("URL: http://www.tacc.utexas.edu") + +local pkgRoot = "/vol/pkg" + +local pkgName = pathJoin("gotoblas",version) +local base = pathJoin(pkgRoot, pkgName) +setenv("TACC_GOTOBLAS_DIR",base) +setenv("TACC_GOTOBLAS_LIB",base) + +if (os.getenv("LMOD_sys") ~= "Darwin") then + prepend_path("LD_LIBRARY_PATH",base) +end diff --git a/rt/isloaded/mf/Core/ucc/default b/rt/isloaded/mf/Core/ucc/default deleted file mode 120000 index 6b5f70449..000000000 --- a/rt/isloaded/mf/Core/ucc/default +++ /dev/null @@ -1 +0,0 @@ -13.1.2.lua \ No newline at end of file diff --git a/rt/isloaded/mf/Core/ucc/default b/rt/isloaded/mf/Core/ucc/default new file mode 100644 index 000000000..09b4c2c51 --- /dev/null +++ b/rt/isloaded/mf/Core/ucc/default @@ -0,0 +1 @@ +setenv("MY_VERSION",myModuleVersion()) diff --git a/rt/itac/mf/Compiler/intel/15.0/mv2/2.0.lua b/rt/itac/mf/Compiler/intel/15.0/mv2/2.0.lua deleted file mode 120000 index f7cbd0add..000000000 --- a/rt/itac/mf/Compiler/intel/15.0/mv2/2.0.lua +++ /dev/null @@ -1 +0,0 @@ -../../../.base/mv2/2.0.lua \ No newline at end of file diff --git a/rt/itac/mf/Compiler/intel/15.0/mv2/2.0.lua b/rt/itac/mf/Compiler/intel/15.0/mv2/2.0.lua new file mode 100644 index 000000000..39a737459 --- /dev/null +++ b/rt/itac/mf/Compiler/intel/15.0/mv2/2.0.lua @@ -0,0 +1,12 @@ +local name = myModuleName() +local fullVersion = myModuleVersion() +local pkgName = pathJoin(name, fullVersion) +local hierA = hierarchyA(pkgName,1) +local compiler_dir = hierA[1] +local pkgVersion = fullVersion:match('(%d+%.%d+)%.?') + +local mroot = os.getenv("MODULEPATH_ROOT") + +prepend_path("MODULEPATH", pathJoin(mroot, "MPI", compiler_dir, name, pkgVersion)) + +family("MPI") diff --git a/rt/itac/mf/MPI/intel/15.0/mv2/2.0/pmetis/5.1.lua b/rt/itac/mf/MPI/intel/15.0/mv2/2.0/pmetis/5.1.lua deleted file mode 120000 index d18e3bedc..000000000 --- a/rt/itac/mf/MPI/intel/15.0/mv2/2.0/pmetis/5.1.lua +++ /dev/null @@ -1 +0,0 @@ -../../../../../.base/pmetis/5.1.lua \ No newline at end of file diff --git a/rt/itac/mf/MPI/intel/15.0/mv2/2.0/pmetis/5.1.lua b/rt/itac/mf/MPI/intel/15.0/mv2/2.0/pmetis/5.1.lua new file mode 100644 index 000000000..17c8130c9 --- /dev/null +++ b/rt/itac/mf/MPI/intel/15.0/mv2/2.0/pmetis/5.1.lua @@ -0,0 +1 @@ +setenv("ParMetis_Version",myModuleVersion()) diff --git a/rt/junk/mf/Compiler/intel/10.1/gotoblas/.version b/rt/junk/mf/Compiler/intel/10.1/gotoblas/.version deleted file mode 120000 index 9ec9ba9fc..000000000 --- a/rt/junk/mf/Compiler/intel/10.1/gotoblas/.version +++ /dev/null @@ -1 +0,0 @@ -.version-1.32 \ No newline at end of file diff --git a/rt/junk/mf/Compiler/intel/10.1/gotoblas/.version b/rt/junk/mf/Compiler/intel/10.1/gotoblas/.version new file mode 100644 index 000000000..9c66bd0cd --- /dev/null +++ b/rt/junk/mf/Compiler/intel/10.1/gotoblas/.version @@ -0,0 +1,7 @@ +#%Module3.1.6################################################# +## +## Version file for 1.32 of the gotoblas +## File default is copied to .version in modulefiles directory. +## + +set ModulesVersion "1.32" diff --git a/rt/junk/mf/Core/admin/default b/rt/junk/mf/Core/admin/default deleted file mode 120000 index 4a4a278b2..000000000 --- a/rt/junk/mf/Core/admin/default +++ /dev/null @@ -1 +0,0 @@ -admin-1.0.lua \ No newline at end of file diff --git a/rt/junk/mf/Core/admin/default b/rt/junk/mf/Core/admin/default new file mode 100644 index 000000000..9b91b10cf --- /dev/null +++ b/rt/junk/mf/Core/admin/default @@ -0,0 +1,3 @@ +-- -*- lua -*- +setenv("ADMIN_MODULE_LOADED","1") +prepend_path('PATH','/usr/sbin/://sbin///') diff --git a/rt/junk/mf/Core/bar/1.4-dbg.lua b/rt/junk/mf/Core/bar/1.4-dbg.lua deleted file mode 120000 index b7e9b4151..000000000 --- a/rt/junk/mf/Core/bar/1.4-dbg.lua +++ /dev/null @@ -1 +0,0 @@ -../.base/bar/1.4-dbg.lua \ No newline at end of file diff --git a/rt/junk/mf/Core/bar/1.4-dbg.lua b/rt/junk/mf/Core/bar/1.4-dbg.lua new file mode 100644 index 000000000..bb28a9aa8 --- /dev/null +++ b/rt/junk/mf/Core/bar/1.4-dbg.lua @@ -0,0 +1 @@ +prepend_path("PATH","/foo/bar/1.4-dbg/bin") diff --git a/rt/junk/mf/Core/bar/1.4.lua b/rt/junk/mf/Core/bar/1.4.lua deleted file mode 120000 index 75a47df49..000000000 --- a/rt/junk/mf/Core/bar/1.4.lua +++ /dev/null @@ -1 +0,0 @@ -../.base/bar/1.4.lua \ No newline at end of file diff --git a/rt/junk/mf/Core/bar/1.4.lua b/rt/junk/mf/Core/bar/1.4.lua new file mode 100644 index 000000000..e7edf9a20 --- /dev/null +++ b/rt/junk/mf/Core/bar/1.4.lua @@ -0,0 +1 @@ +prepend_path("PATH","/foo/bar/1.4/bin") diff --git a/rt/junk/mf/Core/baz/1.4-dbg.lua b/rt/junk/mf/Core/baz/1.4-dbg.lua deleted file mode 120000 index 39cf840a8..000000000 --- a/rt/junk/mf/Core/baz/1.4-dbg.lua +++ /dev/null @@ -1 +0,0 @@ -../.base/baz/1.4-dbg.lua \ No newline at end of file diff --git a/rt/junk/mf/Core/baz/1.4-dbg.lua b/rt/junk/mf/Core/baz/1.4-dbg.lua new file mode 100644 index 000000000..bb28a9aa8 --- /dev/null +++ b/rt/junk/mf/Core/baz/1.4-dbg.lua @@ -0,0 +1 @@ +prepend_path("PATH","/foo/bar/1.4-dbg/bin") diff --git a/rt/junk/mf/Core/baz/1.4.lua b/rt/junk/mf/Core/baz/1.4.lua deleted file mode 120000 index 4de16b2e5..000000000 --- a/rt/junk/mf/Core/baz/1.4.lua +++ /dev/null @@ -1 +0,0 @@ -../.base/baz/1.4.lua \ No newline at end of file diff --git a/rt/junk/mf/Core/baz/1.4.lua b/rt/junk/mf/Core/baz/1.4.lua new file mode 100644 index 000000000..e7edf9a20 --- /dev/null +++ b/rt/junk/mf/Core/baz/1.4.lua @@ -0,0 +1 @@ +prepend_path("PATH","/foo/bar/1.4/bin") diff --git a/rt/junk/mf/Core/baz/default b/rt/junk/mf/Core/baz/default deleted file mode 120000 index 7f6ad29b8..000000000 --- a/rt/junk/mf/Core/baz/default +++ /dev/null @@ -1 +0,0 @@ -1.4.lua \ No newline at end of file diff --git a/rt/junk/mf/Core/baz/default b/rt/junk/mf/Core/baz/default new file mode 100644 index 000000000..e7edf9a20 --- /dev/null +++ b/rt/junk/mf/Core/baz/default @@ -0,0 +1 @@ +prepend_path("PATH","/foo/bar/1.4/bin") diff --git a/rt/junk/mf/Core/foo/default b/rt/junk/mf/Core/foo/default deleted file mode 120000 index 7f6ad29b8..000000000 --- a/rt/junk/mf/Core/foo/default +++ /dev/null @@ -1 +0,0 @@ -1.4.lua \ No newline at end of file diff --git a/rt/junk/mf/Core/foo/default b/rt/junk/mf/Core/foo/default new file mode 100644 index 000000000..e7edf9a20 --- /dev/null +++ b/rt/junk/mf/Core/foo/default @@ -0,0 +1 @@ +prepend_path("PATH","/foo/bar/1.4/bin") diff --git a/rt/junk/mf/Core/gotoblas/default b/rt/junk/mf/Core/gotoblas/default deleted file mode 120000 index 1c8cd10a3..000000000 --- a/rt/junk/mf/Core/gotoblas/default +++ /dev/null @@ -1 +0,0 @@ -1.26.lua \ No newline at end of file diff --git a/rt/junk/mf/Core/gotoblas/default b/rt/junk/mf/Core/gotoblas/default new file mode 100644 index 000000000..c0005392d --- /dev/null +++ b/rt/junk/mf/Core/gotoblas/default @@ -0,0 +1,17 @@ +local version = "1.26" +whatis("Name: Gotoblas") +whatis("Version: " .. version) +whatis("Category: library, mathematics") +whatis("Description: Blas Level 1, 2, 3 routines") +whatis("URL: http://www.tacc.utexas.edu") + +local pkgRoot = "/vol/pkg" + +local pkgName = pathJoin("gotoblas",version) +local base = pathJoin(pkgRoot, pkgName) +setenv("TACC_GOTOBLAS_DIR",base) +setenv("TACC_GOTOBLAS_LIB",base) + +if (os.getenv("LMOD_sys") ~= "Darwin") then + prepend_path("LD_LIBRARY_PATH",base) +end diff --git a/rt/junk/mf/Core/ucc/default b/rt/junk/mf/Core/ucc/default deleted file mode 120000 index 6b5f70449..000000000 --- a/rt/junk/mf/Core/ucc/default +++ /dev/null @@ -1 +0,0 @@ -13.1.2.lua \ No newline at end of file diff --git a/rt/junk/mf/Core/ucc/default b/rt/junk/mf/Core/ucc/default new file mode 100644 index 000000000..09b4c2c51 --- /dev/null +++ b/rt/junk/mf/Core/ucc/default @@ -0,0 +1 @@ +setenv("MY_VERSION",myModuleVersion()) diff --git a/rt/keyword/mf/Compiler/intel/10.1/gotoblas/.version b/rt/keyword/mf/Compiler/intel/10.1/gotoblas/.version deleted file mode 120000 index 9ec9ba9fc..000000000 --- a/rt/keyword/mf/Compiler/intel/10.1/gotoblas/.version +++ /dev/null @@ -1 +0,0 @@ -.version-1.32 \ No newline at end of file diff --git a/rt/keyword/mf/Compiler/intel/10.1/gotoblas/.version b/rt/keyword/mf/Compiler/intel/10.1/gotoblas/.version new file mode 100644 index 000000000..9c66bd0cd --- /dev/null +++ b/rt/keyword/mf/Compiler/intel/10.1/gotoblas/.version @@ -0,0 +1,7 @@ +#%Module3.1.6################################################# +## +## Version file for 1.32 of the gotoblas +## File default is copied to .version in modulefiles directory. +## + +set ModulesVersion "1.32" diff --git a/rt/keyword/mf/Core/admin/default b/rt/keyword/mf/Core/admin/default deleted file mode 120000 index 4a4a278b2..000000000 --- a/rt/keyword/mf/Core/admin/default +++ /dev/null @@ -1 +0,0 @@ -admin-1.0.lua \ No newline at end of file diff --git a/rt/keyword/mf/Core/admin/default b/rt/keyword/mf/Core/admin/default new file mode 100644 index 000000000..9b91b10cf --- /dev/null +++ b/rt/keyword/mf/Core/admin/default @@ -0,0 +1,3 @@ +-- -*- lua -*- +setenv("ADMIN_MODULE_LOADED","1") +prepend_path('PATH','/usr/sbin/://sbin///') diff --git a/rt/keyword/mf/Core/bar/1.4-dbg.lua b/rt/keyword/mf/Core/bar/1.4-dbg.lua deleted file mode 120000 index b7e9b4151..000000000 --- a/rt/keyword/mf/Core/bar/1.4-dbg.lua +++ /dev/null @@ -1 +0,0 @@ -../.base/bar/1.4-dbg.lua \ No newline at end of file diff --git a/rt/keyword/mf/Core/bar/1.4-dbg.lua b/rt/keyword/mf/Core/bar/1.4-dbg.lua new file mode 100644 index 000000000..bb28a9aa8 --- /dev/null +++ b/rt/keyword/mf/Core/bar/1.4-dbg.lua @@ -0,0 +1 @@ +prepend_path("PATH","/foo/bar/1.4-dbg/bin") diff --git a/rt/keyword/mf/Core/bar/1.4.lua b/rt/keyword/mf/Core/bar/1.4.lua deleted file mode 120000 index 75a47df49..000000000 --- a/rt/keyword/mf/Core/bar/1.4.lua +++ /dev/null @@ -1 +0,0 @@ -../.base/bar/1.4.lua \ No newline at end of file diff --git a/rt/keyword/mf/Core/bar/1.4.lua b/rt/keyword/mf/Core/bar/1.4.lua new file mode 100644 index 000000000..e7edf9a20 --- /dev/null +++ b/rt/keyword/mf/Core/bar/1.4.lua @@ -0,0 +1 @@ +prepend_path("PATH","/foo/bar/1.4/bin") diff --git a/rt/keyword/mf/Core/baz/1.4-dbg.lua b/rt/keyword/mf/Core/baz/1.4-dbg.lua deleted file mode 120000 index 39cf840a8..000000000 --- a/rt/keyword/mf/Core/baz/1.4-dbg.lua +++ /dev/null @@ -1 +0,0 @@ -../.base/baz/1.4-dbg.lua \ No newline at end of file diff --git a/rt/keyword/mf/Core/baz/1.4-dbg.lua b/rt/keyword/mf/Core/baz/1.4-dbg.lua new file mode 100644 index 000000000..bb28a9aa8 --- /dev/null +++ b/rt/keyword/mf/Core/baz/1.4-dbg.lua @@ -0,0 +1 @@ +prepend_path("PATH","/foo/bar/1.4-dbg/bin") diff --git a/rt/keyword/mf/Core/baz/1.4.lua b/rt/keyword/mf/Core/baz/1.4.lua deleted file mode 120000 index 4de16b2e5..000000000 --- a/rt/keyword/mf/Core/baz/1.4.lua +++ /dev/null @@ -1 +0,0 @@ -../.base/baz/1.4.lua \ No newline at end of file diff --git a/rt/keyword/mf/Core/baz/1.4.lua b/rt/keyword/mf/Core/baz/1.4.lua new file mode 100644 index 000000000..e7edf9a20 --- /dev/null +++ b/rt/keyword/mf/Core/baz/1.4.lua @@ -0,0 +1 @@ +prepend_path("PATH","/foo/bar/1.4/bin") diff --git a/rt/keyword/mf/Core/baz/default b/rt/keyword/mf/Core/baz/default deleted file mode 120000 index 7f6ad29b8..000000000 --- a/rt/keyword/mf/Core/baz/default +++ /dev/null @@ -1 +0,0 @@ -1.4.lua \ No newline at end of file diff --git a/rt/keyword/mf/Core/baz/default b/rt/keyword/mf/Core/baz/default new file mode 100644 index 000000000..e7edf9a20 --- /dev/null +++ b/rt/keyword/mf/Core/baz/default @@ -0,0 +1 @@ +prepend_path("PATH","/foo/bar/1.4/bin") diff --git a/rt/keyword/mf/Core/foo/default b/rt/keyword/mf/Core/foo/default deleted file mode 120000 index 7f6ad29b8..000000000 --- a/rt/keyword/mf/Core/foo/default +++ /dev/null @@ -1 +0,0 @@ -1.4.lua \ No newline at end of file diff --git a/rt/keyword/mf/Core/foo/default b/rt/keyword/mf/Core/foo/default new file mode 100644 index 000000000..e7edf9a20 --- /dev/null +++ b/rt/keyword/mf/Core/foo/default @@ -0,0 +1 @@ +prepend_path("PATH","/foo/bar/1.4/bin") diff --git a/rt/keyword/mf/Core/gotoblas/default b/rt/keyword/mf/Core/gotoblas/default deleted file mode 120000 index 1c8cd10a3..000000000 --- a/rt/keyword/mf/Core/gotoblas/default +++ /dev/null @@ -1 +0,0 @@ -1.26.lua \ No newline at end of file diff --git a/rt/keyword/mf/Core/gotoblas/default b/rt/keyword/mf/Core/gotoblas/default new file mode 100644 index 000000000..c0005392d --- /dev/null +++ b/rt/keyword/mf/Core/gotoblas/default @@ -0,0 +1,17 @@ +local version = "1.26" +whatis("Name: Gotoblas") +whatis("Version: " .. version) +whatis("Category: library, mathematics") +whatis("Description: Blas Level 1, 2, 3 routines") +whatis("URL: http://www.tacc.utexas.edu") + +local pkgRoot = "/vol/pkg" + +local pkgName = pathJoin("gotoblas",version) +local base = pathJoin(pkgRoot, pkgName) +setenv("TACC_GOTOBLAS_DIR",base) +setenv("TACC_GOTOBLAS_LIB",base) + +if (os.getenv("LMOD_sys") ~= "Darwin") then + prepend_path("LD_LIBRARY_PATH",base) +end diff --git a/rt/keyword/mf/Core/ucc/default b/rt/keyword/mf/Core/ucc/default deleted file mode 120000 index 6b5f70449..000000000 --- a/rt/keyword/mf/Core/ucc/default +++ /dev/null @@ -1 +0,0 @@ -13.1.2.lua \ No newline at end of file diff --git a/rt/keyword/mf/Core/ucc/default b/rt/keyword/mf/Core/ucc/default new file mode 100644 index 000000000..09b4c2c51 --- /dev/null +++ b/rt/keyword/mf/Core/ucc/default @@ -0,0 +1 @@ +setenv("MY_VERSION",myModuleVersion()) diff --git a/rt/lnk_same_dir/mf/a/3.1 b/rt/lnk_same_dir/mf/a/3.1 deleted file mode 120000 index c434e7aef..000000000 --- a/rt/lnk_same_dir/mf/a/3.1 +++ /dev/null @@ -1 +0,0 @@ -.template \ No newline at end of file diff --git a/rt/lnk_same_dir/mf/a/3.1 b/rt/lnk_same_dir/mf/a/3.1 new file mode 100644 index 000000000..c94db3964 --- /dev/null +++ b/rt/lnk_same_dir/mf/a/3.1 @@ -0,0 +1,9 @@ +#%Module1.0 + +# for Tcl script use only +set name [lindex [split [ module-info name ] / ] 0 ] +set version [lindex [split [ module-info name ] / ] 1 ] +set root $env(HOME)/local/$name/$version + +prepend-path PATH $root/bin +prepend-path MANPATH $root/man diff --git a/rt/lnk_same_dir/mf/a/3.2 b/rt/lnk_same_dir/mf/a/3.2 deleted file mode 120000 index c434e7aef..000000000 --- a/rt/lnk_same_dir/mf/a/3.2 +++ /dev/null @@ -1 +0,0 @@ -.template \ No newline at end of file diff --git a/rt/lnk_same_dir/mf/a/3.2 b/rt/lnk_same_dir/mf/a/3.2 new file mode 100644 index 000000000..c94db3964 --- /dev/null +++ b/rt/lnk_same_dir/mf/a/3.2 @@ -0,0 +1,9 @@ +#%Module1.0 + +# for Tcl script use only +set name [lindex [split [ module-info name ] / ] 0 ] +set version [lindex [split [ module-info name ] / ] 1 ] +set root $env(HOME)/local/$name/$version + +prepend-path PATH $root/bin +prepend-path MANPATH $root/man diff --git a/rt/lnk_same_dir/mf/a/3.3 b/rt/lnk_same_dir/mf/a/3.3 deleted file mode 120000 index c434e7aef..000000000 --- a/rt/lnk_same_dir/mf/a/3.3 +++ /dev/null @@ -1 +0,0 @@ -.template \ No newline at end of file diff --git a/rt/lnk_same_dir/mf/a/3.3 b/rt/lnk_same_dir/mf/a/3.3 new file mode 100644 index 000000000..c94db3964 --- /dev/null +++ b/rt/lnk_same_dir/mf/a/3.3 @@ -0,0 +1,9 @@ +#%Module1.0 + +# for Tcl script use only +set name [lindex [split [ module-info name ] / ] 0 ] +set version [lindex [split [ module-info name ] / ] 1 ] +set root $env(HOME)/local/$name/$version + +prepend-path PATH $root/bin +prepend-path MANPATH $root/man diff --git a/rt/lnk_same_dir/mf/a/default b/rt/lnk_same_dir/mf/a/default deleted file mode 120000 index 4fe56315a..000000000 --- a/rt/lnk_same_dir/mf/a/default +++ /dev/null @@ -1 +0,0 @@ -3.2 \ No newline at end of file diff --git a/rt/lnk_same_dir/mf/a/default b/rt/lnk_same_dir/mf/a/default new file mode 100644 index 000000000..c94db3964 --- /dev/null +++ b/rt/lnk_same_dir/mf/a/default @@ -0,0 +1,9 @@ +#%Module1.0 + +# for Tcl script use only +set name [lindex [split [ module-info name ] / ] 0 ] +set version [lindex [split [ module-info name ] / ] 1 ] +set root $env(HOME)/local/$name/$version + +prepend-path PATH $root/bin +prepend-path MANPATH $root/man diff --git a/rt/lnk_same_dir/mf/b/.version b/rt/lnk_same_dir/mf/b/.version deleted file mode 120000 index d98ddecfa..000000000 --- a/rt/lnk_same_dir/mf/b/.version +++ /dev/null @@ -1 +0,0 @@ -.version-2.3 \ No newline at end of file diff --git a/rt/lnk_same_dir/mf/b/.version b/rt/lnk_same_dir/mf/b/.version new file mode 100644 index 000000000..87dcd78a6 --- /dev/null +++ b/rt/lnk_same_dir/mf/b/.version @@ -0,0 +1,7 @@ +#%Module3.1.6################################################# +## +## Version file for 7.1 intel compiler. +## File default is copied to .version in modulefiles directory. +## + +set ModulesVersion "2.3" diff --git a/rt/lnk_same_dir/mf/b/2.1 b/rt/lnk_same_dir/mf/b/2.1 deleted file mode 120000 index c434e7aef..000000000 --- a/rt/lnk_same_dir/mf/b/2.1 +++ /dev/null @@ -1 +0,0 @@ -.template \ No newline at end of file diff --git a/rt/lnk_same_dir/mf/b/2.1 b/rt/lnk_same_dir/mf/b/2.1 new file mode 100644 index 000000000..c94db3964 --- /dev/null +++ b/rt/lnk_same_dir/mf/b/2.1 @@ -0,0 +1,9 @@ +#%Module1.0 + +# for Tcl script use only +set name [lindex [split [ module-info name ] / ] 0 ] +set version [lindex [split [ module-info name ] / ] 1 ] +set root $env(HOME)/local/$name/$version + +prepend-path PATH $root/bin +prepend-path MANPATH $root/man diff --git a/rt/lnk_same_dir/mf/b/2.3 b/rt/lnk_same_dir/mf/b/2.3 deleted file mode 120000 index c434e7aef..000000000 --- a/rt/lnk_same_dir/mf/b/2.3 +++ /dev/null @@ -1 +0,0 @@ -.template \ No newline at end of file diff --git a/rt/lnk_same_dir/mf/b/2.3 b/rt/lnk_same_dir/mf/b/2.3 new file mode 100644 index 000000000..c94db3964 --- /dev/null +++ b/rt/lnk_same_dir/mf/b/2.3 @@ -0,0 +1,9 @@ +#%Module1.0 + +# for Tcl script use only +set name [lindex [split [ module-info name ] / ] 0 ] +set version [lindex [split [ module-info name ] / ] 1 ] +set root $env(HOME)/local/$name/$version + +prepend-path PATH $root/bin +prepend-path MANPATH $root/man diff --git a/rt/lnk_same_dir/mf/b/2.5 b/rt/lnk_same_dir/mf/b/2.5 deleted file mode 120000 index c434e7aef..000000000 --- a/rt/lnk_same_dir/mf/b/2.5 +++ /dev/null @@ -1 +0,0 @@ -.template \ No newline at end of file diff --git a/rt/lnk_same_dir/mf/b/2.5 b/rt/lnk_same_dir/mf/b/2.5 new file mode 100644 index 000000000..c94db3964 --- /dev/null +++ b/rt/lnk_same_dir/mf/b/2.5 @@ -0,0 +1,9 @@ +#%Module1.0 + +# for Tcl script use only +set name [lindex [split [ module-info name ] / ] 0 ] +set version [lindex [split [ module-info name ] / ] 1 ] +set root $env(HOME)/local/$name/$version + +prepend-path PATH $root/bin +prepend-path MANPATH $root/man diff --git a/rt/lnk_same_dir/mf/c/5.2 b/rt/lnk_same_dir/mf/c/5.2 deleted file mode 120000 index c434e7aef..000000000 --- a/rt/lnk_same_dir/mf/c/5.2 +++ /dev/null @@ -1 +0,0 @@ -.template \ No newline at end of file diff --git a/rt/lnk_same_dir/mf/c/5.2 b/rt/lnk_same_dir/mf/c/5.2 new file mode 100644 index 000000000..c94db3964 --- /dev/null +++ b/rt/lnk_same_dir/mf/c/5.2 @@ -0,0 +1,9 @@ +#%Module1.0 + +# for Tcl script use only +set name [lindex [split [ module-info name ] / ] 0 ] +set version [lindex [split [ module-info name ] / ] 1 ] +set root $env(HOME)/local/$name/$version + +prepend-path PATH $root/bin +prepend-path MANPATH $root/man diff --git a/rt/lnk_same_dir/mf/c/6.2 b/rt/lnk_same_dir/mf/c/6.2 deleted file mode 120000 index c434e7aef..000000000 --- a/rt/lnk_same_dir/mf/c/6.2 +++ /dev/null @@ -1 +0,0 @@ -.template \ No newline at end of file diff --git a/rt/lnk_same_dir/mf/c/6.2 b/rt/lnk_same_dir/mf/c/6.2 new file mode 100644 index 000000000..c94db3964 --- /dev/null +++ b/rt/lnk_same_dir/mf/c/6.2 @@ -0,0 +1,9 @@ +#%Module1.0 + +# for Tcl script use only +set name [lindex [split [ module-info name ] / ] 0 ] +set version [lindex [split [ module-info name ] / ] 1 ] +set root $env(HOME)/local/$name/$version + +prepend-path PATH $root/bin +prepend-path MANPATH $root/man diff --git a/rt/lnk_same_dir/mf/c/7.2 b/rt/lnk_same_dir/mf/c/7.2 deleted file mode 120000 index c434e7aef..000000000 --- a/rt/lnk_same_dir/mf/c/7.2 +++ /dev/null @@ -1 +0,0 @@ -.template \ No newline at end of file diff --git a/rt/lnk_same_dir/mf/c/7.2 b/rt/lnk_same_dir/mf/c/7.2 new file mode 100644 index 000000000..c94db3964 --- /dev/null +++ b/rt/lnk_same_dir/mf/c/7.2 @@ -0,0 +1,9 @@ +#%Module1.0 + +# for Tcl script use only +set name [lindex [split [ module-info name ] / ] 0 ] +set version [lindex [split [ module-info name ] / ] 1 ] +set root $env(HOME)/local/$name/$version + +prepend-path PATH $root/bin +prepend-path MANPATH $root/man diff --git a/rt/lnk_same_dir/mf/c/8.2 b/rt/lnk_same_dir/mf/c/8.2 deleted file mode 120000 index c434e7aef..000000000 --- a/rt/lnk_same_dir/mf/c/8.2 +++ /dev/null @@ -1 +0,0 @@ -.template \ No newline at end of file diff --git a/rt/lnk_same_dir/mf/c/8.2 b/rt/lnk_same_dir/mf/c/8.2 new file mode 100644 index 000000000..c94db3964 --- /dev/null +++ b/rt/lnk_same_dir/mf/c/8.2 @@ -0,0 +1,9 @@ +#%Module1.0 + +# for Tcl script use only +set name [lindex [split [ module-info name ] / ] 0 ] +set version [lindex [split [ module-info name ] / ] 1 ] +set root $env(HOME)/local/$name/$version + +prepend-path PATH $root/bin +prepend-path MANPATH $root/man diff --git a/rt/lnk_same_dir/mf/git/1.8.2 b/rt/lnk_same_dir/mf/git/1.8.2 deleted file mode 120000 index c434e7aef..000000000 --- a/rt/lnk_same_dir/mf/git/1.8.2 +++ /dev/null @@ -1 +0,0 @@ -.template \ No newline at end of file diff --git a/rt/lnk_same_dir/mf/git/1.8.2 b/rt/lnk_same_dir/mf/git/1.8.2 new file mode 100644 index 000000000..c94db3964 --- /dev/null +++ b/rt/lnk_same_dir/mf/git/1.8.2 @@ -0,0 +1,9 @@ +#%Module1.0 + +# for Tcl script use only +set name [lindex [split [ module-info name ] / ] 0 ] +set version [lindex [split [ module-info name ] / ] 1 ] +set root $env(HOME)/local/$name/$version + +prepend-path PATH $root/bin +prepend-path MANPATH $root/man diff --git a/rt/lnk_same_dir/mf/git/1.8.4 b/rt/lnk_same_dir/mf/git/1.8.4 deleted file mode 120000 index c434e7aef..000000000 --- a/rt/lnk_same_dir/mf/git/1.8.4 +++ /dev/null @@ -1 +0,0 @@ -.template \ No newline at end of file diff --git a/rt/lnk_same_dir/mf/git/1.8.4 b/rt/lnk_same_dir/mf/git/1.8.4 new file mode 100644 index 000000000..c94db3964 --- /dev/null +++ b/rt/lnk_same_dir/mf/git/1.8.4 @@ -0,0 +1,9 @@ +#%Module1.0 + +# for Tcl script use only +set name [lindex [split [ module-info name ] / ] 0 ] +set version [lindex [split [ module-info name ] / ] 1 ] +set root $env(HOME)/local/$name/$version + +prepend-path PATH $root/bin +prepend-path MANPATH $root/man diff --git a/rt/lnk_same_dir/mf/git/1.8.5 b/rt/lnk_same_dir/mf/git/1.8.5 deleted file mode 120000 index c434e7aef..000000000 --- a/rt/lnk_same_dir/mf/git/1.8.5 +++ /dev/null @@ -1 +0,0 @@ -.template \ No newline at end of file diff --git a/rt/lnk_same_dir/mf/git/1.8.5 b/rt/lnk_same_dir/mf/git/1.8.5 new file mode 100644 index 000000000..c94db3964 --- /dev/null +++ b/rt/lnk_same_dir/mf/git/1.8.5 @@ -0,0 +1,9 @@ +#%Module1.0 + +# for Tcl script use only +set name [lindex [split [ module-info name ] / ] 0 ] +set version [lindex [split [ module-info name ] / ] 1 ] +set root $env(HOME)/local/$name/$version + +prepend-path PATH $root/bin +prepend-path MANPATH $root/man diff --git a/rt/load/mf/Compiler/intel/10.1/gotoblas/.version b/rt/load/mf/Compiler/intel/10.1/gotoblas/.version deleted file mode 120000 index 9ec9ba9fc..000000000 --- a/rt/load/mf/Compiler/intel/10.1/gotoblas/.version +++ /dev/null @@ -1 +0,0 @@ -.version-1.32 \ No newline at end of file diff --git a/rt/load/mf/Compiler/intel/10.1/gotoblas/.version b/rt/load/mf/Compiler/intel/10.1/gotoblas/.version new file mode 100644 index 000000000..9c66bd0cd --- /dev/null +++ b/rt/load/mf/Compiler/intel/10.1/gotoblas/.version @@ -0,0 +1,7 @@ +#%Module3.1.6################################################# +## +## Version file for 1.32 of the gotoblas +## File default is copied to .version in modulefiles directory. +## + +set ModulesVersion "1.32" diff --git a/rt/load/mf/Core/admin/default b/rt/load/mf/Core/admin/default deleted file mode 120000 index 4a4a278b2..000000000 --- a/rt/load/mf/Core/admin/default +++ /dev/null @@ -1 +0,0 @@ -admin-1.0.lua \ No newline at end of file diff --git a/rt/load/mf/Core/admin/default b/rt/load/mf/Core/admin/default new file mode 100644 index 000000000..9b91b10cf --- /dev/null +++ b/rt/load/mf/Core/admin/default @@ -0,0 +1,3 @@ +-- -*- lua -*- +setenv("ADMIN_MODULE_LOADED","1") +prepend_path('PATH','/usr/sbin/://sbin///') diff --git a/rt/load/mf/Core/boost b/rt/load/mf/Core/boost deleted file mode 120000 index 3b732ee21..000000000 --- a/rt/load/mf/Core/boost +++ /dev/null @@ -1 +0,0 @@ -../boost \ No newline at end of file diff --git a/rt/load/mf/Core/boost/1.46.0.lua b/rt/load/mf/Core/boost/1.46.0.lua new file mode 100644 index 000000000..ce968cd68 --- /dev/null +++ b/rt/load/mf/Core/boost/1.46.0.lua @@ -0,0 +1,7 @@ +local name = "boost" +local fn = myFileName():gsub(".lua","") +local version = barefilename(fn) +local pkgName = pathJoin(name,version) +local pkgRoot = "/unknown/apps" +local base = pathJoin(pkgRoot, pkgName) +setenv( "TACC_BOOST_DIR", base) diff --git a/rt/load/mf/Core/boost/1.47.1.lua b/rt/load/mf/Core/boost/1.47.1.lua new file mode 100644 index 000000000..ce968cd68 --- /dev/null +++ b/rt/load/mf/Core/boost/1.47.1.lua @@ -0,0 +1,7 @@ +local name = "boost" +local fn = myFileName():gsub(".lua","") +local version = barefilename(fn) +local pkgName = pathJoin(name,version) +local pkgRoot = "/unknown/apps" +local base = pathJoin(pkgRoot, pkgName) +setenv( "TACC_BOOST_DIR", base) diff --git a/rt/load/mf/Core/boost/1.49.0.lua b/rt/load/mf/Core/boost/1.49.0.lua new file mode 100644 index 000000000..c4abffdd1 --- /dev/null +++ b/rt/load/mf/Core/boost/1.49.0.lua @@ -0,0 +1,8 @@ +local name = "boost" +local fn = myFileName():gsub(".lua","") +local version = barefilename(fn) +local pkgName = pathJoin(name,version) +local pkgRoot = "/unknown/apps" +local base = pathJoin(pkgRoot, pkgName) +setenv( "TACC_BOOST_DIR", base) +add_property("arch","offload") diff --git a/rt/load/mf/Core/gotoblas/default b/rt/load/mf/Core/gotoblas/default deleted file mode 120000 index 1c8cd10a3..000000000 --- a/rt/load/mf/Core/gotoblas/default +++ /dev/null @@ -1 +0,0 @@ -1.26.lua \ No newline at end of file diff --git a/rt/load/mf/Core/gotoblas/default b/rt/load/mf/Core/gotoblas/default new file mode 100644 index 000000000..c0005392d --- /dev/null +++ b/rt/load/mf/Core/gotoblas/default @@ -0,0 +1,17 @@ +local version = "1.26" +whatis("Name: Gotoblas") +whatis("Version: " .. version) +whatis("Category: library, mathematics") +whatis("Description: Blas Level 1, 2, 3 routines") +whatis("URL: http://www.tacc.utexas.edu") + +local pkgRoot = "/vol/pkg" + +local pkgName = pathJoin("gotoblas",version) +local base = pathJoin(pkgRoot, pkgName) +setenv("TACC_GOTOBLAS_DIR",base) +setenv("TACC_GOTOBLAS_LIB",base) + +if (os.getenv("LMOD_sys") ~= "Darwin") then + prepend_path("LD_LIBRARY_PATH",base) +end diff --git a/rt/load/mf/Core2/alex/default b/rt/load/mf/Core2/alex/default deleted file mode 120000 index 44d96d04c..000000000 --- a/rt/load/mf/Core2/alex/default +++ /dev/null @@ -1 +0,0 @@ -2.0.lua \ No newline at end of file diff --git a/rt/load/mf/Core2/alex/default b/rt/load/mf/Core2/alex/default new file mode 100644 index 000000000..b1ec25baa --- /dev/null +++ b/rt/load/mf/Core2/alex/default @@ -0,0 +1,3 @@ +setenv("ALEX ","2.0") +setenv(" ABC ","3.0") +prepend_path("MANPATH2","") diff --git a/rt/load/mf/Core2/rtm_intel/default b/rt/load/mf/Core2/rtm_intel/default deleted file mode 120000 index 1459d9b4b..000000000 --- a/rt/load/mf/Core2/rtm_intel/default +++ /dev/null @@ -1 +0,0 @@ -11.1.lua \ No newline at end of file diff --git a/rt/load/mf/Core2/rtm_intel/default b/rt/load/mf/Core2/rtm_intel/default new file mode 100644 index 000000000..30edaef8f --- /dev/null +++ b/rt/load/mf/Core2/rtm_intel/default @@ -0,0 +1,2 @@ +setenv("RTM_INTEL_VERSION", "11.1") +setenv("EMPTY_STRING", "") diff --git a/rt/load/mf/Scratch/A/default b/rt/load/mf/Scratch/A/default deleted file mode 120000 index 97565ea38..000000000 --- a/rt/load/mf/Scratch/A/default +++ /dev/null @@ -1 +0,0 @@ -1.1.1.lua \ No newline at end of file diff --git a/rt/load/mf/Scratch/A/default b/rt/load/mf/Scratch/A/default new file mode 100644 index 000000000..8f3105bba --- /dev/null +++ b/rt/load/mf/Scratch/A/default @@ -0,0 +1,8 @@ +local pkg = Pkg:new{Category = "base", + Keywords = "base", + URL = "http://acme.com", + Description = "a module", + level = 0, + help = "help", +} +setenv("A_VERSION",pkg:pkgVersion()) diff --git a/rt/mpath/mf/Core/git/1.8.2 b/rt/mpath/mf/Core/git/1.8.2 deleted file mode 120000 index c434e7aef..000000000 --- a/rt/mpath/mf/Core/git/1.8.2 +++ /dev/null @@ -1 +0,0 @@ -.template \ No newline at end of file diff --git a/rt/mpath/mf/Core/git/1.8.2 b/rt/mpath/mf/Core/git/1.8.2 new file mode 100644 index 000000000..c94db3964 --- /dev/null +++ b/rt/mpath/mf/Core/git/1.8.2 @@ -0,0 +1,9 @@ +#%Module1.0 + +# for Tcl script use only +set name [lindex [split [ module-info name ] / ] 0 ] +set version [lindex [split [ module-info name ] / ] 1 ] +set root $env(HOME)/local/$name/$version + +prepend-path PATH $root/bin +prepend-path MANPATH $root/man diff --git a/rt/mpath/mf/Core/git/1.8.4 b/rt/mpath/mf/Core/git/1.8.4 deleted file mode 120000 index c434e7aef..000000000 --- a/rt/mpath/mf/Core/git/1.8.4 +++ /dev/null @@ -1 +0,0 @@ -.template \ No newline at end of file diff --git a/rt/mpath/mf/Core/git/1.8.4 b/rt/mpath/mf/Core/git/1.8.4 new file mode 100644 index 000000000..c94db3964 --- /dev/null +++ b/rt/mpath/mf/Core/git/1.8.4 @@ -0,0 +1,9 @@ +#%Module1.0 + +# for Tcl script use only +set name [lindex [split [ module-info name ] / ] 0 ] +set version [lindex [split [ module-info name ] / ] 1 ] +set root $env(HOME)/local/$name/$version + +prepend-path PATH $root/bin +prepend-path MANPATH $root/man diff --git a/rt/mpath/mf/Core/git/1.8.5 b/rt/mpath/mf/Core/git/1.8.5 deleted file mode 120000 index c434e7aef..000000000 --- a/rt/mpath/mf/Core/git/1.8.5 +++ /dev/null @@ -1 +0,0 @@ -.template \ No newline at end of file diff --git a/rt/mpath/mf/Core/git/1.8.5 b/rt/mpath/mf/Core/git/1.8.5 new file mode 100644 index 000000000..c94db3964 --- /dev/null +++ b/rt/mpath/mf/Core/git/1.8.5 @@ -0,0 +1,9 @@ +#%Module1.0 + +# for Tcl script use only +set name [lindex [split [ module-info name ] / ] 0 ] +set version [lindex [split [ module-info name ] / ] 1 ] +set root $env(HOME)/local/$name/$version + +prepend-path PATH $root/bin +prepend-path MANPATH $root/man diff --git a/rt/mpathColl/mf/MPI/gcc/13/mpich/13/petsc/3.24.lua b/rt/mpathColl/mf/MPI/gcc/13/mpich/13/petsc/3.24.lua deleted file mode 120000 index f1896397a..000000000 --- a/rt/mpathColl/mf/MPI/gcc/13/mpich/13/petsc/3.24.lua +++ /dev/null @@ -1 +0,0 @@ -../../../../../.base/petsc/3.24.lua \ No newline at end of file diff --git a/rt/mpathColl/mf/MPI/gcc/13/mpich/13/petsc/3.24.lua b/rt/mpathColl/mf/MPI/gcc/13/mpich/13/petsc/3.24.lua new file mode 100644 index 000000000..e69de29bb diff --git a/rt/mpathColl/mf/MPI/gcc/13/mpich/13/phdf5/1.14.3.lua b/rt/mpathColl/mf/MPI/gcc/13/mpich/13/phdf5/1.14.3.lua deleted file mode 120000 index 7ab9cf812..000000000 --- a/rt/mpathColl/mf/MPI/gcc/13/mpich/13/phdf5/1.14.3.lua +++ /dev/null @@ -1 +0,0 @@ -../../../../../.base/phdf5/1.14.3.lua \ No newline at end of file diff --git a/rt/mpathColl/mf/MPI/gcc/13/mpich/13/phdf5/1.14.3.lua b/rt/mpathColl/mf/MPI/gcc/13/mpich/13/phdf5/1.14.3.lua new file mode 100644 index 000000000..e69de29bb diff --git a/rt/multiparents/mf/compiler/intel/12.1/mpich2/default b/rt/multiparents/mf/compiler/intel/12.1/mpich2/default deleted file mode 120000 index 0ba1fdbf4..000000000 --- a/rt/multiparents/mf/compiler/intel/12.1/mpich2/default +++ /dev/null @@ -1 +0,0 @@ -1.4.1.lua \ No newline at end of file diff --git a/rt/multiparents/mf/compiler/intel/12.1/mpich2/default b/rt/multiparents/mf/compiler/intel/12.1/mpich2/default new file mode 100644 index 000000000..2e447e4a8 --- /dev/null +++ b/rt/multiparents/mf/compiler/intel/12.1/mpich2/default @@ -0,0 +1,14 @@ +-- -*- lua -*- +local pkgName = "mpich2" +local fn = myFileName():gsub(".lua","") +local version = barefilename(fn) +local pkgNameVer = pathJoin(pkgName,version) + +local hierA = hierarchyA(pkgNameVer,1) +local compiler_dir = hierA[1] +local pkgRoot = "/unknown/apps" +local mdir = pathJoin(os.getenv('MODULEPATH_ROOT'), "mpi",compiler_dir,pkgNameVer) +compiler_dir = compiler_dir:gsub("/","-"):gsub("%.","_") + +prepend_path('MODULEPATH', mdir) +family("MPI") diff --git a/rt/multiparents/mf/mpi/intel/12.1/mpich2/1.4.1/pmetis/4.1.lua b/rt/multiparents/mf/mpi/intel/12.1/mpich2/1.4.1/pmetis/4.1.lua deleted file mode 120000 index 4843a6958..000000000 --- a/rt/multiparents/mf/mpi/intel/12.1/mpich2/1.4.1/pmetis/4.1.lua +++ /dev/null @@ -1 +0,0 @@ -../../../../../.base/pmetis/4.1.lua \ No newline at end of file diff --git a/rt/multiparents/mf/mpi/intel/12.1/mpich2/1.4.1/pmetis/4.1.lua b/rt/multiparents/mf/mpi/intel/12.1/mpich2/1.4.1/pmetis/4.1.lua new file mode 100644 index 000000000..288d0d94e --- /dev/null +++ b/rt/multiparents/mf/mpi/intel/12.1/mpich2/1.4.1/pmetis/4.1.lua @@ -0,0 +1,16 @@ +-- -*- lua -*- +local pkgName = "pmetis" +local fn = myFileName():gsub(".lua","") +local version = barefilename(fn) +local pkgNameVer = pathJoin(pkgName,version) + +local hierA = hierarchyA(pkgNameVer,2) +local mpi_dir = hierA[1]:gsub("/","-"):gsub("%.","_") +local compiler_dir = hierA[2]:gsub("/","-"):gsub("%.","_") + +local pkgRoot = "/unknown/apps" +local base = pathJoin(pkgRoot, compiler_dir, mpi_dir, pkgName) +setenv( "TACC_PMETIS_DIR", base) +setenv( "TACC_PMETIS_INC", pathJoin(base,"include")) +setenv( "TACC_PMETIS_LIB", pathJoin(base,"lib")) + diff --git a/rt/multiparents/mf/mpi/intel/12.1/openmpi/1.5.4/pmetis/4.1.lua b/rt/multiparents/mf/mpi/intel/12.1/openmpi/1.5.4/pmetis/4.1.lua deleted file mode 120000 index 4843a6958..000000000 --- a/rt/multiparents/mf/mpi/intel/12.1/openmpi/1.5.4/pmetis/4.1.lua +++ /dev/null @@ -1 +0,0 @@ -../../../../../.base/pmetis/4.1.lua \ No newline at end of file diff --git a/rt/multiparents/mf/mpi/intel/12.1/openmpi/1.5.4/pmetis/4.1.lua b/rt/multiparents/mf/mpi/intel/12.1/openmpi/1.5.4/pmetis/4.1.lua new file mode 100644 index 000000000..288d0d94e --- /dev/null +++ b/rt/multiparents/mf/mpi/intel/12.1/openmpi/1.5.4/pmetis/4.1.lua @@ -0,0 +1,16 @@ +-- -*- lua -*- +local pkgName = "pmetis" +local fn = myFileName():gsub(".lua","") +local version = barefilename(fn) +local pkgNameVer = pathJoin(pkgName,version) + +local hierA = hierarchyA(pkgNameVer,2) +local mpi_dir = hierA[1]:gsub("/","-"):gsub("%.","_") +local compiler_dir = hierA[2]:gsub("/","-"):gsub("%.","_") + +local pkgRoot = "/unknown/apps" +local base = pathJoin(pkgRoot, compiler_dir, mpi_dir, pkgName) +setenv( "TACC_PMETIS_DIR", base) +setenv( "TACC_PMETIS_INC", pathJoin(base,"include")) +setenv( "TACC_PMETIS_LIB", pathJoin(base,"lib")) + diff --git a/rt/noTCL/mf/Compiler/intel/10.1/gotoblas/.version b/rt/noTCL/mf/Compiler/intel/10.1/gotoblas/.version deleted file mode 120000 index 9ec9ba9fc..000000000 --- a/rt/noTCL/mf/Compiler/intel/10.1/gotoblas/.version +++ /dev/null @@ -1 +0,0 @@ -.version-1.32 \ No newline at end of file diff --git a/rt/noTCL/mf/Compiler/intel/10.1/gotoblas/.version b/rt/noTCL/mf/Compiler/intel/10.1/gotoblas/.version new file mode 100644 index 000000000..9c66bd0cd --- /dev/null +++ b/rt/noTCL/mf/Compiler/intel/10.1/gotoblas/.version @@ -0,0 +1,7 @@ +#%Module3.1.6################################################# +## +## Version file for 1.32 of the gotoblas +## File default is copied to .version in modulefiles directory. +## + +set ModulesVersion "1.32" diff --git a/rt/noTCL/mf/Core/admin/default b/rt/noTCL/mf/Core/admin/default deleted file mode 120000 index 4a4a278b2..000000000 --- a/rt/noTCL/mf/Core/admin/default +++ /dev/null @@ -1 +0,0 @@ -admin-1.0.lua \ No newline at end of file diff --git a/rt/noTCL/mf/Core/admin/default b/rt/noTCL/mf/Core/admin/default new file mode 100644 index 000000000..9b91b10cf --- /dev/null +++ b/rt/noTCL/mf/Core/admin/default @@ -0,0 +1,3 @@ +-- -*- lua -*- +setenv("ADMIN_MODULE_LOADED","1") +prepend_path('PATH','/usr/sbin/://sbin///') diff --git a/rt/noTCL/mf/Core/boost b/rt/noTCL/mf/Core/boost deleted file mode 120000 index 3b732ee21..000000000 --- a/rt/noTCL/mf/Core/boost +++ /dev/null @@ -1 +0,0 @@ -../boost \ No newline at end of file diff --git a/rt/noTCL/mf/Core/boost/1.46.0.lua b/rt/noTCL/mf/Core/boost/1.46.0.lua new file mode 100644 index 000000000..ce968cd68 --- /dev/null +++ b/rt/noTCL/mf/Core/boost/1.46.0.lua @@ -0,0 +1,7 @@ +local name = "boost" +local fn = myFileName():gsub(".lua","") +local version = barefilename(fn) +local pkgName = pathJoin(name,version) +local pkgRoot = "/unknown/apps" +local base = pathJoin(pkgRoot, pkgName) +setenv( "TACC_BOOST_DIR", base) diff --git a/rt/noTCL/mf/Core/boost/1.47.1.lua b/rt/noTCL/mf/Core/boost/1.47.1.lua new file mode 100644 index 000000000..ce968cd68 --- /dev/null +++ b/rt/noTCL/mf/Core/boost/1.47.1.lua @@ -0,0 +1,7 @@ +local name = "boost" +local fn = myFileName():gsub(".lua","") +local version = barefilename(fn) +local pkgName = pathJoin(name,version) +local pkgRoot = "/unknown/apps" +local base = pathJoin(pkgRoot, pkgName) +setenv( "TACC_BOOST_DIR", base) diff --git a/rt/noTCL/mf/Core/boost/1.49.0.lua b/rt/noTCL/mf/Core/boost/1.49.0.lua new file mode 100644 index 000000000..c4abffdd1 --- /dev/null +++ b/rt/noTCL/mf/Core/boost/1.49.0.lua @@ -0,0 +1,8 @@ +local name = "boost" +local fn = myFileName():gsub(".lua","") +local version = barefilename(fn) +local pkgName = pathJoin(name,version) +local pkgRoot = "/unknown/apps" +local base = pathJoin(pkgRoot, pkgName) +setenv( "TACC_BOOST_DIR", base) +add_property("arch","offload") diff --git a/rt/noTCL/mf/Core/gotoblas/default b/rt/noTCL/mf/Core/gotoblas/default deleted file mode 120000 index 1c8cd10a3..000000000 --- a/rt/noTCL/mf/Core/gotoblas/default +++ /dev/null @@ -1 +0,0 @@ -1.26.lua \ No newline at end of file diff --git a/rt/noTCL/mf/Core/gotoblas/default b/rt/noTCL/mf/Core/gotoblas/default new file mode 100644 index 000000000..c0005392d --- /dev/null +++ b/rt/noTCL/mf/Core/gotoblas/default @@ -0,0 +1,17 @@ +local version = "1.26" +whatis("Name: Gotoblas") +whatis("Version: " .. version) +whatis("Category: library, mathematics") +whatis("Description: Blas Level 1, 2, 3 routines") +whatis("URL: http://www.tacc.utexas.edu") + +local pkgRoot = "/vol/pkg" + +local pkgName = pathJoin("gotoblas",version) +local base = pathJoin(pkgRoot, pkgName) +setenv("TACC_GOTOBLAS_DIR",base) +setenv("TACC_GOTOBLAS_LIB",base) + +if (os.getenv("LMOD_sys") ~= "Darwin") then + prepend_path("LD_LIBRARY_PATH",base) +end diff --git a/rt/pkg/mf/Compiler/gcc/4.7/boost/1.53.0.lua b/rt/pkg/mf/Compiler/gcc/4.7/boost/1.53.0.lua deleted file mode 120000 index fa808826b..000000000 --- a/rt/pkg/mf/Compiler/gcc/4.7/boost/1.53.0.lua +++ /dev/null @@ -1 +0,0 @@ -../../../.base/boost/1.53.0.lua \ No newline at end of file diff --git a/rt/pkg/mf/Compiler/gcc/4.7/boost/1.53.0.lua b/rt/pkg/mf/Compiler/gcc/4.7/boost/1.53.0.lua new file mode 100644 index 000000000..34504f560 --- /dev/null +++ b/rt/pkg/mf/Compiler/gcc/4.7/boost/1.53.0.lua @@ -0,0 +1,21 @@ +-- -*- lua -*- +local helpMsg = [[ +The boost module file defines the following environment variables: +TACC_BOOST_DIR, TACC_BOOST_LIB, and TACC_BOOST_INC for +the location of the boost distribution. +]] + +local pkg = Pkg:new{Category = "System Environment/Base", + URL = "http://www.boost.org", + Description = "Boost provides free peer-reviewed ".. + " portable C++ source libraries.", + display_name = "Boost", + level = 1, + help = helpMsg +} + +pkg:setStandardPaths("LIB","INC") + +add_property("arch","mic") + + diff --git a/rt/pkg/mf/Compiler/gcc/4.7/mpich/3.0.4.lua b/rt/pkg/mf/Compiler/gcc/4.7/mpich/3.0.4.lua deleted file mode 120000 index c43a4236c..000000000 --- a/rt/pkg/mf/Compiler/gcc/4.7/mpich/3.0.4.lua +++ /dev/null @@ -1 +0,0 @@ -../../../.base/mpich/3.0.4.lua \ No newline at end of file diff --git a/rt/pkg/mf/Compiler/gcc/4.7/mpich/3.0.4.lua b/rt/pkg/mf/Compiler/gcc/4.7/mpich/3.0.4.lua new file mode 100644 index 000000000..dd9cd519a --- /dev/null +++ b/rt/pkg/mf/Compiler/gcc/4.7/mpich/3.0.4.lua @@ -0,0 +1,23 @@ +-- -*- lua -*- +local help = [[ +Mpich implementation MPI 3.0 +]] + +local pkg = Pkg:new{Category = "MPI", + URL = "http://www.mpich.org", + Description = "Message Passing Interface Library version 3", + level = 1, + help = help +} +local mdir = pkg:moduleDir() +local base = pkg:pkgBase() + +prepend_path('MODULEPATH', mdir) +prepend_path('PATH', pathJoin(base,"bin")) +prepend_path('MANPATH', pathJoin(base,"man")) +setenv( 'MPIHOME', base) +setenv( 'MPICH_HOME', base) + + +prepend_path('LD_LIBRARY_PATH', pathJoin(base,"lib")) +family("MPI") diff --git a/rt/pkg/mf/Compiler/intel/13.1/boost/1.53.0.lua b/rt/pkg/mf/Compiler/intel/13.1/boost/1.53.0.lua deleted file mode 120000 index fa808826b..000000000 --- a/rt/pkg/mf/Compiler/intel/13.1/boost/1.53.0.lua +++ /dev/null @@ -1 +0,0 @@ -../../../.base/boost/1.53.0.lua \ No newline at end of file diff --git a/rt/pkg/mf/Compiler/intel/13.1/boost/1.53.0.lua b/rt/pkg/mf/Compiler/intel/13.1/boost/1.53.0.lua new file mode 100644 index 000000000..34504f560 --- /dev/null +++ b/rt/pkg/mf/Compiler/intel/13.1/boost/1.53.0.lua @@ -0,0 +1,21 @@ +-- -*- lua -*- +local helpMsg = [[ +The boost module file defines the following environment variables: +TACC_BOOST_DIR, TACC_BOOST_LIB, and TACC_BOOST_INC for +the location of the boost distribution. +]] + +local pkg = Pkg:new{Category = "System Environment/Base", + URL = "http://www.boost.org", + Description = "Boost provides free peer-reviewed ".. + " portable C++ source libraries.", + display_name = "Boost", + level = 1, + help = helpMsg +} + +pkg:setStandardPaths("LIB","INC") + +add_property("arch","mic") + + diff --git a/rt/pkg/mf/Compiler/intel/13.1/mpich/3.0.4.lua b/rt/pkg/mf/Compiler/intel/13.1/mpich/3.0.4.lua deleted file mode 120000 index c43a4236c..000000000 --- a/rt/pkg/mf/Compiler/intel/13.1/mpich/3.0.4.lua +++ /dev/null @@ -1 +0,0 @@ -../../../.base/mpich/3.0.4.lua \ No newline at end of file diff --git a/rt/pkg/mf/Compiler/intel/13.1/mpich/3.0.4.lua b/rt/pkg/mf/Compiler/intel/13.1/mpich/3.0.4.lua new file mode 100644 index 000000000..dd9cd519a --- /dev/null +++ b/rt/pkg/mf/Compiler/intel/13.1/mpich/3.0.4.lua @@ -0,0 +1,23 @@ +-- -*- lua -*- +local help = [[ +Mpich implementation MPI 3.0 +]] + +local pkg = Pkg:new{Category = "MPI", + URL = "http://www.mpich.org", + Description = "Message Passing Interface Library version 3", + level = 1, + help = help +} +local mdir = pkg:moduleDir() +local base = pkg:pkgBase() + +prepend_path('MODULEPATH', mdir) +prepend_path('PATH', pathJoin(base,"bin")) +prepend_path('MANPATH', pathJoin(base,"man")) +setenv( 'MPIHOME', base) +setenv( 'MPICH_HOME', base) + + +prepend_path('LD_LIBRARY_PATH', pathJoin(base,"lib")) +family("MPI") diff --git a/rt/pkg/mf/MPI/gcc/4.7/mpich/3.0/pmetis/4.0.3.lua b/rt/pkg/mf/MPI/gcc/4.7/mpich/3.0/pmetis/4.0.3.lua deleted file mode 120000 index 42ec775c5..000000000 --- a/rt/pkg/mf/MPI/gcc/4.7/mpich/3.0/pmetis/4.0.3.lua +++ /dev/null @@ -1 +0,0 @@ -../../../../../.base/pmetis/4.0.3.lua \ No newline at end of file diff --git a/rt/pkg/mf/MPI/gcc/4.7/mpich/3.0/pmetis/4.0.3.lua b/rt/pkg/mf/MPI/gcc/4.7/mpich/3.0/pmetis/4.0.3.lua new file mode 100644 index 000000000..86b1832d3 --- /dev/null +++ b/rt/pkg/mf/MPI/gcc/4.7/mpich/3.0/pmetis/4.0.3.lua @@ -0,0 +1,28 @@ +-- -*- lua -*- +local help = [[ +The pmetis module defines the following environment variables: +TACC_PMETIS_DIR, TACC_PMETIS_DOC, TACC_PMETIS_BIN, +TACC_PMETIS_LIB, and TACC_PMETIS_INC for the location +of the ParMetis distribution, documentation, binaries, +libraries, and include files. + + +To use the parmetis library, include compilation and link directives +of the form: -L$TACC_PMETIS_LIB -I$TACC_PMETIS_INC -lparmetis -lmetis + +Here is an example command to compile pmetis_test.c: + +mpicc -I$TACC_PMETIS_INC pmetis_test.c -L$TACC_PMETIS_LIB -lparmetis +]] + +local pkg = Pkg:new{Category = "Library, Mathematics", + Keywords = "Library, Parallel, Mathematics, Graph Partitioning", + URL = "http://glaros.dtc.umn.edu/gkhome/views/metis", + Description = "Parallel graph partitioning and fill-reduction ".. + "matrix ordering routines", + display_name = "PMETIS", + level = 2, + help = help +} + +pkg:setStandardPaths("DIR","INC","LIB") diff --git a/rt/pkg/mf/MPI/intel/13.1/mpich/3.0/pmetis/4.0.3.lua b/rt/pkg/mf/MPI/intel/13.1/mpich/3.0/pmetis/4.0.3.lua deleted file mode 120000 index 42ec775c5..000000000 --- a/rt/pkg/mf/MPI/intel/13.1/mpich/3.0/pmetis/4.0.3.lua +++ /dev/null @@ -1 +0,0 @@ -../../../../../.base/pmetis/4.0.3.lua \ No newline at end of file diff --git a/rt/pkg/mf/MPI/intel/13.1/mpich/3.0/pmetis/4.0.3.lua b/rt/pkg/mf/MPI/intel/13.1/mpich/3.0/pmetis/4.0.3.lua new file mode 100644 index 000000000..86b1832d3 --- /dev/null +++ b/rt/pkg/mf/MPI/intel/13.1/mpich/3.0/pmetis/4.0.3.lua @@ -0,0 +1,28 @@ +-- -*- lua -*- +local help = [[ +The pmetis module defines the following environment variables: +TACC_PMETIS_DIR, TACC_PMETIS_DOC, TACC_PMETIS_BIN, +TACC_PMETIS_LIB, and TACC_PMETIS_INC for the location +of the ParMetis distribution, documentation, binaries, +libraries, and include files. + + +To use the parmetis library, include compilation and link directives +of the form: -L$TACC_PMETIS_LIB -I$TACC_PMETIS_INC -lparmetis -lmetis + +Here is an example command to compile pmetis_test.c: + +mpicc -I$TACC_PMETIS_INC pmetis_test.c -L$TACC_PMETIS_LIB -lparmetis +]] + +local pkg = Pkg:new{Category = "Library, Mathematics", + Keywords = "Library, Parallel, Mathematics, Graph Partitioning", + URL = "http://glaros.dtc.umn.edu/gkhome/views/metis", + Description = "Parallel graph partitioning and fill-reduction ".. + "matrix ordering routines", + display_name = "PMETIS", + level = 2, + help = help +} + +pkg:setStandardPaths("DIR","INC","LIB") diff --git a/rt/purge/mf/Compiler/intel/10.1/gotoblas/.version b/rt/purge/mf/Compiler/intel/10.1/gotoblas/.version deleted file mode 120000 index 9ec9ba9fc..000000000 --- a/rt/purge/mf/Compiler/intel/10.1/gotoblas/.version +++ /dev/null @@ -1 +0,0 @@ -.version-1.32 \ No newline at end of file diff --git a/rt/purge/mf/Compiler/intel/10.1/gotoblas/.version b/rt/purge/mf/Compiler/intel/10.1/gotoblas/.version new file mode 100644 index 000000000..9c66bd0cd --- /dev/null +++ b/rt/purge/mf/Compiler/intel/10.1/gotoblas/.version @@ -0,0 +1,7 @@ +#%Module3.1.6################################################# +## +## Version file for 1.32 of the gotoblas +## File default is copied to .version in modulefiles directory. +## + +set ModulesVersion "1.32" diff --git a/rt/purge/mf/Core/admin/default b/rt/purge/mf/Core/admin/default deleted file mode 120000 index 4a4a278b2..000000000 --- a/rt/purge/mf/Core/admin/default +++ /dev/null @@ -1 +0,0 @@ -admin-1.0.lua \ No newline at end of file diff --git a/rt/purge/mf/Core/admin/default b/rt/purge/mf/Core/admin/default new file mode 100644 index 000000000..9b91b10cf --- /dev/null +++ b/rt/purge/mf/Core/admin/default @@ -0,0 +1,3 @@ +-- -*- lua -*- +setenv("ADMIN_MODULE_LOADED","1") +prepend_path('PATH','/usr/sbin/://sbin///') diff --git a/rt/purge/mf/Core/boost b/rt/purge/mf/Core/boost deleted file mode 120000 index 3b732ee21..000000000 --- a/rt/purge/mf/Core/boost +++ /dev/null @@ -1 +0,0 @@ -../boost \ No newline at end of file diff --git a/rt/purge/mf/Core/boost/1.46.0.lua b/rt/purge/mf/Core/boost/1.46.0.lua new file mode 100644 index 000000000..ce968cd68 --- /dev/null +++ b/rt/purge/mf/Core/boost/1.46.0.lua @@ -0,0 +1,7 @@ +local name = "boost" +local fn = myFileName():gsub(".lua","") +local version = barefilename(fn) +local pkgName = pathJoin(name,version) +local pkgRoot = "/unknown/apps" +local base = pathJoin(pkgRoot, pkgName) +setenv( "TACC_BOOST_DIR", base) diff --git a/rt/purge/mf/Core/boost/1.47.1.lua b/rt/purge/mf/Core/boost/1.47.1.lua new file mode 100644 index 000000000..ce968cd68 --- /dev/null +++ b/rt/purge/mf/Core/boost/1.47.1.lua @@ -0,0 +1,7 @@ +local name = "boost" +local fn = myFileName():gsub(".lua","") +local version = barefilename(fn) +local pkgName = pathJoin(name,version) +local pkgRoot = "/unknown/apps" +local base = pathJoin(pkgRoot, pkgName) +setenv( "TACC_BOOST_DIR", base) diff --git a/rt/purge/mf/Core/boost/1.49.0.lua b/rt/purge/mf/Core/boost/1.49.0.lua new file mode 100644 index 000000000..c4abffdd1 --- /dev/null +++ b/rt/purge/mf/Core/boost/1.49.0.lua @@ -0,0 +1,8 @@ +local name = "boost" +local fn = myFileName():gsub(".lua","") +local version = barefilename(fn) +local pkgName = pathJoin(name,version) +local pkgRoot = "/unknown/apps" +local base = pathJoin(pkgRoot, pkgName) +setenv( "TACC_BOOST_DIR", base) +add_property("arch","offload") diff --git a/rt/purge/mf/Core/gotoblas/default b/rt/purge/mf/Core/gotoblas/default deleted file mode 120000 index 1c8cd10a3..000000000 --- a/rt/purge/mf/Core/gotoblas/default +++ /dev/null @@ -1 +0,0 @@ -1.26.lua \ No newline at end of file diff --git a/rt/purge/mf/Core/gotoblas/default b/rt/purge/mf/Core/gotoblas/default new file mode 100644 index 000000000..c0005392d --- /dev/null +++ b/rt/purge/mf/Core/gotoblas/default @@ -0,0 +1,17 @@ +local version = "1.26" +whatis("Name: Gotoblas") +whatis("Version: " .. version) +whatis("Category: library, mathematics") +whatis("Description: Blas Level 1, 2, 3 routines") +whatis("URL: http://www.tacc.utexas.edu") + +local pkgRoot = "/vol/pkg" + +local pkgName = pathJoin("gotoblas",version) +local base = pathJoin(pkgRoot, pkgName) +setenv("TACC_GOTOBLAS_DIR",base) +setenv("TACC_GOTOBLAS_LIB",base) + +if (os.getenv("LMOD_sys") ~= "Darwin") then + prepend_path("LD_LIBRARY_PATH",base) +end diff --git a/rt/reset/mf/Compiler/intel/10.1/gotoblas/.version b/rt/reset/mf/Compiler/intel/10.1/gotoblas/.version deleted file mode 120000 index 9ec9ba9fc..000000000 --- a/rt/reset/mf/Compiler/intel/10.1/gotoblas/.version +++ /dev/null @@ -1 +0,0 @@ -.version-1.32 \ No newline at end of file diff --git a/rt/reset/mf/Compiler/intel/10.1/gotoblas/.version b/rt/reset/mf/Compiler/intel/10.1/gotoblas/.version new file mode 100644 index 000000000..9c66bd0cd --- /dev/null +++ b/rt/reset/mf/Compiler/intel/10.1/gotoblas/.version @@ -0,0 +1,7 @@ +#%Module3.1.6################################################# +## +## Version file for 1.32 of the gotoblas +## File default is copied to .version in modulefiles directory. +## + +set ModulesVersion "1.32" diff --git a/rt/reset/mf/Core/admin/default b/rt/reset/mf/Core/admin/default deleted file mode 120000 index 4a4a278b2..000000000 --- a/rt/reset/mf/Core/admin/default +++ /dev/null @@ -1 +0,0 @@ -admin-1.0.lua \ No newline at end of file diff --git a/rt/reset/mf/Core/admin/default b/rt/reset/mf/Core/admin/default new file mode 100644 index 000000000..9b91b10cf --- /dev/null +++ b/rt/reset/mf/Core/admin/default @@ -0,0 +1,3 @@ +-- -*- lua -*- +setenv("ADMIN_MODULE_LOADED","1") +prepend_path('PATH','/usr/sbin/://sbin///') diff --git a/rt/reset/mf/Core/boost b/rt/reset/mf/Core/boost deleted file mode 120000 index 3b732ee21..000000000 --- a/rt/reset/mf/Core/boost +++ /dev/null @@ -1 +0,0 @@ -../boost \ No newline at end of file diff --git a/rt/reset/mf/Core/boost/1.46.0.lua b/rt/reset/mf/Core/boost/1.46.0.lua new file mode 100644 index 000000000..ce968cd68 --- /dev/null +++ b/rt/reset/mf/Core/boost/1.46.0.lua @@ -0,0 +1,7 @@ +local name = "boost" +local fn = myFileName():gsub(".lua","") +local version = barefilename(fn) +local pkgName = pathJoin(name,version) +local pkgRoot = "/unknown/apps" +local base = pathJoin(pkgRoot, pkgName) +setenv( "TACC_BOOST_DIR", base) diff --git a/rt/reset/mf/Core/boost/1.47.1.lua b/rt/reset/mf/Core/boost/1.47.1.lua new file mode 100644 index 000000000..ce968cd68 --- /dev/null +++ b/rt/reset/mf/Core/boost/1.47.1.lua @@ -0,0 +1,7 @@ +local name = "boost" +local fn = myFileName():gsub(".lua","") +local version = barefilename(fn) +local pkgName = pathJoin(name,version) +local pkgRoot = "/unknown/apps" +local base = pathJoin(pkgRoot, pkgName) +setenv( "TACC_BOOST_DIR", base) diff --git a/rt/reset/mf/Core/boost/1.49.0.lua b/rt/reset/mf/Core/boost/1.49.0.lua new file mode 100644 index 000000000..c4abffdd1 --- /dev/null +++ b/rt/reset/mf/Core/boost/1.49.0.lua @@ -0,0 +1,8 @@ +local name = "boost" +local fn = myFileName():gsub(".lua","") +local version = barefilename(fn) +local pkgName = pathJoin(name,version) +local pkgRoot = "/unknown/apps" +local base = pathJoin(pkgRoot, pkgName) +setenv( "TACC_BOOST_DIR", base) +add_property("arch","offload") diff --git a/rt/reset/mf/Core/gotoblas/default b/rt/reset/mf/Core/gotoblas/default deleted file mode 120000 index 1c8cd10a3..000000000 --- a/rt/reset/mf/Core/gotoblas/default +++ /dev/null @@ -1 +0,0 @@ -1.26.lua \ No newline at end of file diff --git a/rt/reset/mf/Core/gotoblas/default b/rt/reset/mf/Core/gotoblas/default new file mode 100644 index 000000000..c0005392d --- /dev/null +++ b/rt/reset/mf/Core/gotoblas/default @@ -0,0 +1,17 @@ +local version = "1.26" +whatis("Name: Gotoblas") +whatis("Version: " .. version) +whatis("Category: library, mathematics") +whatis("Description: Blas Level 1, 2, 3 routines") +whatis("URL: http://www.tacc.utexas.edu") + +local pkgRoot = "/vol/pkg" + +local pkgName = pathJoin("gotoblas",version) +local base = pathJoin(pkgRoot, pkgName) +setenv("TACC_GOTOBLAS_DIR",base) +setenv("TACC_GOTOBLAS_LIB",base) + +if (os.getenv("LMOD_sys") ~= "Darwin") then + prepend_path("LD_LIBRARY_PATH",base) +end diff --git a/rt/rmap/mf/2Compiler/intel/14.0/impi/4.1.lua b/rt/rmap/mf/2Compiler/intel/14.0/impi/4.1.lua deleted file mode 120000 index c073d0339..000000000 --- a/rt/rmap/mf/2Compiler/intel/14.0/impi/4.1.lua +++ /dev/null @@ -1 +0,0 @@ -../../../.base/impi/template \ No newline at end of file diff --git a/rt/rmap/mf/2Compiler/intel/14.0/impi/4.1.lua b/rt/rmap/mf/2Compiler/intel/14.0/impi/4.1.lua new file mode 100644 index 000000000..734220076 --- /dev/null +++ b/rt/rmap/mf/2Compiler/intel/14.0/impi/4.1.lua @@ -0,0 +1,18 @@ +-- -*- lua -*- +local name = myModuleName() +local fullVersion = myModuleVersion() +local pkgName = pathJoin(name, fullVersion) +local hierA = hierarchyA(pkgName,1) +local compiler_dir = hierA[1] +local pkgVersion = fullVersion:match('(%d+%.%d+)%.?') +local compiler_name = compiler_dir:gsub("/","-"):gsub("%.","_") -- :gsub("intel%.14_1","intel-14_1") +local mroot = os.getenv("MODULEPATH_ROOT") +local appsDir = os.getenv("APPS_DIR") +local base = pathJoin(appsDir,compiler_name, pkgName) + + +prepend_path("PATH", pathJoin(base,"bin")) +prepend_path("LD_LIBRARY_PATH", pathJoin(base,"lib")) +prepend_path("MODULEPATH", pathJoin(mroot, "2MPI", compiler_dir, name, pkgVersion)) + +family("MPI") diff --git a/rt/rmap/mf/Compiler/intel/13.1/impi/4.1.lua b/rt/rmap/mf/Compiler/intel/13.1/impi/4.1.lua deleted file mode 120000 index c073d0339..000000000 --- a/rt/rmap/mf/Compiler/intel/13.1/impi/4.1.lua +++ /dev/null @@ -1 +0,0 @@ -../../../.base/impi/template \ No newline at end of file diff --git a/rt/rmap/mf/Compiler/intel/13.1/impi/4.1.lua b/rt/rmap/mf/Compiler/intel/13.1/impi/4.1.lua new file mode 100644 index 000000000..b50badd4a --- /dev/null +++ b/rt/rmap/mf/Compiler/intel/13.1/impi/4.1.lua @@ -0,0 +1,18 @@ +-- -*- lua -*- +local name = myModuleName() +local fullVersion = myModuleVersion() +local pkgName = pathJoin(name, fullVersion) +local hierA = hierarchyA(pkgName,1) +local compiler_dir = hierA[1] +local pkgVersion = fullVersion:match('(%d+%.%d+)%.?') +local compiler_name = compiler_dir:gsub("/","-"):gsub("%.","_") -- :gsub("intel%-14_0","intel-13_1") +local mroot = os.getenv("MODULEPATH_ROOT") +local appsDir = os.getenv("APPS_DIR") +local base = pathJoin(appsDir,compiler_name, pkgName) + + +prepend_path("PATH", pathJoin(base,"bin")) +prepend_path("LD_LIBRARY_PATH", pathJoin(base,"lib")) +prepend_path("MODULEPATH", pathJoin(mroot, "MPI", compiler_dir, name, pkgVersion)) + +family("MPI") diff --git a/rt/rmap/mf/Compiler/intel/14.0/impi/4.1.lua b/rt/rmap/mf/Compiler/intel/14.0/impi/4.1.lua deleted file mode 120000 index c073d0339..000000000 --- a/rt/rmap/mf/Compiler/intel/14.0/impi/4.1.lua +++ /dev/null @@ -1 +0,0 @@ -../../../.base/impi/template \ No newline at end of file diff --git a/rt/rmap/mf/Compiler/intel/14.0/impi/4.1.lua b/rt/rmap/mf/Compiler/intel/14.0/impi/4.1.lua new file mode 100644 index 000000000..b50badd4a --- /dev/null +++ b/rt/rmap/mf/Compiler/intel/14.0/impi/4.1.lua @@ -0,0 +1,18 @@ +-- -*- lua -*- +local name = myModuleName() +local fullVersion = myModuleVersion() +local pkgName = pathJoin(name, fullVersion) +local hierA = hierarchyA(pkgName,1) +local compiler_dir = hierA[1] +local pkgVersion = fullVersion:match('(%d+%.%d+)%.?') +local compiler_name = compiler_dir:gsub("/","-"):gsub("%.","_") -- :gsub("intel%-14_0","intel-13_1") +local mroot = os.getenv("MODULEPATH_ROOT") +local appsDir = os.getenv("APPS_DIR") +local base = pathJoin(appsDir,compiler_name, pkgName) + + +prepend_path("PATH", pathJoin(base,"bin")) +prepend_path("LD_LIBRARY_PATH", pathJoin(base,"lib")) +prepend_path("MODULEPATH", pathJoin(mroot, "MPI", compiler_dir, name, pkgVersion)) + +family("MPI") diff --git a/rt/saverestore/Core/a/1.0 b/rt/saverestore/Core/a/1.0 deleted file mode 120000 index c434e7aef..000000000 --- a/rt/saverestore/Core/a/1.0 +++ /dev/null @@ -1 +0,0 @@ -.template \ No newline at end of file diff --git a/rt/saverestore/Core/a/1.0 b/rt/saverestore/Core/a/1.0 new file mode 100644 index 000000000..c94db3964 --- /dev/null +++ b/rt/saverestore/Core/a/1.0 @@ -0,0 +1,9 @@ +#%Module1.0 + +# for Tcl script use only +set name [lindex [split [ module-info name ] / ] 0 ] +set version [lindex [split [ module-info name ] / ] 1 ] +set root $env(HOME)/local/$name/$version + +prepend-path PATH $root/bin +prepend-path MANPATH $root/man diff --git a/rt/saverestore/Core/a/2.0 b/rt/saverestore/Core/a/2.0 deleted file mode 120000 index c434e7aef..000000000 --- a/rt/saverestore/Core/a/2.0 +++ /dev/null @@ -1 +0,0 @@ -.template \ No newline at end of file diff --git a/rt/saverestore/Core/a/2.0 b/rt/saverestore/Core/a/2.0 new file mode 100644 index 000000000..c94db3964 --- /dev/null +++ b/rt/saverestore/Core/a/2.0 @@ -0,0 +1,9 @@ +#%Module1.0 + +# for Tcl script use only +set name [lindex [split [ module-info name ] / ] 0 ] +set version [lindex [split [ module-info name ] / ] 1 ] +set root $env(HOME)/local/$name/$version + +prepend-path PATH $root/bin +prepend-path MANPATH $root/man diff --git a/rt/saverestore/Core/a/3.0 b/rt/saverestore/Core/a/3.0 deleted file mode 120000 index c434e7aef..000000000 --- a/rt/saverestore/Core/a/3.0 +++ /dev/null @@ -1 +0,0 @@ -.template \ No newline at end of file diff --git a/rt/saverestore/Core/a/3.0 b/rt/saverestore/Core/a/3.0 new file mode 100644 index 000000000..c94db3964 --- /dev/null +++ b/rt/saverestore/Core/a/3.0 @@ -0,0 +1,9 @@ +#%Module1.0 + +# for Tcl script use only +set name [lindex [split [ module-info name ] / ] 0 ] +set version [lindex [split [ module-info name ] / ] 1 ] +set root $env(HOME)/local/$name/$version + +prepend-path PATH $root/bin +prepend-path MANPATH $root/man diff --git a/rt/saverestore/Core/a/default b/rt/saverestore/Core/a/default deleted file mode 120000 index 415b19fc3..000000000 --- a/rt/saverestore/Core/a/default +++ /dev/null @@ -1 +0,0 @@ -2.0 \ No newline at end of file diff --git a/rt/saverestore/Core/a/default b/rt/saverestore/Core/a/default new file mode 100644 index 000000000..c94db3964 --- /dev/null +++ b/rt/saverestore/Core/a/default @@ -0,0 +1,9 @@ +#%Module1.0 + +# for Tcl script use only +set name [lindex [split [ module-info name ] / ] 0 ] +set version [lindex [split [ module-info name ] / ] 1 ] +set root $env(HOME)/local/$name/$version + +prepend-path PATH $root/bin +prepend-path MANPATH $root/man diff --git a/rt/saverestore/Core/b/3.1 b/rt/saverestore/Core/b/3.1 deleted file mode 120000 index c434e7aef..000000000 --- a/rt/saverestore/Core/b/3.1 +++ /dev/null @@ -1 +0,0 @@ -.template \ No newline at end of file diff --git a/rt/saverestore/Core/b/3.1 b/rt/saverestore/Core/b/3.1 new file mode 100644 index 000000000..c94db3964 --- /dev/null +++ b/rt/saverestore/Core/b/3.1 @@ -0,0 +1,9 @@ +#%Module1.0 + +# for Tcl script use only +set name [lindex [split [ module-info name ] / ] 0 ] +set version [lindex [split [ module-info name ] / ] 1 ] +set root $env(HOME)/local/$name/$version + +prepend-path PATH $root/bin +prepend-path MANPATH $root/man diff --git a/rt/saverestore/Core/b/3.2 b/rt/saverestore/Core/b/3.2 deleted file mode 120000 index c434e7aef..000000000 --- a/rt/saverestore/Core/b/3.2 +++ /dev/null @@ -1 +0,0 @@ -.template \ No newline at end of file diff --git a/rt/saverestore/Core/b/3.2 b/rt/saverestore/Core/b/3.2 new file mode 100644 index 000000000..c94db3964 --- /dev/null +++ b/rt/saverestore/Core/b/3.2 @@ -0,0 +1,9 @@ +#%Module1.0 + +# for Tcl script use only +set name [lindex [split [ module-info name ] / ] 0 ] +set version [lindex [split [ module-info name ] / ] 1 ] +set root $env(HOME)/local/$name/$version + +prepend-path PATH $root/bin +prepend-path MANPATH $root/man diff --git a/rt/saverestore/Core/b/3.3 b/rt/saverestore/Core/b/3.3 deleted file mode 120000 index c434e7aef..000000000 --- a/rt/saverestore/Core/b/3.3 +++ /dev/null @@ -1 +0,0 @@ -.template \ No newline at end of file diff --git a/rt/saverestore/Core/b/3.3 b/rt/saverestore/Core/b/3.3 new file mode 100644 index 000000000..c94db3964 --- /dev/null +++ b/rt/saverestore/Core/b/3.3 @@ -0,0 +1,9 @@ +#%Module1.0 + +# for Tcl script use only +set name [lindex [split [ module-info name ] / ] 0 ] +set version [lindex [split [ module-info name ] / ] 1 ] +set root $env(HOME)/local/$name/$version + +prepend-path PATH $root/bin +prepend-path MANPATH $root/man diff --git a/rt/settarg/mf/Compiler/gcc/4.7/mpich/3.0.4.lua b/rt/settarg/mf/Compiler/gcc/4.7/mpich/3.0.4.lua deleted file mode 120000 index c43a4236c..000000000 --- a/rt/settarg/mf/Compiler/gcc/4.7/mpich/3.0.4.lua +++ /dev/null @@ -1 +0,0 @@ -../../../.base/mpich/3.0.4.lua \ No newline at end of file diff --git a/rt/settarg/mf/Compiler/gcc/4.7/mpich/3.0.4.lua b/rt/settarg/mf/Compiler/gcc/4.7/mpich/3.0.4.lua new file mode 100644 index 000000000..dd9cd519a --- /dev/null +++ b/rt/settarg/mf/Compiler/gcc/4.7/mpich/3.0.4.lua @@ -0,0 +1,23 @@ +-- -*- lua -*- +local help = [[ +Mpich implementation MPI 3.0 +]] + +local pkg = Pkg:new{Category = "MPI", + URL = "http://www.mpich.org", + Description = "Message Passing Interface Library version 3", + level = 1, + help = help +} +local mdir = pkg:moduleDir() +local base = pkg:pkgBase() + +prepend_path('MODULEPATH', mdir) +prepend_path('PATH', pathJoin(base,"bin")) +prepend_path('MANPATH', pathJoin(base,"man")) +setenv( 'MPIHOME', base) +setenv( 'MPICH_HOME', base) + + +prepend_path('LD_LIBRARY_PATH', pathJoin(base,"lib")) +family("MPI") diff --git a/rt/show/mf/Compiler/intel/10.1/gotoblas/.version b/rt/show/mf/Compiler/intel/10.1/gotoblas/.version deleted file mode 120000 index 9ec9ba9fc..000000000 --- a/rt/show/mf/Compiler/intel/10.1/gotoblas/.version +++ /dev/null @@ -1 +0,0 @@ -.version-1.32 \ No newline at end of file diff --git a/rt/show/mf/Compiler/intel/10.1/gotoblas/.version b/rt/show/mf/Compiler/intel/10.1/gotoblas/.version new file mode 100644 index 000000000..9c66bd0cd --- /dev/null +++ b/rt/show/mf/Compiler/intel/10.1/gotoblas/.version @@ -0,0 +1,7 @@ +#%Module3.1.6################################################# +## +## Version file for 1.32 of the gotoblas +## File default is copied to .version in modulefiles directory. +## + +set ModulesVersion "1.32" diff --git a/rt/show/mf/Core/admin/default b/rt/show/mf/Core/admin/default deleted file mode 120000 index 4a4a278b2..000000000 --- a/rt/show/mf/Core/admin/default +++ /dev/null @@ -1 +0,0 @@ -admin-1.0.lua \ No newline at end of file diff --git a/rt/show/mf/Core/admin/default b/rt/show/mf/Core/admin/default new file mode 100644 index 000000000..9b91b10cf --- /dev/null +++ b/rt/show/mf/Core/admin/default @@ -0,0 +1,3 @@ +-- -*- lua -*- +setenv("ADMIN_MODULE_LOADED","1") +prepend_path('PATH','/usr/sbin/://sbin///') diff --git a/rt/show/mf/Core/boost b/rt/show/mf/Core/boost deleted file mode 120000 index 3b732ee21..000000000 --- a/rt/show/mf/Core/boost +++ /dev/null @@ -1 +0,0 @@ -../boost \ No newline at end of file diff --git a/rt/show/mf/Core/boost/1.46.0.lua b/rt/show/mf/Core/boost/1.46.0.lua new file mode 100644 index 000000000..ce968cd68 --- /dev/null +++ b/rt/show/mf/Core/boost/1.46.0.lua @@ -0,0 +1,7 @@ +local name = "boost" +local fn = myFileName():gsub(".lua","") +local version = barefilename(fn) +local pkgName = pathJoin(name,version) +local pkgRoot = "/unknown/apps" +local base = pathJoin(pkgRoot, pkgName) +setenv( "TACC_BOOST_DIR", base) diff --git a/rt/show/mf/Core/boost/1.47.1.lua b/rt/show/mf/Core/boost/1.47.1.lua new file mode 100644 index 000000000..ce968cd68 --- /dev/null +++ b/rt/show/mf/Core/boost/1.47.1.lua @@ -0,0 +1,7 @@ +local name = "boost" +local fn = myFileName():gsub(".lua","") +local version = barefilename(fn) +local pkgName = pathJoin(name,version) +local pkgRoot = "/unknown/apps" +local base = pathJoin(pkgRoot, pkgName) +setenv( "TACC_BOOST_DIR", base) diff --git a/rt/show/mf/Core/boost/1.49.0.lua b/rt/show/mf/Core/boost/1.49.0.lua new file mode 100644 index 000000000..c4abffdd1 --- /dev/null +++ b/rt/show/mf/Core/boost/1.49.0.lua @@ -0,0 +1,8 @@ +local name = "boost" +local fn = myFileName():gsub(".lua","") +local version = barefilename(fn) +local pkgName = pathJoin(name,version) +local pkgRoot = "/unknown/apps" +local base = pathJoin(pkgRoot, pkgName) +setenv( "TACC_BOOST_DIR", base) +add_property("arch","offload") diff --git a/rt/show/mf/Core/gotoblas/default b/rt/show/mf/Core/gotoblas/default deleted file mode 120000 index 1c8cd10a3..000000000 --- a/rt/show/mf/Core/gotoblas/default +++ /dev/null @@ -1 +0,0 @@ -1.26.lua \ No newline at end of file diff --git a/rt/show/mf/Core/gotoblas/default b/rt/show/mf/Core/gotoblas/default new file mode 100644 index 000000000..c0005392d --- /dev/null +++ b/rt/show/mf/Core/gotoblas/default @@ -0,0 +1,17 @@ +local version = "1.26" +whatis("Name: Gotoblas") +whatis("Version: " .. version) +whatis("Category: library, mathematics") +whatis("Description: Blas Level 1, 2, 3 routines") +whatis("URL: http://www.tacc.utexas.edu") + +local pkgRoot = "/vol/pkg" + +local pkgName = pathJoin("gotoblas",version) +local base = pathJoin(pkgRoot, pkgName) +setenv("TACC_GOTOBLAS_DIR",base) +setenv("TACC_GOTOBLAS_LIB",base) + +if (os.getenv("LMOD_sys") ~= "Darwin") then + prepend_path("LD_LIBRARY_PATH",base) +end diff --git a/rt/slash/mf/Core/admin/default b/rt/slash/mf/Core/admin/default deleted file mode 120000 index 4a4a278b2..000000000 --- a/rt/slash/mf/Core/admin/default +++ /dev/null @@ -1 +0,0 @@ -admin-1.0.lua \ No newline at end of file diff --git a/rt/slash/mf/Core/admin/default b/rt/slash/mf/Core/admin/default new file mode 100644 index 000000000..9b91b10cf --- /dev/null +++ b/rt/slash/mf/Core/admin/default @@ -0,0 +1,3 @@ +-- -*- lua -*- +setenv("ADMIN_MODULE_LOADED","1") +prepend_path('PATH','/usr/sbin/://sbin///') diff --git a/rt/softwarePage/mf/foo/.modulerc.lua b/rt/softwarePage/mf/foo/.modulerc.lua deleted file mode 120000 index 4b13d8624..000000000 --- a/rt/softwarePage/mf/foo/.modulerc.lua +++ /dev/null @@ -1 +0,0 @@ -.modulerc.1.0.lua \ No newline at end of file diff --git a/rt/softwarePage/mf/foo/.modulerc.lua b/rt/softwarePage/mf/foo/.modulerc.lua new file mode 100644 index 000000000..ff79a4459 --- /dev/null +++ b/rt/softwarePage/mf/foo/.modulerc.lua @@ -0,0 +1,2 @@ +module_version("foo/1.0", "default") + diff --git a/rt/spider/mf/Compiler/gcc/4.2.3/python2/2.7.lua b/rt/spider/mf/Compiler/gcc/4.2.3/python2/2.7.lua deleted file mode 120000 index 977e26f1b..000000000 --- a/rt/spider/mf/Compiler/gcc/4.2.3/python2/2.7.lua +++ /dev/null @@ -1 +0,0 @@ -../../../.base/python2/2.7.lua \ No newline at end of file diff --git a/rt/spider/mf/Compiler/gcc/4.2.3/python2/2.7.lua b/rt/spider/mf/Compiler/gcc/4.2.3/python2/2.7.lua new file mode 100644 index 000000000..4da77d990 --- /dev/null +++ b/rt/spider/mf/Compiler/gcc/4.2.3/python2/2.7.lua @@ -0,0 +1 @@ +extensions("numpy/1.16.4", "scipy/1.2.2") diff --git a/rt/spider/mf/Compiler/intel/10.1/gotoblas/.version b/rt/spider/mf/Compiler/intel/10.1/gotoblas/.version deleted file mode 120000 index 9ec9ba9fc..000000000 --- a/rt/spider/mf/Compiler/intel/10.1/gotoblas/.version +++ /dev/null @@ -1 +0,0 @@ -.version-1.32 \ No newline at end of file diff --git a/rt/spider/mf/Compiler/intel/10.1/gotoblas/.version b/rt/spider/mf/Compiler/intel/10.1/gotoblas/.version new file mode 100644 index 000000000..9c66bd0cd --- /dev/null +++ b/rt/spider/mf/Compiler/intel/10.1/gotoblas/.version @@ -0,0 +1,7 @@ +#%Module3.1.6################################################# +## +## Version file for 1.32 of the gotoblas +## File default is copied to .version in modulefiles directory. +## + +set ModulesVersion "1.32" diff --git a/rt/spider/mf/Compiler/intel/10.1/python2/2.7.lua b/rt/spider/mf/Compiler/intel/10.1/python2/2.7.lua deleted file mode 120000 index 977e26f1b..000000000 --- a/rt/spider/mf/Compiler/intel/10.1/python2/2.7.lua +++ /dev/null @@ -1 +0,0 @@ -../../../.base/python2/2.7.lua \ No newline at end of file diff --git a/rt/spider/mf/Compiler/intel/10.1/python2/2.7.lua b/rt/spider/mf/Compiler/intel/10.1/python2/2.7.lua new file mode 100644 index 000000000..4da77d990 --- /dev/null +++ b/rt/spider/mf/Compiler/intel/10.1/python2/2.7.lua @@ -0,0 +1 @@ +extensions("numpy/1.16.4", "scipy/1.2.2") diff --git a/rt/spider/mf/Core/admin/default b/rt/spider/mf/Core/admin/default deleted file mode 120000 index 4a4a278b2..000000000 --- a/rt/spider/mf/Core/admin/default +++ /dev/null @@ -1 +0,0 @@ -admin-1.0.lua \ No newline at end of file diff --git a/rt/spider/mf/Core/admin/default b/rt/spider/mf/Core/admin/default new file mode 100644 index 000000000..9b91b10cf --- /dev/null +++ b/rt/spider/mf/Core/admin/default @@ -0,0 +1,3 @@ +-- -*- lua -*- +setenv("ADMIN_MODULE_LOADED","1") +prepend_path('PATH','/usr/sbin/://sbin///') diff --git a/rt/spider/mf/Core/boost b/rt/spider/mf/Core/boost deleted file mode 120000 index 3b732ee21..000000000 --- a/rt/spider/mf/Core/boost +++ /dev/null @@ -1 +0,0 @@ -../boost \ No newline at end of file diff --git a/rt/spider/mf/Core/boost/1.46.0.lua b/rt/spider/mf/Core/boost/1.46.0.lua new file mode 100644 index 000000000..ce968cd68 --- /dev/null +++ b/rt/spider/mf/Core/boost/1.46.0.lua @@ -0,0 +1,7 @@ +local name = "boost" +local fn = myFileName():gsub(".lua","") +local version = barefilename(fn) +local pkgName = pathJoin(name,version) +local pkgRoot = "/unknown/apps" +local base = pathJoin(pkgRoot, pkgName) +setenv( "TACC_BOOST_DIR", base) diff --git a/rt/spider/mf/Core/boost/1.47.1.lua b/rt/spider/mf/Core/boost/1.47.1.lua new file mode 100644 index 000000000..ce968cd68 --- /dev/null +++ b/rt/spider/mf/Core/boost/1.47.1.lua @@ -0,0 +1,7 @@ +local name = "boost" +local fn = myFileName():gsub(".lua","") +local version = barefilename(fn) +local pkgName = pathJoin(name,version) +local pkgRoot = "/unknown/apps" +local base = pathJoin(pkgRoot, pkgName) +setenv( "TACC_BOOST_DIR", base) diff --git a/rt/spider/mf/Core/boost/1.49.0.lua b/rt/spider/mf/Core/boost/1.49.0.lua new file mode 100644 index 000000000..c4abffdd1 --- /dev/null +++ b/rt/spider/mf/Core/boost/1.49.0.lua @@ -0,0 +1,8 @@ +local name = "boost" +local fn = myFileName():gsub(".lua","") +local version = barefilename(fn) +local pkgName = pathJoin(name,version) +local pkgRoot = "/unknown/apps" +local base = pathJoin(pkgRoot, pkgName) +setenv( "TACC_BOOST_DIR", base) +add_property("arch","offload") diff --git a/rt/spider/mf/Core/gotoblas/default b/rt/spider/mf/Core/gotoblas/default deleted file mode 120000 index 1c8cd10a3..000000000 --- a/rt/spider/mf/Core/gotoblas/default +++ /dev/null @@ -1 +0,0 @@ -1.26.lua \ No newline at end of file diff --git a/rt/spider/mf/Core/gotoblas/default b/rt/spider/mf/Core/gotoblas/default new file mode 100644 index 000000000..c0005392d --- /dev/null +++ b/rt/spider/mf/Core/gotoblas/default @@ -0,0 +1,17 @@ +local version = "1.26" +whatis("Name: Gotoblas") +whatis("Version: " .. version) +whatis("Category: library, mathematics") +whatis("Description: Blas Level 1, 2, 3 routines") +whatis("URL: http://www.tacc.utexas.edu") + +local pkgRoot = "/vol/pkg" + +local pkgName = pathJoin("gotoblas",version) +local base = pathJoin(pkgRoot, pkgName) +setenv("TACC_GOTOBLAS_DIR",base) +setenv("TACC_GOTOBLAS_LIB",base) + +if (os.getenv("LMOD_sys") ~= "Darwin") then + prepend_path("LD_LIBRARY_PATH",base) +end diff --git a/rt/spider/mf/E_Compiler/gcc/4.2/python2/2.7.lua b/rt/spider/mf/E_Compiler/gcc/4.2/python2/2.7.lua deleted file mode 120000 index 977e26f1b..000000000 --- a/rt/spider/mf/E_Compiler/gcc/4.2/python2/2.7.lua +++ /dev/null @@ -1 +0,0 @@ -../../../.base/python2/2.7.lua \ No newline at end of file diff --git a/rt/spider/mf/E_Compiler/gcc/4.2/python2/2.7.lua b/rt/spider/mf/E_Compiler/gcc/4.2/python2/2.7.lua new file mode 100644 index 000000000..c0d29337e --- /dev/null +++ b/rt/spider/mf/E_Compiler/gcc/4.2/python2/2.7.lua @@ -0,0 +1,5 @@ +extensions("numpy/1.16.4", "scipy/1.2.2") + +help([[ +This is the help message for python 2.7 +]]) diff --git a/rt/spider/mf/E_Compiler/intel/11/python2/2.7.lua b/rt/spider/mf/E_Compiler/intel/11/python2/2.7.lua deleted file mode 120000 index 977e26f1b..000000000 --- a/rt/spider/mf/E_Compiler/intel/11/python2/2.7.lua +++ /dev/null @@ -1 +0,0 @@ -../../../.base/python2/2.7.lua \ No newline at end of file diff --git a/rt/spider/mf/E_Compiler/intel/11/python2/2.7.lua b/rt/spider/mf/E_Compiler/intel/11/python2/2.7.lua new file mode 100644 index 000000000..c0d29337e --- /dev/null +++ b/rt/spider/mf/E_Compiler/intel/11/python2/2.7.lua @@ -0,0 +1,5 @@ +extensions("numpy/1.16.4", "scipy/1.2.2") + +help([[ +This is the help message for python 2.7 +]]) diff --git a/rt/swap/mf/Compiler/intel/10.1/gotoblas/.version b/rt/swap/mf/Compiler/intel/10.1/gotoblas/.version deleted file mode 120000 index 9ec9ba9fc..000000000 --- a/rt/swap/mf/Compiler/intel/10.1/gotoblas/.version +++ /dev/null @@ -1 +0,0 @@ -.version-1.32 \ No newline at end of file diff --git a/rt/swap/mf/Compiler/intel/10.1/gotoblas/.version b/rt/swap/mf/Compiler/intel/10.1/gotoblas/.version new file mode 100644 index 000000000..9c66bd0cd --- /dev/null +++ b/rt/swap/mf/Compiler/intel/10.1/gotoblas/.version @@ -0,0 +1,7 @@ +#%Module3.1.6################################################# +## +## Version file for 1.32 of the gotoblas +## File default is copied to .version in modulefiles directory. +## + +set ModulesVersion "1.32" diff --git a/rt/swap/mf/Core/admin/default b/rt/swap/mf/Core/admin/default deleted file mode 120000 index 4a4a278b2..000000000 --- a/rt/swap/mf/Core/admin/default +++ /dev/null @@ -1 +0,0 @@ -admin-1.0.lua \ No newline at end of file diff --git a/rt/swap/mf/Core/admin/default b/rt/swap/mf/Core/admin/default new file mode 100644 index 000000000..9b91b10cf --- /dev/null +++ b/rt/swap/mf/Core/admin/default @@ -0,0 +1,3 @@ +-- -*- lua -*- +setenv("ADMIN_MODULE_LOADED","1") +prepend_path('PATH','/usr/sbin/://sbin///') diff --git a/rt/swap/mf/Core/boost b/rt/swap/mf/Core/boost deleted file mode 120000 index 3b732ee21..000000000 --- a/rt/swap/mf/Core/boost +++ /dev/null @@ -1 +0,0 @@ -../boost \ No newline at end of file diff --git a/rt/swap/mf/Core/boost/1.46.0.lua b/rt/swap/mf/Core/boost/1.46.0.lua new file mode 100644 index 000000000..ce968cd68 --- /dev/null +++ b/rt/swap/mf/Core/boost/1.46.0.lua @@ -0,0 +1,7 @@ +local name = "boost" +local fn = myFileName():gsub(".lua","") +local version = barefilename(fn) +local pkgName = pathJoin(name,version) +local pkgRoot = "/unknown/apps" +local base = pathJoin(pkgRoot, pkgName) +setenv( "TACC_BOOST_DIR", base) diff --git a/rt/swap/mf/Core/boost/1.47.1.lua b/rt/swap/mf/Core/boost/1.47.1.lua new file mode 100644 index 000000000..ce968cd68 --- /dev/null +++ b/rt/swap/mf/Core/boost/1.47.1.lua @@ -0,0 +1,7 @@ +local name = "boost" +local fn = myFileName():gsub(".lua","") +local version = barefilename(fn) +local pkgName = pathJoin(name,version) +local pkgRoot = "/unknown/apps" +local base = pathJoin(pkgRoot, pkgName) +setenv( "TACC_BOOST_DIR", base) diff --git a/rt/swap/mf/Core/boost/1.49.0.lua b/rt/swap/mf/Core/boost/1.49.0.lua new file mode 100644 index 000000000..c4abffdd1 --- /dev/null +++ b/rt/swap/mf/Core/boost/1.49.0.lua @@ -0,0 +1,8 @@ +local name = "boost" +local fn = myFileName():gsub(".lua","") +local version = barefilename(fn) +local pkgName = pathJoin(name,version) +local pkgRoot = "/unknown/apps" +local base = pathJoin(pkgRoot, pkgName) +setenv( "TACC_BOOST_DIR", base) +add_property("arch","offload") diff --git a/rt/swap/mf/Core/gotoblas/default b/rt/swap/mf/Core/gotoblas/default deleted file mode 120000 index 1c8cd10a3..000000000 --- a/rt/swap/mf/Core/gotoblas/default +++ /dev/null @@ -1 +0,0 @@ -1.26.lua \ No newline at end of file diff --git a/rt/swap/mf/Core/gotoblas/default b/rt/swap/mf/Core/gotoblas/default new file mode 100644 index 000000000..c0005392d --- /dev/null +++ b/rt/swap/mf/Core/gotoblas/default @@ -0,0 +1,17 @@ +local version = "1.26" +whatis("Name: Gotoblas") +whatis("Version: " .. version) +whatis("Category: library, mathematics") +whatis("Description: Blas Level 1, 2, 3 routines") +whatis("URL: http://www.tacc.utexas.edu") + +local pkgRoot = "/vol/pkg" + +local pkgName = pathJoin("gotoblas",version) +local base = pathJoin(pkgRoot, pkgName) +setenv("TACC_GOTOBLAS_DIR",base) +setenv("TACC_GOTOBLAS_LIB",base) + +if (os.getenv("LMOD_sys") ~= "Darwin") then + prepend_path("LD_LIBRARY_PATH",base) +end diff --git a/rt/symlink/foo/bar/mf/Core/a/default b/rt/symlink/foo/bar/mf/Core/a/default deleted file mode 120000 index 514e59114..000000000 --- a/rt/symlink/foo/bar/mf/Core/a/default +++ /dev/null @@ -1 +0,0 @@ -1.2.lua \ No newline at end of file diff --git a/rt/symlink/foo/bar/mf/Core/a/default b/rt/symlink/foo/bar/mf/Core/a/default new file mode 100644 index 000000000..71d32cb87 --- /dev/null +++ b/rt/symlink/foo/bar/mf/Core/a/default @@ -0,0 +1 @@ +setenv("VERSION",myModuleVersion()) diff --git a/rt/symlink/foo/bar/mf/Core/b/.version b/rt/symlink/foo/bar/mf/Core/b/.version deleted file mode 120000 index 0363f14bb..000000000 --- a/rt/symlink/foo/bar/mf/Core/b/.version +++ /dev/null @@ -1 +0,0 @@ -.version.1.1 \ No newline at end of file diff --git a/rt/symlink/foo/bar/mf/Core/b/.version b/rt/symlink/foo/bar/mf/Core/b/.version new file mode 100644 index 000000000..6175e12e2 --- /dev/null +++ b/rt/symlink/foo/bar/mf/Core/b/.version @@ -0,0 +1,7 @@ +#%Module3.1.6################################################# +## +## Version file for 7.1 intel compiler. +## File default is copied to .version in modulefiles directory. +## + +set ModulesVersion "1.1" diff --git a/rt/symlink/foo/bar/mf/Core/b/1.2.lua b/rt/symlink/foo/bar/mf/Core/b/1.2.lua deleted file mode 120000 index e357e888c..000000000 --- a/rt/symlink/foo/bar/mf/Core/b/1.2.lua +++ /dev/null @@ -1 +0,0 @@ -1.1.lua \ No newline at end of file diff --git a/rt/symlink/foo/bar/mf/Core/b/1.2.lua b/rt/symlink/foo/bar/mf/Core/b/1.2.lua new file mode 100644 index 000000000..71d32cb87 --- /dev/null +++ b/rt/symlink/foo/bar/mf/Core/b/1.2.lua @@ -0,0 +1 @@ +setenv("VERSION",myModuleVersion()) diff --git a/rt/symlink/foo/bar/mf/Core/boost/1.55.0.lua b/rt/symlink/foo/bar/mf/Core/boost/1.55.0.lua deleted file mode 120000 index 75e35c5da..000000000 --- a/rt/symlink/foo/bar/mf/Core/boost/1.55.0.lua +++ /dev/null @@ -1 +0,0 @@ -../.base/boost/1.55.0.lua \ No newline at end of file diff --git a/rt/symlink/foo/bar/mf/Core/boost/1.55.0.lua b/rt/symlink/foo/bar/mf/Core/boost/1.55.0.lua new file mode 100644 index 000000000..71d32cb87 --- /dev/null +++ b/rt/symlink/foo/bar/mf/Core/boost/1.55.0.lua @@ -0,0 +1 @@ +setenv("VERSION",myModuleVersion()) diff --git a/rt/symlink/foo/bar/mf/Core/boost/1.56.0.lua b/rt/symlink/foo/bar/mf/Core/boost/1.56.0.lua deleted file mode 120000 index 86cd11483..000000000 --- a/rt/symlink/foo/bar/mf/Core/boost/1.56.0.lua +++ /dev/null @@ -1 +0,0 @@ -../.base/boost/1.56.0.lua \ No newline at end of file diff --git a/rt/symlink/foo/bar/mf/Core/boost/1.56.0.lua b/rt/symlink/foo/bar/mf/Core/boost/1.56.0.lua new file mode 100644 index 000000000..71d32cb87 --- /dev/null +++ b/rt/symlink/foo/bar/mf/Core/boost/1.56.0.lua @@ -0,0 +1 @@ +setenv("VERSION",myModuleVersion()) diff --git a/rt/symlink/foo/bar/mf/Core/boost/default b/rt/symlink/foo/bar/mf/Core/boost/default deleted file mode 120000 index ff539008d..000000000 --- a/rt/symlink/foo/bar/mf/Core/boost/default +++ /dev/null @@ -1 +0,0 @@ -1.55.0.lua \ No newline at end of file diff --git a/rt/symlink/foo/bar/mf/Core/boost/default b/rt/symlink/foo/bar/mf/Core/boost/default new file mode 100644 index 000000000..71d32cb87 --- /dev/null +++ b/rt/symlink/foo/bar/mf/Core/boost/default @@ -0,0 +1 @@ +setenv("VERSION",myModuleVersion()) diff --git a/rt/symlink/foo/bar/mf/Core/intel/default b/rt/symlink/foo/bar/mf/Core/intel/default deleted file mode 120000 index ec496eedd..000000000 --- a/rt/symlink/foo/bar/mf/Core/intel/default +++ /dev/null @@ -1 +0,0 @@ -12.1.5.lua \ No newline at end of file diff --git a/rt/symlink/foo/bar/mf/Core/intel/default b/rt/symlink/foo/bar/mf/Core/intel/default new file mode 100644 index 000000000..23a20c960 --- /dev/null +++ b/rt/symlink/foo/bar/mf/Core/intel/default @@ -0,0 +1 @@ +setenv("MY_VERSION", myModuleVersion()) diff --git a/rt/symlink/foo/bar/mf/Core/mv2/2.1rc1.lua b/rt/symlink/foo/bar/mf/Core/mv2/2.1rc1.lua deleted file mode 120000 index 53787f31d..000000000 --- a/rt/symlink/foo/bar/mf/Core/mv2/2.1rc1.lua +++ /dev/null @@ -1 +0,0 @@ -2.1.lua \ No newline at end of file diff --git a/rt/symlink/foo/bar/mf/Core/mv2/2.1rc1.lua b/rt/symlink/foo/bar/mf/Core/mv2/2.1rc1.lua new file mode 100644 index 000000000..71d32cb87 --- /dev/null +++ b/rt/symlink/foo/bar/mf/Core/mv2/2.1rc1.lua @@ -0,0 +1 @@ +setenv("VERSION",myModuleVersion()) diff --git a/rt/symlink/foo/bar/mf/Core/mv2/2.1rc2.lua b/rt/symlink/foo/bar/mf/Core/mv2/2.1rc2.lua deleted file mode 120000 index 53787f31d..000000000 --- a/rt/symlink/foo/bar/mf/Core/mv2/2.1rc2.lua +++ /dev/null @@ -1 +0,0 @@ -2.1.lua \ No newline at end of file diff --git a/rt/symlink/foo/bar/mf/Core/mv2/2.1rc2.lua b/rt/symlink/foo/bar/mf/Core/mv2/2.1rc2.lua new file mode 100644 index 000000000..71d32cb87 --- /dev/null +++ b/rt/symlink/foo/bar/mf/Core/mv2/2.1rc2.lua @@ -0,0 +1 @@ +setenv("VERSION",myModuleVersion()) diff --git a/rt/symlink/foo/bar/mf/Core/mv2/default b/rt/symlink/foo/bar/mf/Core/mv2/default deleted file mode 120000 index 27264c644..000000000 --- a/rt/symlink/foo/bar/mf/Core/mv2/default +++ /dev/null @@ -1 +0,0 @@ -2.1rc2.lua \ No newline at end of file diff --git a/rt/symlink/foo/bar/mf/Core/mv2/default b/rt/symlink/foo/bar/mf/Core/mv2/default new file mode 100644 index 000000000..71d32cb87 --- /dev/null +++ b/rt/symlink/foo/bar/mf/Core/mv2/default @@ -0,0 +1 @@ +setenv("VERSION",myModuleVersion()) diff --git a/rt/symlink/mf b/rt/symlink/mf deleted file mode 120000 index 2eef61fa9..000000000 --- a/rt/symlink/mf +++ /dev/null @@ -1 +0,0 @@ -foo/bar/mf \ No newline at end of file diff --git a/rt/symlink/mf/Core/.base/boost/1.55.0.lua b/rt/symlink/mf/Core/.base/boost/1.55.0.lua new file mode 100644 index 000000000..71d32cb87 --- /dev/null +++ b/rt/symlink/mf/Core/.base/boost/1.55.0.lua @@ -0,0 +1 @@ +setenv("VERSION",myModuleVersion()) diff --git a/rt/symlink/mf/Core/.base/boost/1.56.0.lua b/rt/symlink/mf/Core/.base/boost/1.56.0.lua new file mode 100644 index 000000000..71d32cb87 --- /dev/null +++ b/rt/symlink/mf/Core/.base/boost/1.56.0.lua @@ -0,0 +1 @@ +setenv("VERSION",myModuleVersion()) diff --git a/rt/symlink/mf/Core/a/1.1.lua b/rt/symlink/mf/Core/a/1.1.lua new file mode 100644 index 000000000..71d32cb87 --- /dev/null +++ b/rt/symlink/mf/Core/a/1.1.lua @@ -0,0 +1 @@ +setenv("VERSION",myModuleVersion()) diff --git a/rt/symlink/mf/Core/a/1.2.lua b/rt/symlink/mf/Core/a/1.2.lua new file mode 100644 index 000000000..71d32cb87 --- /dev/null +++ b/rt/symlink/mf/Core/a/1.2.lua @@ -0,0 +1 @@ +setenv("VERSION",myModuleVersion()) diff --git a/rt/symlink/mf/Core/a/default b/rt/symlink/mf/Core/a/default new file mode 100644 index 000000000..71d32cb87 --- /dev/null +++ b/rt/symlink/mf/Core/a/default @@ -0,0 +1 @@ +setenv("VERSION",myModuleVersion()) diff --git a/rt/symlink/mf/Core/b/.version b/rt/symlink/mf/Core/b/.version new file mode 100644 index 000000000..6175e12e2 --- /dev/null +++ b/rt/symlink/mf/Core/b/.version @@ -0,0 +1,7 @@ +#%Module3.1.6################################################# +## +## Version file for 7.1 intel compiler. +## File default is copied to .version in modulefiles directory. +## + +set ModulesVersion "1.1" diff --git a/rt/symlink/mf/Core/b/.version.1.1 b/rt/symlink/mf/Core/b/.version.1.1 new file mode 100644 index 000000000..6175e12e2 --- /dev/null +++ b/rt/symlink/mf/Core/b/.version.1.1 @@ -0,0 +1,7 @@ +#%Module3.1.6################################################# +## +## Version file for 7.1 intel compiler. +## File default is copied to .version in modulefiles directory. +## + +set ModulesVersion "1.1" diff --git a/rt/symlink/mf/Core/b/1.1.lua b/rt/symlink/mf/Core/b/1.1.lua new file mode 100644 index 000000000..71d32cb87 --- /dev/null +++ b/rt/symlink/mf/Core/b/1.1.lua @@ -0,0 +1 @@ +setenv("VERSION",myModuleVersion()) diff --git a/rt/symlink/mf/Core/b/1.2.lua b/rt/symlink/mf/Core/b/1.2.lua new file mode 100644 index 000000000..71d32cb87 --- /dev/null +++ b/rt/symlink/mf/Core/b/1.2.lua @@ -0,0 +1 @@ +setenv("VERSION",myModuleVersion()) diff --git a/rt/symlink/mf/Core/bad_symlink/1.0.lua b/rt/symlink/mf/Core/bad_symlink/1.0.lua new file mode 100644 index 000000000..480a34acc --- /dev/null +++ b/rt/symlink/mf/Core/bad_symlink/1.0.lua @@ -0,0 +1,7 @@ +local a = { "good.text", "bad1.text", "bad2.text"} + +for i = 1,#a do + local result = isFile(a[i]) + io.stderr:write(a[i].." "..tostring(result).."\n") +end + diff --git a/rt/symlink/mf/Core/boost/1.55.0.lua b/rt/symlink/mf/Core/boost/1.55.0.lua new file mode 100644 index 000000000..71d32cb87 --- /dev/null +++ b/rt/symlink/mf/Core/boost/1.55.0.lua @@ -0,0 +1 @@ +setenv("VERSION",myModuleVersion()) diff --git a/rt/symlink/mf/Core/boost/1.56.0.lua b/rt/symlink/mf/Core/boost/1.56.0.lua new file mode 100644 index 000000000..71d32cb87 --- /dev/null +++ b/rt/symlink/mf/Core/boost/1.56.0.lua @@ -0,0 +1 @@ +setenv("VERSION",myModuleVersion()) diff --git a/rt/symlink/mf/Core/boost/default b/rt/symlink/mf/Core/boost/default new file mode 100644 index 000000000..71d32cb87 --- /dev/null +++ b/rt/symlink/mf/Core/boost/default @@ -0,0 +1 @@ +setenv("VERSION",myModuleVersion()) diff --git a/rt/symlink/mf/Core/intel/12.1.5.lua b/rt/symlink/mf/Core/intel/12.1.5.lua new file mode 100644 index 000000000..23a20c960 --- /dev/null +++ b/rt/symlink/mf/Core/intel/12.1.5.lua @@ -0,0 +1 @@ +setenv("MY_VERSION", myModuleVersion()) diff --git a/rt/symlink/mf/Core/intel/13.1.lua b/rt/symlink/mf/Core/intel/13.1.lua new file mode 100644 index 000000000..23a20c960 --- /dev/null +++ b/rt/symlink/mf/Core/intel/13.1.lua @@ -0,0 +1 @@ +setenv("MY_VERSION", myModuleVersion()) diff --git a/rt/symlink/mf/Core/intel/14.0.2.lua b/rt/symlink/mf/Core/intel/14.0.2.lua new file mode 100644 index 000000000..23a20c960 --- /dev/null +++ b/rt/symlink/mf/Core/intel/14.0.2.lua @@ -0,0 +1 @@ +setenv("MY_VERSION", myModuleVersion()) diff --git a/rt/symlink/mf/Core/intel/default b/rt/symlink/mf/Core/intel/default new file mode 100644 index 000000000..23a20c960 --- /dev/null +++ b/rt/symlink/mf/Core/intel/default @@ -0,0 +1 @@ +setenv("MY_VERSION", myModuleVersion()) diff --git a/rt/symlink/mf/Core/mv2/2.0.lua b/rt/symlink/mf/Core/mv2/2.0.lua new file mode 100644 index 000000000..71d32cb87 --- /dev/null +++ b/rt/symlink/mf/Core/mv2/2.0.lua @@ -0,0 +1 @@ +setenv("VERSION",myModuleVersion()) diff --git a/rt/symlink/mf/Core/mv2/2.1.lua b/rt/symlink/mf/Core/mv2/2.1.lua new file mode 100644 index 000000000..71d32cb87 --- /dev/null +++ b/rt/symlink/mf/Core/mv2/2.1.lua @@ -0,0 +1 @@ +setenv("VERSION",myModuleVersion()) diff --git a/rt/symlink/mf/Core/mv2/2.1rc1.lua b/rt/symlink/mf/Core/mv2/2.1rc1.lua new file mode 100644 index 000000000..71d32cb87 --- /dev/null +++ b/rt/symlink/mf/Core/mv2/2.1rc1.lua @@ -0,0 +1 @@ +setenv("VERSION",myModuleVersion()) diff --git a/rt/symlink/mf/Core/mv2/2.1rc2.lua b/rt/symlink/mf/Core/mv2/2.1rc2.lua new file mode 100644 index 000000000..71d32cb87 --- /dev/null +++ b/rt/symlink/mf/Core/mv2/2.1rc2.lua @@ -0,0 +1 @@ +setenv("VERSION",myModuleVersion()) diff --git a/rt/symlink/mf/Core/mv2/2.2.lua b/rt/symlink/mf/Core/mv2/2.2.lua new file mode 100644 index 000000000..71d32cb87 --- /dev/null +++ b/rt/symlink/mf/Core/mv2/2.2.lua @@ -0,0 +1 @@ +setenv("VERSION",myModuleVersion()) diff --git a/rt/symlink/mf/Core/mv2/default b/rt/symlink/mf/Core/mv2/default new file mode 100644 index 000000000..71d32cb87 --- /dev/null +++ b/rt/symlink/mf/Core/mv2/default @@ -0,0 +1 @@ +setenv("VERSION",myModuleVersion()) diff --git a/rt/tabcompl/mf/base/OpenBLAS/0.2.6-gompi-1.4.10-LAPACK-3.4.2 b/rt/tabcompl/mf/base/OpenBLAS/0.2.6-gompi-1.4.10-LAPACK-3.4.2 deleted file mode 120000 index c3ce481bd..000000000 --- a/rt/tabcompl/mf/base/OpenBLAS/0.2.6-gompi-1.4.10-LAPACK-3.4.2 +++ /dev/null @@ -1 +0,0 @@ -../../all/OpenBLAS/0.2.6-gompi-1.4.10-LAPACK-3.4.2 \ No newline at end of file diff --git a/rt/tabcompl/mf/base/OpenBLAS/0.2.6-gompi-1.4.10-LAPACK-3.4.2 b/rt/tabcompl/mf/base/OpenBLAS/0.2.6-gompi-1.4.10-LAPACK-3.4.2 new file mode 100644 index 000000000..b9feb6a6e --- /dev/null +++ b/rt/tabcompl/mf/base/OpenBLAS/0.2.6-gompi-1.4.10-LAPACK-3.4.2 @@ -0,0 +1,26 @@ +#%Module + +proc ModulesHelp { } { + puts stderr { OpenBLAS is an optimized BLAS library based on GotoBLAS2 1.13 BSD version. - Homepage: http://xianyi.github.com/OpenBLAS/ +} +} + +module-whatis {OpenBLAS is an optimized BLAS library based on GotoBLAS2 1.13 BSD version. - Homepage: http://xianyi.github.com/OpenBLAS/} + +set root /net/gmi.oeaw.ac.at/software/mendel/29_04_2013/software/OpenBLAS/0.2.6-gompi-1.4.10-LAPACK-3.4.2 + +conflict OpenBLAS + +if { ![is-loaded gompi/1.4.10] } { + module load gompi/1.4.10 +} + +prepend-path CPATH $root/include +prepend-path LD_LIBRARY_PATH $root/lib + +setenv EBROOTOPENBLAS "$root" +setenv EBVERSIONOPENBLAS "0.2.6" +setenv EBDEVELOPENBLAS "$root/easybuild/OpenBLAS-0.2.6-gompi-1.4.10-LAPACK-3.4.2-easybuild-devel" + + +# built with EasyBuild version 1.3.0 diff --git a/rt/tabcompl/mf/bio/AMOS/3.1.0-goolf-1.4.10 b/rt/tabcompl/mf/bio/AMOS/3.1.0-goolf-1.4.10 deleted file mode 120000 index 1a7ad25ee..000000000 --- a/rt/tabcompl/mf/bio/AMOS/3.1.0-goolf-1.4.10 +++ /dev/null @@ -1 +0,0 @@ -../../all/AMOS/3.1.0-goolf-1.4.10 \ No newline at end of file diff --git a/rt/tabcompl/mf/bio/AMOS/3.1.0-goolf-1.4.10 b/rt/tabcompl/mf/bio/AMOS/3.1.0-goolf-1.4.10 new file mode 100644 index 000000000..2d04da011 --- /dev/null +++ b/rt/tabcompl/mf/bio/AMOS/3.1.0-goolf-1.4.10 @@ -0,0 +1,35 @@ +#%Module + +proc ModulesHelp { } { + puts stderr { The AMOS consortium is committed to the development of open-source whole genome assembly software - Homepage: http://sourceforge.net/apps/mediawiki/amos/index.php?title=AMOS +} +} + +module-whatis {The AMOS consortium is committed to the development of open-source whole genome assembly software - Homepage: http://sourceforge.net/apps/mediawiki/amos/index.php?title=AMOS} + +set root /net/gmi.oeaw.ac.at/software/mendel/29_04_2013/software/AMOS/3.1.0-goolf-1.4.10 + +conflict AMOS + +if { ![is-loaded goolf/1.4.10] } { + module load goolf/1.4.10 +} + +if { ![is-loaded expat/2.1.0-goolf-1.4.10] } { + module load expat/2.1.0-goolf-1.4.10 +} + +if { ![is-loaded MUMmer/3.23-goolf-1.4.10] } { + module load MUMmer/3.23-goolf-1.4.10 +} + +prepend-path CPATH $root/include +prepend-path LD_LIBRARY_PATH $root/lib +prepend-path PATH $root/bin + +setenv EBROOTAMOS "$root" +setenv EBVERSIONAMOS "3.1.0" +setenv EBDEVELAMOS "$root/easybuild/AMOS-3.1.0-goolf-1.4.10-easybuild-devel" + + +# built with EasyBuild version 1.3.0 diff --git a/rt/tabcompl/mf/bio/BFAST/0.7.0a-goolf-1.4.10 b/rt/tabcompl/mf/bio/BFAST/0.7.0a-goolf-1.4.10 deleted file mode 120000 index 66b2858ad..000000000 --- a/rt/tabcompl/mf/bio/BFAST/0.7.0a-goolf-1.4.10 +++ /dev/null @@ -1 +0,0 @@ -../../all/BFAST/0.7.0a-goolf-1.4.10 \ No newline at end of file diff --git a/rt/tabcompl/mf/bio/BFAST/0.7.0a-goolf-1.4.10 b/rt/tabcompl/mf/bio/BFAST/0.7.0a-goolf-1.4.10 new file mode 100644 index 000000000..f695267f2 --- /dev/null +++ b/rt/tabcompl/mf/bio/BFAST/0.7.0a-goolf-1.4.10 @@ -0,0 +1,41 @@ +#%Module + +proc ModulesHelp { } { + puts stderr { BFAST facilitates the fast and accurate mapping of short reads to reference sequences. + Some advantages of BFAST include: + 1) Speed: enables billions of short reads to be mapped quickly. + 2) Accuracy: A priori probabilities for mapping reads with defined set of variants. + 3) An easy way to measurably tune accuracy at the expense of speed. - Homepage: http://bfast.sourceforge.net/ +} +} + +module-whatis {BFAST facilitates the fast and accurate mapping of short reads to reference sequences. + Some advantages of BFAST include: + 1) Speed: enables billions of short reads to be mapped quickly. + 2) Accuracy: A priori probabilities for mapping reads with defined set of variants. + 3) An easy way to measurably tune accuracy at the expense of speed. - Homepage: http://bfast.sourceforge.net/} + +set root /net/gmi.oeaw.ac.at/software/mendel/29_04_2013/software/BFAST/0.7.0a-goolf-1.4.10 + +conflict BFAST + +if { ![is-loaded goolf/1.4.10] } { + module load goolf/1.4.10 +} + +if { ![is-loaded bzip2/1.0.6-goolf-1.4.10] } { + module load bzip2/1.0.6-goolf-1.4.10 +} + +if { ![is-loaded zlib/1.2.8-goolf-1.4.10] } { + module load zlib/1.2.8-goolf-1.4.10 +} + +prepend-path PATH $root/bin + +setenv EBROOTBFAST "$root" +setenv EBVERSIONBFAST "0.7.0a" +setenv EBDEVELBFAST "$root/easybuild/BFAST-0.7.0a-goolf-1.4.10-easybuild-devel" + + +# built with EasyBuild version 1.6.0 diff --git a/rt/tabcompl/mf/bio/BamTools/2.2.3-goolf-1.4.10 b/rt/tabcompl/mf/bio/BamTools/2.2.3-goolf-1.4.10 deleted file mode 120000 index d5f0861e6..000000000 --- a/rt/tabcompl/mf/bio/BamTools/2.2.3-goolf-1.4.10 +++ /dev/null @@ -1 +0,0 @@ -../../all/BamTools/2.2.3-goolf-1.4.10 \ No newline at end of file diff --git a/rt/tabcompl/mf/bio/BamTools/2.2.3-goolf-1.4.10 b/rt/tabcompl/mf/bio/BamTools/2.2.3-goolf-1.4.10 new file mode 100644 index 000000000..85db9ec32 --- /dev/null +++ b/rt/tabcompl/mf/bio/BamTools/2.2.3-goolf-1.4.10 @@ -0,0 +1,31 @@ +#%Module + +proc ModulesHelp { } { + puts stderr { BamTools provides both a programmer's API and an end-user's toolkit for handling BAM files. - Homepage: https://github.com/pezmaster31/bamtools +} +} + +module-whatis {BamTools provides both a programmer's API and an end-user's toolkit for handling BAM files. - Homepage: https://github.com/pezmaster31/bamtools} + +set root /net/gmi.oeaw.ac.at/software/mendel/29_04_2013/software/BamTools/2.2.3-goolf-1.4.10 + +conflict BamTools + +if { ![is-loaded goolf/1.4.10] } { + module load goolf/1.4.10 +} + +if { ![is-loaded zlib/1.2.8-goolf-1.4.10] } { + module load zlib/1.2.8-goolf-1.4.10 +} + +prepend-path CPATH $root/include +prepend-path LD_LIBRARY_PATH $root/lib +prepend-path PATH $root/bin + +setenv EBROOTBAMTOOLS "$root" +setenv EBVERSIONBAMTOOLS "2.2.3" +setenv EBDEVELBAMTOOLS "$root/easybuild/BamTools-2.2.3-goolf-1.4.10-easybuild-devel" + + +# built with EasyBuild version 1.6.0 diff --git a/rt/tabcompl/mf/bio/Bowtie/1.0.0-goolf-1.4.10 b/rt/tabcompl/mf/bio/Bowtie/1.0.0-goolf-1.4.10 deleted file mode 120000 index f9ba0444c..000000000 --- a/rt/tabcompl/mf/bio/Bowtie/1.0.0-goolf-1.4.10 +++ /dev/null @@ -1 +0,0 @@ -../../all/Bowtie/1.0.0-goolf-1.4.10 \ No newline at end of file diff --git a/rt/tabcompl/mf/bio/Bowtie/1.0.0-goolf-1.4.10 b/rt/tabcompl/mf/bio/Bowtie/1.0.0-goolf-1.4.10 new file mode 100644 index 000000000..54a40f7b8 --- /dev/null +++ b/rt/tabcompl/mf/bio/Bowtie/1.0.0-goolf-1.4.10 @@ -0,0 +1,29 @@ +#%Module + +proc ModulesHelp { } { + puts stderr { Bowtie is an ultrafast, memory-efficient short read aligner. +It aligns short DNA sequences (reads) to the human genome. + - Homepage: http://bowtie-bio.sourceforge.net/index.shtml +} +} + +module-whatis {Bowtie is an ultrafast, memory-efficient short read aligner. +It aligns short DNA sequences (reads) to the human genome. + - Homepage: http://bowtie-bio.sourceforge.net/index.shtml} + +set root /net/gmi.oeaw.ac.at/software/mendel/29_04_2013/software/Bowtie/1.0.0-goolf-1.4.10 + +conflict Bowtie + +if { ![is-loaded goolf/1.4.10] } { + module load goolf/1.4.10 +} + +prepend-path PATH $root/bin + +setenv EBROOTBOWTIE "$root" +setenv EBVERSIONBOWTIE "1.0.0" +setenv EBDEVELBOWTIE "$root/easybuild/Bowtie-1.0.0-goolf-1.4.10-easybuild-devel" + + +# built with EasyBuild version 1.4.0 diff --git a/rt/tabcompl/mf/bio/Bowtie2/2.0.2-goolf-1.4.10 b/rt/tabcompl/mf/bio/Bowtie2/2.0.2-goolf-1.4.10 deleted file mode 120000 index c87e1af56..000000000 --- a/rt/tabcompl/mf/bio/Bowtie2/2.0.2-goolf-1.4.10 +++ /dev/null @@ -1 +0,0 @@ -../../all/Bowtie2/2.0.2-goolf-1.4.10 \ No newline at end of file diff --git a/rt/tabcompl/mf/bio/Bowtie2/2.0.2-goolf-1.4.10 b/rt/tabcompl/mf/bio/Bowtie2/2.0.2-goolf-1.4.10 new file mode 100644 index 000000000..c002312c0 --- /dev/null +++ b/rt/tabcompl/mf/bio/Bowtie2/2.0.2-goolf-1.4.10 @@ -0,0 +1,27 @@ +#%Module + +proc ModulesHelp { } { + puts stderr { Bowtie 2 is an ultrafast and memory-efficient tool +for aligning sequencing reads to long reference sequences. - Homepage: http://bowtie-bio.sourceforge.net/bowtie2/index.shtml +} +} + +module-whatis {Bowtie 2 is an ultrafast and memory-efficient tool +for aligning sequencing reads to long reference sequences. - Homepage: http://bowtie-bio.sourceforge.net/bowtie2/index.shtml} + +set root /net/gmi.oeaw.ac.at/software/mendel/29_04_2013/software/Bowtie2/2.0.2-goolf-1.4.10 + +conflict Bowtie2 + +if { ![is-loaded goolf/1.4.10] } { + module load goolf/1.4.10 +} + +prepend-path PATH $root/bin + +setenv EBROOTBOWTIE2 "$root" +setenv EBVERSIONBOWTIE2 "2.0.2" +setenv EBDEVELBOWTIE2 "$root/easybuild/Bowtie2-2.0.2-goolf-1.4.10-easybuild-devel" + + +# built with EasyBuild version 1.3.0 diff --git a/rt/tabcompl/mf/bio/Bowtie2/2.0.2-ictce-5.3.0 b/rt/tabcompl/mf/bio/Bowtie2/2.0.2-ictce-5.3.0 deleted file mode 120000 index a0aae2c92..000000000 --- a/rt/tabcompl/mf/bio/Bowtie2/2.0.2-ictce-5.3.0 +++ /dev/null @@ -1 +0,0 @@ -../../all/Bowtie2/2.0.2-ictce-5.3.0 \ No newline at end of file diff --git a/rt/tabcompl/mf/bio/Bowtie2/2.0.2-ictce-5.3.0 b/rt/tabcompl/mf/bio/Bowtie2/2.0.2-ictce-5.3.0 new file mode 100644 index 000000000..16bfc3cd3 --- /dev/null +++ b/rt/tabcompl/mf/bio/Bowtie2/2.0.2-ictce-5.3.0 @@ -0,0 +1,27 @@ +#%Module + +proc ModulesHelp { } { + puts stderr { Bowtie 2 is an ultrafast and memory-efficient tool + for aligning sequencing reads to long reference sequences. - Homepage: http://bowtie-bio.sourceforge.net/bowtie2/index.shtml +} +} + +module-whatis {Bowtie 2 is an ultrafast and memory-efficient tool + for aligning sequencing reads to long reference sequences. - Homepage: http://bowtie-bio.sourceforge.net/bowtie2/index.shtml} + +set root /net/gmi.oeaw.ac.at/software/mendel/29_04_2013/software/Bowtie2/2.0.2-ictce-5.3.0 + +conflict Bowtie2 + +if { ![is-loaded ictce/5.3.0] } { + module load ictce/5.3.0 +} + +prepend-path PATH $root/bin + +setenv EBROOTBOWTIE2 "$root" +setenv EBVERSIONBOWTIE2 "2.0.2" +setenv EBDEVELBOWTIE2 "$root/easybuild/Bowtie2-2.0.2-ictce-5.3.0-easybuild-devel" + + +# built with EasyBuild version 1.4.0 diff --git a/rt/tabcompl/mf/bio/Bowtie2/2.0.5-ictce-5.3.0 b/rt/tabcompl/mf/bio/Bowtie2/2.0.5-ictce-5.3.0 deleted file mode 120000 index fe7ddf3ad..000000000 --- a/rt/tabcompl/mf/bio/Bowtie2/2.0.5-ictce-5.3.0 +++ /dev/null @@ -1 +0,0 @@ -../../all/Bowtie2/2.0.5-ictce-5.3.0 \ No newline at end of file diff --git a/rt/tabcompl/mf/bio/Bowtie2/2.0.5-ictce-5.3.0 b/rt/tabcompl/mf/bio/Bowtie2/2.0.5-ictce-5.3.0 new file mode 100644 index 000000000..fd0257a4f --- /dev/null +++ b/rt/tabcompl/mf/bio/Bowtie2/2.0.5-ictce-5.3.0 @@ -0,0 +1,27 @@ +#%Module + +proc ModulesHelp { } { + puts stderr { Bowtie 2 is an ultrafast and memory-efficient tool + for aligning sequencing reads to long reference sequences. - Homepage: http://bowtie-bio.sourceforge.net/bowtie2/index.shtml +} +} + +module-whatis {Bowtie 2 is an ultrafast and memory-efficient tool + for aligning sequencing reads to long reference sequences. - Homepage: http://bowtie-bio.sourceforge.net/bowtie2/index.shtml} + +set root /net/gmi.oeaw.ac.at/software/mendel/29_04_2013/software/Bowtie2/2.0.5-ictce-5.3.0 + +conflict Bowtie2 + +if { ![is-loaded ictce/5.3.0] } { + module load ictce/5.3.0 +} + +prepend-path PATH $root/bin + +setenv EBROOTBOWTIE2 "$root" +setenv EBVERSIONBOWTIE2 "2.0.5" +setenv EBDEVELBOWTIE2 "$root/easybuild/Bowtie2-2.0.5-ictce-5.3.0-easybuild-devel" + + +# built with EasyBuild version 1.4.0 diff --git a/rt/tabcompl/mf/bio/Bowtie2/2.1.0-goolf-1.4.10 b/rt/tabcompl/mf/bio/Bowtie2/2.1.0-goolf-1.4.10 deleted file mode 120000 index 943383381..000000000 --- a/rt/tabcompl/mf/bio/Bowtie2/2.1.0-goolf-1.4.10 +++ /dev/null @@ -1 +0,0 @@ -../../all/Bowtie2/2.1.0-goolf-1.4.10 \ No newline at end of file diff --git a/rt/tabcompl/mf/bio/Bowtie2/2.1.0-goolf-1.4.10 b/rt/tabcompl/mf/bio/Bowtie2/2.1.0-goolf-1.4.10 new file mode 100644 index 000000000..e81a1dd23 --- /dev/null +++ b/rt/tabcompl/mf/bio/Bowtie2/2.1.0-goolf-1.4.10 @@ -0,0 +1,27 @@ +#%Module + +proc ModulesHelp { } { + puts stderr { Bowtie 2 is an ultrafast and memory-efficient tool +for aligning sequencing reads to long reference sequences. - Homepage: http://bowtie-bio.sourceforge.net/bowtie2/index.shtml +} +} + +module-whatis {Bowtie 2 is an ultrafast and memory-efficient tool +for aligning sequencing reads to long reference sequences. - Homepage: http://bowtie-bio.sourceforge.net/bowtie2/index.shtml} + +set root /net/gmi.oeaw.ac.at/software/mendel/29_04_2013/software/Bowtie2/2.1.0-goolf-1.4.10 + +conflict Bowtie2 + +if { ![is-loaded goolf/1.4.10] } { + module load goolf/1.4.10 +} + +prepend-path PATH $root/bin + +setenv EBROOTBOWTIE2 "$root" +setenv EBVERSIONBOWTIE2 "2.1.0" +setenv EBDEVELBOWTIE2 "$root/easybuild/Bowtie2-2.1.0-goolf-1.4.10-easybuild-devel" + + +# built with EasyBuild version 1.3.0 diff --git a/rt/tabcompl/mf/bio/Cufflinks/2.0.2-goolf-1.4.10 b/rt/tabcompl/mf/bio/Cufflinks/2.0.2-goolf-1.4.10 deleted file mode 120000 index 5f44bdc9b..000000000 --- a/rt/tabcompl/mf/bio/Cufflinks/2.0.2-goolf-1.4.10 +++ /dev/null @@ -1 +0,0 @@ -../../all/Cufflinks/2.0.2-goolf-1.4.10 \ No newline at end of file diff --git a/rt/tabcompl/mf/bio/Cufflinks/2.0.2-goolf-1.4.10 b/rt/tabcompl/mf/bio/Cufflinks/2.0.2-goolf-1.4.10 new file mode 100644 index 000000000..edc2d57f8 --- /dev/null +++ b/rt/tabcompl/mf/bio/Cufflinks/2.0.2-goolf-1.4.10 @@ -0,0 +1,41 @@ +#%Module + +proc ModulesHelp { } { + puts stderr { Transcript assembly, differential expression, and differential regulation for RNA-Seq - Homepage: http://cufflinks.cbcb.umd.edu/ +} +} + +module-whatis {Transcript assembly, differential expression, and differential regulation for RNA-Seq - Homepage: http://cufflinks.cbcb.umd.edu/} + +set root /net/gmi.oeaw.ac.at/software/mendel/29_04_2013/software/Cufflinks/2.0.2-goolf-1.4.10 + +conflict Cufflinks + +if { ![is-loaded goolf/1.4.10] } { + module load goolf/1.4.10 +} + +if { ![is-loaded Boost/1.51.0-goolf-1.4.10-Python-2.7.3] } { + module load Boost/1.51.0-goolf-1.4.10-Python-2.7.3 +} + +if { ![is-loaded SAMtools/0.1.18-goolf-1.4.10] } { + module load SAMtools/0.1.18-goolf-1.4.10 +} + +if { ![is-loaded Eigen/3.1.1-goolf-1.4.10] } { + module load Eigen/3.1.1-goolf-1.4.10 +} + +if { ![is-loaded zlib/1.2.7-goolf-1.4.10] } { + module load zlib/1.2.7-goolf-1.4.10 +} + +prepend-path PATH $root/bin + +setenv EBROOTCUFFLINKS "$root" +setenv EBVERSIONCUFFLINKS "2.0.2" +setenv EBDEVELCUFFLINKS "$root/easybuild/Cufflinks-2.0.2-goolf-1.4.10-easybuild-devel" + + +# built with EasyBuild version 1.3.0 diff --git a/rt/tabcompl/mf/bio/Cufflinks/2.1.1-goolf-1.4.10 b/rt/tabcompl/mf/bio/Cufflinks/2.1.1-goolf-1.4.10 deleted file mode 120000 index 3265897b5..000000000 --- a/rt/tabcompl/mf/bio/Cufflinks/2.1.1-goolf-1.4.10 +++ /dev/null @@ -1 +0,0 @@ -../../all/Cufflinks/2.1.1-goolf-1.4.10 \ No newline at end of file diff --git a/rt/tabcompl/mf/bio/Cufflinks/2.1.1-goolf-1.4.10 b/rt/tabcompl/mf/bio/Cufflinks/2.1.1-goolf-1.4.10 new file mode 100644 index 000000000..d64db2bd3 --- /dev/null +++ b/rt/tabcompl/mf/bio/Cufflinks/2.1.1-goolf-1.4.10 @@ -0,0 +1,41 @@ +#%Module + +proc ModulesHelp { } { + puts stderr { Transcript assembly, differential expression, and differential regulation for RNA-Seq - Homepage: http://cufflinks.cbcb.umd.edu/ +} +} + +module-whatis {Transcript assembly, differential expression, and differential regulation for RNA-Seq - Homepage: http://cufflinks.cbcb.umd.edu/} + +set root /net/gmi.oeaw.ac.at/software/mendel/29_04_2013/software/Cufflinks/2.1.1-goolf-1.4.10 + +conflict Cufflinks + +if { ![is-loaded goolf/1.4.10] } { + module load goolf/1.4.10 +} + +if { ![is-loaded Boost/1.51.0-goolf-1.4.10-Python-2.7.3] } { + module load Boost/1.51.0-goolf-1.4.10-Python-2.7.3 +} + +if { ![is-loaded SAMtools/0.1.18-goolf-1.4.10] } { + module load SAMtools/0.1.18-goolf-1.4.10 +} + +if { ![is-loaded Eigen/3.1.1-goolf-1.4.10] } { + module load Eigen/3.1.1-goolf-1.4.10 +} + +if { ![is-loaded zlib/1.2.8-goolf-1.4.10] } { + module load zlib/1.2.8-goolf-1.4.10 +} + +prepend-path PATH $root/bin + +setenv EBROOTCUFFLINKS "$root" +setenv EBVERSIONCUFFLINKS "2.1.1" +setenv EBDEVELCUFFLINKS "$root/easybuild/Cufflinks-2.1.1-goolf-1.4.10-easybuild-devel" + + +# built with EasyBuild version 1.6.0 diff --git a/rt/tabcompl/mf/bio/GATK/2.5-2-Java-1.7.0_10 b/rt/tabcompl/mf/bio/GATK/2.5-2-Java-1.7.0_10 deleted file mode 120000 index be636bcce..000000000 --- a/rt/tabcompl/mf/bio/GATK/2.5-2-Java-1.7.0_10 +++ /dev/null @@ -1 +0,0 @@ -../../all/GATK/2.5-2-Java-1.7.0_10 \ No newline at end of file diff --git a/rt/tabcompl/mf/bio/GATK/2.5-2-Java-1.7.0_10 b/rt/tabcompl/mf/bio/GATK/2.5-2-Java-1.7.0_10 new file mode 100644 index 000000000..3d60256f8 --- /dev/null +++ b/rt/tabcompl/mf/bio/GATK/2.5-2-Java-1.7.0_10 @@ -0,0 +1,32 @@ +#%Module + +proc ModulesHelp { } { + puts stderr { The Genome Analysis Toolkit or GATK is a software package developed at the Broad Institute + to analyse next-generation resequencing data. The toolkit offers a wide variety of tools, + with a primary focus on variant discovery and genotyping as well as strong emphasis on + data quality assurance. Its robust architecture, powerful processing engine and + high-performance computing features make it capable of taking on projects of any size. - Homepage: http://www.broadinstitute.org/gatk/ +} +} + +module-whatis {The Genome Analysis Toolkit or GATK is a software package developed at the Broad Institute + to analyse next-generation resequencing data. The toolkit offers a wide variety of tools, + with a primary focus on variant discovery and genotyping as well as strong emphasis on + data quality assurance. Its robust architecture, powerful processing engine and + high-performance computing features make it capable of taking on projects of any size. - Homepage: http://www.broadinstitute.org/gatk/} + +set root /net/gmi.oeaw.ac.at/software/mendel/29_04_2013/software/GATK/2.5-2-Java-1.7.0_10 + +conflict GATK + +if { ![is-loaded Java/1.7.0_10] } { + module load Java/1.7.0_10 +} + + +setenv EBROOTGATK "$root" +setenv EBVERSIONGATK "2.5-2" +setenv EBDEVELGATK "$root/easybuild/GATK-2.5-2-Java-1.7.0_10-easybuild-devel" + + +# built with EasyBuild version 1.6.0dev diff --git a/rt/tabcompl/mf/bio/HMMER/3.0-goolf-1.4.10 b/rt/tabcompl/mf/bio/HMMER/3.0-goolf-1.4.10 deleted file mode 120000 index df05b37aa..000000000 --- a/rt/tabcompl/mf/bio/HMMER/3.0-goolf-1.4.10 +++ /dev/null @@ -1 +0,0 @@ -../../all/HMMER/3.0-goolf-1.4.10 \ No newline at end of file diff --git a/rt/tabcompl/mf/bio/HMMER/3.0-goolf-1.4.10 b/rt/tabcompl/mf/bio/HMMER/3.0-goolf-1.4.10 new file mode 100644 index 000000000..05e135cc7 --- /dev/null +++ b/rt/tabcompl/mf/bio/HMMER/3.0-goolf-1.4.10 @@ -0,0 +1,39 @@ +#%Module + +proc ModulesHelp { } { + puts stderr { HMMER is used for searching sequence databases for homologs of protein sequences, + and for making protein sequence alignments. It implements methods using probabilistic models + called profile hidden Markov models (profile HMMs). Compared to BLAST, FASTA, and other + sequence alignment and database search tools based on older scoring methodology, + HMMER aims to be significantly more accurate and more able to detect remote homologs + because of the strength of its underlying mathematical models. In the past, this strength + came at significant computational expense, but in the new HMMER3 project, HMMER is now + essentially as fast as BLAST. - Homepage: http://hmmer.janelia.org/ +} +} + +module-whatis {HMMER is used for searching sequence databases for homologs of protein sequences, + and for making protein sequence alignments. It implements methods using probabilistic models + called profile hidden Markov models (profile HMMs). Compared to BLAST, FASTA, and other + sequence alignment and database search tools based on older scoring methodology, + HMMER aims to be significantly more accurate and more able to detect remote homologs + because of the strength of its underlying mathematical models. In the past, this strength + came at significant computational expense, but in the new HMMER3 project, HMMER is now + essentially as fast as BLAST. - Homepage: http://hmmer.janelia.org/} + +set root /net/gmi.oeaw.ac.at/software/mendel/29_04_2013/software/HMMER/3.0-goolf-1.4.10 + +conflict HMMER + +if { ![is-loaded goolf/1.4.10] } { + module load goolf/1.4.10 +} + +prepend-path PATH $root/bin + +setenv EBROOTHMMER "$root" +setenv EBVERSIONHMMER "3.0" +setenv EBDEVELHMMER "$root/easybuild/HMMER-3.0-goolf-1.4.10-easybuild-devel" + + +# built with EasyBuild version 1.3.0 diff --git a/rt/tabcompl/mf/bio/HMMER/3.0-ictce-5.3.0 b/rt/tabcompl/mf/bio/HMMER/3.0-ictce-5.3.0 deleted file mode 120000 index 4621ae0f7..000000000 --- a/rt/tabcompl/mf/bio/HMMER/3.0-ictce-5.3.0 +++ /dev/null @@ -1 +0,0 @@ -../../all/HMMER/3.0-ictce-5.3.0 \ No newline at end of file diff --git a/rt/tabcompl/mf/bio/HMMER/3.0-ictce-5.3.0 b/rt/tabcompl/mf/bio/HMMER/3.0-ictce-5.3.0 new file mode 100644 index 000000000..2cc3f927e --- /dev/null +++ b/rt/tabcompl/mf/bio/HMMER/3.0-ictce-5.3.0 @@ -0,0 +1,39 @@ +#%Module + +proc ModulesHelp { } { + puts stderr { HMMER is used for searching sequence databases for homologs of protein sequences, + and for making protein sequence alignments. It implements methods using probabilistic models + called profile hidden Markov models (profile HMMs). Compared to BLAST, FASTA, and other + sequence alignment and database search tools based on older scoring methodology, + HMMER aims to be significantly more accurate and more able to detect remote homologs + because of the strength of its underlying mathematical models. In the past, this strength + came at significant computational expense, but in the new HMMER3 project, HMMER is now + essentially as fast as BLAST. - Homepage: http://hmmer.janelia.org/ +} +} + +module-whatis {HMMER is used for searching sequence databases for homologs of protein sequences, + and for making protein sequence alignments. It implements methods using probabilistic models + called profile hidden Markov models (profile HMMs). Compared to BLAST, FASTA, and other + sequence alignment and database search tools based on older scoring methodology, + HMMER aims to be significantly more accurate and more able to detect remote homologs + because of the strength of its underlying mathematical models. In the past, this strength + came at significant computational expense, but in the new HMMER3 project, HMMER is now + essentially as fast as BLAST. - Homepage: http://hmmer.janelia.org/} + +set root /net/gmi.oeaw.ac.at/software/mendel/29_04_2013/software/HMMER/3.0-ictce-5.3.0 + +conflict HMMER + +if { ![is-loaded ictce/5.3.0] } { + module load ictce/5.3.0 +} + +prepend-path PATH $root/bin + +setenv EBROOTHMMER "$root" +setenv EBVERSIONHMMER "3.0" +setenv EBDEVELHMMER "$root/easybuild/HMMER-3.0-ictce-5.3.0-easybuild-devel" + + +# built with EasyBuild version 1.6.0dev diff --git a/rt/tabcompl/mf/bio/HMMER/3.1b1-goolf-1.4.10 b/rt/tabcompl/mf/bio/HMMER/3.1b1-goolf-1.4.10 deleted file mode 120000 index 44d2fd0bb..000000000 --- a/rt/tabcompl/mf/bio/HMMER/3.1b1-goolf-1.4.10 +++ /dev/null @@ -1 +0,0 @@ -../../all/HMMER/3.1b1-goolf-1.4.10 \ No newline at end of file diff --git a/rt/tabcompl/mf/bio/HMMER/3.1b1-goolf-1.4.10 b/rt/tabcompl/mf/bio/HMMER/3.1b1-goolf-1.4.10 new file mode 100644 index 000000000..4fe936bbb --- /dev/null +++ b/rt/tabcompl/mf/bio/HMMER/3.1b1-goolf-1.4.10 @@ -0,0 +1,42 @@ +#%Module + +proc ModulesHelp { } { + puts stderr { HMMER is used for searching sequence databases for homologs of protein sequences, + and for making protein sequence alignments. It implements methods using probabilistic models + called profile hidden Markov models (profile HMMs). Compared to BLAST, FASTA, and other + sequence alignment and database search tools based on older scoring methodology, + HMMER aims to be significantly more accurate and more able to detect remote homologs + because of the strength of its underlying mathematical models. In the past, this strength + came at significant computational expense, but in the new HMMER3 project, HMMER is now + essentially as fast as BLAST. - Homepage: http://hmmer.janelia.org/ + } +} + +module-whatis {HMMER is used for searching sequence databases for homologs of protein sequences, + and for making protein sequence alignments. It implements methods using probabilistic models + called profile hidden Markov models (profile HMMs). Compared to BLAST, FASTA, and other + sequence alignment and database search tools based on older scoring methodology, + HMMER aims to be significantly more accurate and more able to detect remote homologs + because of the strength of its underlying mathematical models. In the past, this strength + came at significant computational expense, but in the new HMMER3 project, HMMER is now + essentially as fast as BLAST. - Homepage: http://hmmer.janelia.org/} + +set root /net/gmi.oeaw.ac.at/software/mendel/29_04_2013/software/HMMER/3.1b1-goolf-1.4.10 + +conflict HMMER + +if { ![is-loaded goolf/1.4.10] } { + module load goolf/1.4.10 +} + +prepend-path CPATH $root/include +prepend-path LD_LIBRARY_PATH $root/lib +prepend-path MANPATH $root/share/man +prepend-path PATH $root/bin + +setenv EBROOTHMMER "$root" +setenv EBVERSIONHMMER "3.1b1" +setenv EBDEVELHMMER "$root/easybuild/HMMER-3.1b1-goolf-1.4.10-easybuild-devel" + + +# built with EasyBuild version 1.8.2 diff --git a/rt/tabcompl/mf/bio/Infernal/1.1rc1-goolf-1.4.10 b/rt/tabcompl/mf/bio/Infernal/1.1rc1-goolf-1.4.10 deleted file mode 120000 index 10daa91bc..000000000 --- a/rt/tabcompl/mf/bio/Infernal/1.1rc1-goolf-1.4.10 +++ /dev/null @@ -1 +0,0 @@ -../../all/Infernal/1.1rc1-goolf-1.4.10 \ No newline at end of file diff --git a/rt/tabcompl/mf/bio/Infernal/1.1rc1-goolf-1.4.10 b/rt/tabcompl/mf/bio/Infernal/1.1rc1-goolf-1.4.10 new file mode 100644 index 000000000..fcd804230 --- /dev/null +++ b/rt/tabcompl/mf/bio/Infernal/1.1rc1-goolf-1.4.10 @@ -0,0 +1,28 @@ +#%Module + +proc ModulesHelp { } { + puts stderr { (INFERence of RNA ALignment) is for searching DNA sequence databases +for RNA structure and sequence similarities. - Homepage: http://infernal.janelia.org/ +} +} + +module-whatis {(INFERence of RNA ALignment) is for searching DNA sequence databases +for RNA structure and sequence similarities. - Homepage: http://infernal.janelia.org/} + +set root /net/gmi.oeaw.ac.at/software/mendel/29_04_2013/software/Infernal/1.1rc1-goolf-1.4.10 + +conflict Infernal + +if { ![is-loaded goolf/1.4.10] } { + module load goolf/1.4.10 +} + +prepend-path MANPATH $root/share/man +prepend-path PATH $root/bin + +setenv EBROOTINFERNAL "$root" +setenv EBVERSIONINFERNAL "1.1rc1" +setenv EBDEVELINFERNAL "$root/easybuild/Infernal-1.1rc1-goolf-1.4.10-easybuild-devel" + + +# built with EasyBuild version 1.3.0 diff --git a/rt/tabcompl/mf/bio/MEME/4.8.0-goolf-1.4.10 b/rt/tabcompl/mf/bio/MEME/4.8.0-goolf-1.4.10 deleted file mode 120000 index 920f4b715..000000000 --- a/rt/tabcompl/mf/bio/MEME/4.8.0-goolf-1.4.10 +++ /dev/null @@ -1 +0,0 @@ -../../all/MEME/4.8.0-goolf-1.4.10 \ No newline at end of file diff --git a/rt/tabcompl/mf/bio/MEME/4.8.0-goolf-1.4.10 b/rt/tabcompl/mf/bio/MEME/4.8.0-goolf-1.4.10 new file mode 100644 index 000000000..829706ab2 --- /dev/null +++ b/rt/tabcompl/mf/bio/MEME/4.8.0-goolf-1.4.10 @@ -0,0 +1,46 @@ +#%Module + +proc ModulesHelp { } { + puts stderr { The MEME Suite allows you to: * discover motifs using MEME, DREME (DNA only) or + GLAM2 on groups of related DNA or protein sequences, * search sequence databases with motifs using + MAST, FIMO, MCAST or GLAM2SCAN, * compare a motif to all motifs in a database of motifs, * associate + motifs with Gene Ontology terms via their putative target genes, and * analyse motif enrichment + using SpaMo or CentriMo. - Homepage: http://meme.nbcr.net/ + } +} + +module-whatis {The MEME Suite allows you to: * discover motifs using MEME, DREME (DNA only) or + GLAM2 on groups of related DNA or protein sequences, * search sequence databases with motifs using + MAST, FIMO, MCAST or GLAM2SCAN, * compare a motif to all motifs in a database of motifs, * associate + motifs with Gene Ontology terms via their putative target genes, and * analyse motif enrichment + using SpaMo or CentriMo. - Homepage: http://meme.nbcr.net/} + +set root /net/gmi.oeaw.ac.at/software/mendel/29_04_2013/software/MEME/4.8.0-goolf-1.4.10 + +conflict MEME + +if { ![is-loaded goolf/1.4.10] } { + module load goolf/1.4.10 +} + +if { ![is-loaded libxml2/2.9.1-goolf-1.4.10] } { + module load libxml2/2.9.1-goolf-1.4.10 +} + +if { ![is-loaded libxslt/1.1.28-goolf-1.4.10] } { + module load libxslt/1.1.28-goolf-1.4.10 +} + +if { ![is-loaded zlib/1.2.7-goolf-1.4.10] } { + module load zlib/1.2.7-goolf-1.4.10 +} + +prepend-path LD_LIBRARY_PATH $root/lib +prepend-path PATH $root/bin + +setenv EBROOTMEME "$root" +setenv EBVERSIONMEME "4.8.0" +setenv EBDEVELMEME "$root/easybuild/MEME-4.8.0-goolf-1.4.10-easybuild-devel" + + +# built with EasyBuild version 1.8.2 diff --git a/rt/tabcompl/mf/bio/MUSCLE/3.8.31-i86linux64 b/rt/tabcompl/mf/bio/MUSCLE/3.8.31-i86linux64 deleted file mode 120000 index 6e60cff55..000000000 --- a/rt/tabcompl/mf/bio/MUSCLE/3.8.31-i86linux64 +++ /dev/null @@ -1 +0,0 @@ -../../all/MUSCLE/3.8.31-i86linux64 \ No newline at end of file diff --git a/rt/tabcompl/mf/bio/MUSCLE/3.8.31-i86linux64 b/rt/tabcompl/mf/bio/MUSCLE/3.8.31-i86linux64 new file mode 100644 index 000000000..a7105ae97 --- /dev/null +++ b/rt/tabcompl/mf/bio/MUSCLE/3.8.31-i86linux64 @@ -0,0 +1,25 @@ +#%Module + +proc ModulesHelp { } { + puts stderr { MUSCLE is a program for creating multiple alignments of amino acid or nucleotide +sequences. A range of options is provided that give you the choice of optimizing accuracy, speed, +or some compromise between the two. - Homepage: http://drive5.com/muscle/ + } +} + +module-whatis {MUSCLE is a program for creating multiple alignments of amino acid or nucleotide +sequences. A range of options is provided that give you the choice of optimizing accuracy, speed, +or some compromise between the two. - Homepage: http://drive5.com/muscle/} + +set root /net/gmi.oeaw.ac.at/software/mendel/29_04_2013/software/MUSCLE/3.8.31-i86linux64 + +conflict MUSCLE + + +setenv EBROOTMUSCLE "$root" +setenv EBVERSIONMUSCLE "3.8.31" +setenv EBDEVELMUSCLE "$root/easybuild/MUSCLE-3.8.31-i86linux64-easybuild-devel" + +prepend-path PATH $root/ + +# built with EasyBuild version 1.8.2 diff --git a/rt/tabcompl/mf/bio/NCBI-Toolkit/9.0.0-goolf-1.4.10 b/rt/tabcompl/mf/bio/NCBI-Toolkit/9.0.0-goolf-1.4.10 deleted file mode 120000 index 83d88853c..000000000 --- a/rt/tabcompl/mf/bio/NCBI-Toolkit/9.0.0-goolf-1.4.10 +++ /dev/null @@ -1 +0,0 @@ -../../all/NCBI-Toolkit/9.0.0-goolf-1.4.10 \ No newline at end of file diff --git a/rt/tabcompl/mf/bio/NCBI-Toolkit/9.0.0-goolf-1.4.10 b/rt/tabcompl/mf/bio/NCBI-Toolkit/9.0.0-goolf-1.4.10 new file mode 100644 index 000000000..45dea7375 --- /dev/null +++ b/rt/tabcompl/mf/bio/NCBI-Toolkit/9.0.0-goolf-1.4.10 @@ -0,0 +1,39 @@ +#%Module + +proc ModulesHelp { } { + puts stderr { The NCBI Toolkit is a collection of utilities developed for the + production and distribution of GenBank, Entrez, BLAST, and related services + by the National Center for Biotechnology Information. - Homepage: http://www.ncbi.nlm.nih.gov/toolkit +} +} + +module-whatis {The NCBI Toolkit is a collection of utilities developed for the + production and distribution of GenBank, Entrez, BLAST, and related services + by the National Center for Biotechnology Information. - Homepage: http://www.ncbi.nlm.nih.gov/toolkit} + +set root /net/gmi.oeaw.ac.at/software/mendel/29_04_2013/software/NCBI-Toolkit/9.0.0-goolf-1.4.10 + +conflict NCBI-Toolkit + +if { ![is-loaded goolf/1.4.10] } { + module load goolf/1.4.10 +} + +if { ![is-loaded Boost/1.51.0-goolf-1.4.10] } { + module load Boost/1.51.0-goolf-1.4.10 +} + +if { ![is-loaded zlib/1.2.8-goolf-1.4.10] } { + module load zlib/1.2.8-goolf-1.4.10 +} + +prepend-path CPATH $root/include +prepend-path LD_LIBRARY_PATH $root/lib +prepend-path PATH $root/bin + +setenv EBROOTNCBIMINTOOLKIT "$root" +setenv EBVERSIONNCBIMINTOOLKIT "9.0.0" +setenv EBDEVELNCBIMINTOOLKIT "$root/easybuild/NCBI-Toolkit-9.0.0-goolf-1.4.10-easybuild-devel" + + +# built with EasyBuild version 1.6.0 diff --git a/rt/tabcompl/mf/bio/PAML/4.7-goolf-1.4.10 b/rt/tabcompl/mf/bio/PAML/4.7-goolf-1.4.10 deleted file mode 120000 index 52472ed3c..000000000 --- a/rt/tabcompl/mf/bio/PAML/4.7-goolf-1.4.10 +++ /dev/null @@ -1 +0,0 @@ -../../all/PAML/4.7-goolf-1.4.10 \ No newline at end of file diff --git a/rt/tabcompl/mf/bio/PAML/4.7-goolf-1.4.10 b/rt/tabcompl/mf/bio/PAML/4.7-goolf-1.4.10 new file mode 100644 index 000000000..b2bad84e8 --- /dev/null +++ b/rt/tabcompl/mf/bio/PAML/4.7-goolf-1.4.10 @@ -0,0 +1,27 @@ +#%Module + +proc ModulesHelp { } { + puts stderr { PAML is a package of programs for phylogenetic + analyses of DNA or protein sequences using maximum likelihood. - Homepage: http://abacus.gene.ucl.ac.uk/software/paml.html + } +} + +module-whatis {PAML is a package of programs for phylogenetic + analyses of DNA or protein sequences using maximum likelihood. - Homepage: http://abacus.gene.ucl.ac.uk/software/paml.html} + +set root /net/gmi.oeaw.ac.at/software/mendel/29_04_2013/software/PAML/4.7-goolf-1.4.10 + +conflict PAML + +if { ![is-loaded goolf/1.4.10] } { + module load goolf/1.4.10 +} + +prepend-path PATH $root/bin + +setenv EBROOTPAML "$root" +setenv EBVERSIONPAML "4.7" +setenv EBDEVELPAML "$root/easybuild/PAML-4.7-goolf-1.4.10-easybuild-devel" + + +# built with EasyBuild version 1.8.2 diff --git a/rt/tabcompl/mf/bio/RNAz/2.1-goolf-1.4.10 b/rt/tabcompl/mf/bio/RNAz/2.1-goolf-1.4.10 deleted file mode 120000 index feaefe74e..000000000 --- a/rt/tabcompl/mf/bio/RNAz/2.1-goolf-1.4.10 +++ /dev/null @@ -1 +0,0 @@ -../../all/RNAz/2.1-goolf-1.4.10 \ No newline at end of file diff --git a/rt/tabcompl/mf/bio/RNAz/2.1-goolf-1.4.10 b/rt/tabcompl/mf/bio/RNAz/2.1-goolf-1.4.10 new file mode 100644 index 000000000..8f2f6ddb6 --- /dev/null +++ b/rt/tabcompl/mf/bio/RNAz/2.1-goolf-1.4.10 @@ -0,0 +1,28 @@ +#%Module + +proc ModulesHelp { } { + puts stderr { RNAz is a program for predicting structurally conserved and +thermodynamically stable RNA secondary structures in multiple sequence alignments. - Homepage: http://www.tbi.univie.ac.at/~wash/RNAz/ +} +} + +module-whatis {RNAz is a program for predicting structurally conserved and +thermodynamically stable RNA secondary structures in multiple sequence alignments. - Homepage: http://www.tbi.univie.ac.at/~wash/RNAz/} + +set root /net/gmi.oeaw.ac.at/software/mendel/29_04_2013/software/RNAz/2.1-goolf-1.4.10 + +conflict RNAz + +if { ![is-loaded goolf/1.4.10] } { + module load goolf/1.4.10 +} + +prepend-path MANPATH $root/share/man +prepend-path PATH $root/bin + +setenv EBROOTRNAZ "$root" +setenv EBVERSIONRNAZ "2.1" +setenv EBDEVELRNAZ "$root/easybuild/RNAz-2.1-goolf-1.4.10-easybuild-devel" + + +# built with EasyBuild version 1.3.0 diff --git a/rt/tabcompl/mf/bio/SAMtools/0.1.18-goolf-1.4.10 b/rt/tabcompl/mf/bio/SAMtools/0.1.18-goolf-1.4.10 deleted file mode 120000 index 67ad123d1..000000000 --- a/rt/tabcompl/mf/bio/SAMtools/0.1.18-goolf-1.4.10 +++ /dev/null @@ -1 +0,0 @@ -../../all/SAMtools/0.1.18-goolf-1.4.10 \ No newline at end of file diff --git a/rt/tabcompl/mf/bio/SAMtools/0.1.18-goolf-1.4.10 b/rt/tabcompl/mf/bio/SAMtools/0.1.18-goolf-1.4.10 new file mode 100644 index 000000000..85ba3e5dc --- /dev/null +++ b/rt/tabcompl/mf/bio/SAMtools/0.1.18-goolf-1.4.10 @@ -0,0 +1,37 @@ +#%Module + +proc ModulesHelp { } { + puts stderr { SAM (Sequence Alignment/Map) format is a generic format +for storing large nucleotide sequence alignments. - Homepage: http://samtools.sourceforge.net/ +} +} + +module-whatis {SAM (Sequence Alignment/Map) format is a generic format +for storing large nucleotide sequence alignments. - Homepage: http://samtools.sourceforge.net/} + +set root /net/gmi.oeaw.ac.at/software/mendel/29_04_2013/software/SAMtools/0.1.18-goolf-1.4.10 + +conflict SAMtools + +if { ![is-loaded goolf/1.4.10] } { + module load goolf/1.4.10 +} + +if { ![is-loaded ncurses/5.9-goolf-1.4.10] } { + module load ncurses/5.9-goolf-1.4.10 +} + +if { ![is-loaded zlib/1.2.7-goolf-1.4.10] } { + module load zlib/1.2.7-goolf-1.4.10 +} + +prepend-path CPATH $root/include +prepend-path LD_LIBRARY_PATH $root/lib +prepend-path PATH $root/bin + +setenv EBROOTSAMTOOLS "$root" +setenv EBVERSIONSAMTOOLS "0.1.18" +setenv EBDEVELSAMTOOLS "$root/easybuild/SAMtools-0.1.18-goolf-1.4.10-easybuild-devel" + + +# built with EasyBuild version 1.3.0 diff --git a/rt/tabcompl/mf/bio/SAMtools/0.1.18-ictce-5.3.0 b/rt/tabcompl/mf/bio/SAMtools/0.1.18-ictce-5.3.0 deleted file mode 120000 index 29218c075..000000000 --- a/rt/tabcompl/mf/bio/SAMtools/0.1.18-ictce-5.3.0 +++ /dev/null @@ -1 +0,0 @@ -../../all/SAMtools/0.1.18-ictce-5.3.0 \ No newline at end of file diff --git a/rt/tabcompl/mf/bio/SAMtools/0.1.18-ictce-5.3.0 b/rt/tabcompl/mf/bio/SAMtools/0.1.18-ictce-5.3.0 new file mode 100644 index 000000000..70cb06356 --- /dev/null +++ b/rt/tabcompl/mf/bio/SAMtools/0.1.18-ictce-5.3.0 @@ -0,0 +1,37 @@ +#%Module + +proc ModulesHelp { } { + puts stderr { SAM (Sequence Alignment/Map) format is a generic format +for storing large nucleotide sequence alignments. - Homepage: http://samtools.sourceforge.net/ +} +} + +module-whatis {SAM (Sequence Alignment/Map) format is a generic format +for storing large nucleotide sequence alignments. - Homepage: http://samtools.sourceforge.net/} + +set root /net/gmi.oeaw.ac.at/software/mendel/29_04_2013/software/SAMtools/0.1.18-ictce-5.3.0 + +conflict SAMtools + +if { ![is-loaded ictce/5.3.0] } { + module load ictce/5.3.0 +} + +if { ![is-loaded ncurses/5.9-ictce-5.3.0] } { + module load ncurses/5.9-ictce-5.3.0 +} + +if { ![is-loaded zlib/1.2.7-ictce-5.3.0] } { + module load zlib/1.2.7-ictce-5.3.0 +} + +prepend-path CPATH $root/include +prepend-path LD_LIBRARY_PATH $root/lib +prepend-path PATH $root/bin + +setenv EBROOTSAMTOOLS "$root" +setenv EBVERSIONSAMTOOLS "0.1.18" +setenv EBDEVELSAMTOOLS "$root/easybuild/SAMtools-0.1.18-ictce-5.3.0-easybuild-devel" + + +# built with EasyBuild version 1.4.0 diff --git a/rt/tabcompl/mf/bio/SAMtools/0.1.19-goolf-1.4.10 b/rt/tabcompl/mf/bio/SAMtools/0.1.19-goolf-1.4.10 deleted file mode 120000 index 90171b425..000000000 --- a/rt/tabcompl/mf/bio/SAMtools/0.1.19-goolf-1.4.10 +++ /dev/null @@ -1 +0,0 @@ -../../all/SAMtools/0.1.19-goolf-1.4.10 \ No newline at end of file diff --git a/rt/tabcompl/mf/bio/SAMtools/0.1.19-goolf-1.4.10 b/rt/tabcompl/mf/bio/SAMtools/0.1.19-goolf-1.4.10 new file mode 100644 index 000000000..5b974eb72 --- /dev/null +++ b/rt/tabcompl/mf/bio/SAMtools/0.1.19-goolf-1.4.10 @@ -0,0 +1,37 @@ +#%Module + +proc ModulesHelp { } { + puts stderr { SAM (Sequence Alignment/Map) format is a generic format +for storing large nucleotide sequence alignments. - Homepage: http://samtools.sourceforge.net/ +} +} + +module-whatis {SAM (Sequence Alignment/Map) format is a generic format +for storing large nucleotide sequence alignments. - Homepage: http://samtools.sourceforge.net/} + +set root /net/gmi.oeaw.ac.at/software/mendel/29_04_2013/software/SAMtools/0.1.19-goolf-1.4.10 + +conflict SAMtools + +if { ![is-loaded goolf/1.4.10] } { + module load goolf/1.4.10 +} + +if { ![is-loaded ncurses/5.9-goolf-1.4.10] } { + module load ncurses/5.9-goolf-1.4.10 +} + +if { ![is-loaded zlib/1.2.5-goolf-1.4.10] } { + module load zlib/1.2.5-goolf-1.4.10 +} + +prepend-path CPATH $root/include +prepend-path LD_LIBRARY_PATH $root/lib +prepend-path PATH $root/bin + +setenv EBROOTSAMTOOLS "$root" +setenv EBVERSIONSAMTOOLS "0.1.19" +setenv EBDEVELSAMTOOLS "$root/easybuild/SAMtools-0.1.19-goolf-1.4.10-easybuild-devel" + + +# built with EasyBuild version 1.6.0dev diff --git a/rt/tabcompl/mf/bio/TopHat/2.0.4-goolf-1.4.10 b/rt/tabcompl/mf/bio/TopHat/2.0.4-goolf-1.4.10 deleted file mode 120000 index c931f06aa..000000000 --- a/rt/tabcompl/mf/bio/TopHat/2.0.4-goolf-1.4.10 +++ /dev/null @@ -1 +0,0 @@ -../../all/TopHat/2.0.4-goolf-1.4.10 \ No newline at end of file diff --git a/rt/tabcompl/mf/bio/TopHat/2.0.4-goolf-1.4.10 b/rt/tabcompl/mf/bio/TopHat/2.0.4-goolf-1.4.10 new file mode 100644 index 000000000..9aaf7635b --- /dev/null +++ b/rt/tabcompl/mf/bio/TopHat/2.0.4-goolf-1.4.10 @@ -0,0 +1,37 @@ +#%Module + +proc ModulesHelp { } { + puts stderr { TopHat is a fast splice junction mapper for RNA-Seq reads. - Homepage: http://tophat.cbcb.umd.edu/ +} +} + +module-whatis {TopHat is a fast splice junction mapper for RNA-Seq reads. - Homepage: http://tophat.cbcb.umd.edu/} + +set root /net/gmi.oeaw.ac.at/software/mendel/29_04_2013/software/TopHat/2.0.4-goolf-1.4.10 + +conflict TopHat + +if { ![is-loaded goolf/1.4.10] } { + module load goolf/1.4.10 +} + +if { ![is-loaded Boost/1.51.0-goolf-1.4.10-Python-2.7.3] } { + module load Boost/1.51.0-goolf-1.4.10-Python-2.7.3 +} + +if { ![is-loaded SAMtools/0.1.18-goolf-1.4.10] } { + module load SAMtools/0.1.18-goolf-1.4.10 +} + +if { ![is-loaded zlib/1.2.7-goolf-1.4.10] } { + module load zlib/1.2.7-goolf-1.4.10 +} + +prepend-path PATH $root/bin + +setenv EBROOTTOPHAT "$root" +setenv EBVERSIONTOPHAT "2.0.4" +setenv EBDEVELTOPHAT "$root/easybuild/TopHat-2.0.4-goolf-1.4.10-easybuild-devel" + + +# built with EasyBuild version 1.3.0 diff --git a/rt/tabcompl/mf/bio/TopHat/2.0.8-goolf-1.4.10 b/rt/tabcompl/mf/bio/TopHat/2.0.8-goolf-1.4.10 deleted file mode 120000 index 5628a5d7a..000000000 --- a/rt/tabcompl/mf/bio/TopHat/2.0.8-goolf-1.4.10 +++ /dev/null @@ -1 +0,0 @@ -../../all/TopHat/2.0.8-goolf-1.4.10 \ No newline at end of file diff --git a/rt/tabcompl/mf/bio/TopHat/2.0.8-goolf-1.4.10 b/rt/tabcompl/mf/bio/TopHat/2.0.8-goolf-1.4.10 new file mode 100644 index 000000000..499dec993 --- /dev/null +++ b/rt/tabcompl/mf/bio/TopHat/2.0.8-goolf-1.4.10 @@ -0,0 +1,37 @@ +#%Module + +proc ModulesHelp { } { + puts stderr { TopHat is a fast splice junction mapper for RNA-Seq reads. - Homepage: http://tophat.cbcb.umd.edu/ +} +} + +module-whatis {TopHat is a fast splice junction mapper for RNA-Seq reads. - Homepage: http://tophat.cbcb.umd.edu/} + +set root /net/gmi.oeaw.ac.at/software/mendel/29_04_2013/software/TopHat/2.0.8-goolf-1.4.10 + +conflict TopHat + +if { ![is-loaded goolf/1.4.10] } { + module load goolf/1.4.10 +} + +if { ![is-loaded Boost/1.51.0-goolf-1.4.10-Python-2.7.3] } { + module load Boost/1.51.0-goolf-1.4.10-Python-2.7.3 +} + +if { ![is-loaded SAMtools/0.1.18-goolf-1.4.10] } { + module load SAMtools/0.1.18-goolf-1.4.10 +} + +if { ![is-loaded zlib/1.2.7-goolf-1.4.10] } { + module load zlib/1.2.7-goolf-1.4.10 +} + +prepend-path PATH $root/bin + +setenv EBROOTTOPHAT "$root" +setenv EBVERSIONTOPHAT "2.0.8" +setenv EBDEVELTOPHAT "$root/easybuild/TopHat-2.0.8-goolf-1.4.10-easybuild-devel" + + +# built with EasyBuild version 1.4.0 diff --git a/rt/tabcompl/mf/bio/TopHat/2.0.9-goolf-1.4.10 b/rt/tabcompl/mf/bio/TopHat/2.0.9-goolf-1.4.10 deleted file mode 120000 index 821613ea2..000000000 --- a/rt/tabcompl/mf/bio/TopHat/2.0.9-goolf-1.4.10 +++ /dev/null @@ -1 +0,0 @@ -../../all/TopHat/2.0.9-goolf-1.4.10 \ No newline at end of file diff --git a/rt/tabcompl/mf/bio/TopHat/2.0.9-goolf-1.4.10 b/rt/tabcompl/mf/bio/TopHat/2.0.9-goolf-1.4.10 new file mode 100644 index 000000000..284e6a0c3 --- /dev/null +++ b/rt/tabcompl/mf/bio/TopHat/2.0.9-goolf-1.4.10 @@ -0,0 +1,37 @@ +#%Module + +proc ModulesHelp { } { + puts stderr { TopHat is a fast splice junction mapper for RNA-Seq reads. - Homepage: http://tophat.cbcb.umd.edu/ +} +} + +module-whatis {TopHat is a fast splice junction mapper for RNA-Seq reads. - Homepage: http://tophat.cbcb.umd.edu/} + +set root /net/gmi.oeaw.ac.at/software/mendel/29_04_2013/software/TopHat/2.0.9-goolf-1.4.10 + +conflict TopHat + +if { ![is-loaded goolf/1.4.10] } { + module load goolf/1.4.10 +} + +if { ![is-loaded Boost/1.51.0-goolf-1.4.10-Python-2.7.3] } { + module load Boost/1.51.0-goolf-1.4.10-Python-2.7.3 +} + +if { ![is-loaded SAMtools/0.1.18-goolf-1.4.10] } { + module load SAMtools/0.1.18-goolf-1.4.10 +} + +if { ![is-loaded zlib/1.2.7-goolf-1.4.10] } { + module load zlib/1.2.7-goolf-1.4.10 +} + +prepend-path PATH $root/bin + +setenv EBROOTTOPHAT "$root" +setenv EBVERSIONTOPHAT "2.0.9" +setenv EBDEVELTOPHAT "$root/easybuild/TopHat-2.0.9-goolf-1.4.10-easybuild-devel" + + +# built with EasyBuild version 1.6.0 diff --git a/rt/tabcompl/mf/bio/Velvet/1.2.07-goolf-1.4.10 b/rt/tabcompl/mf/bio/Velvet/1.2.07-goolf-1.4.10 deleted file mode 120000 index aba6dd96c..000000000 --- a/rt/tabcompl/mf/bio/Velvet/1.2.07-goolf-1.4.10 +++ /dev/null @@ -1 +0,0 @@ -../../all/Velvet/1.2.07-goolf-1.4.10 \ No newline at end of file diff --git a/rt/tabcompl/mf/bio/Velvet/1.2.07-goolf-1.4.10 b/rt/tabcompl/mf/bio/Velvet/1.2.07-goolf-1.4.10 new file mode 100644 index 000000000..c247fa021 --- /dev/null +++ b/rt/tabcompl/mf/bio/Velvet/1.2.07-goolf-1.4.10 @@ -0,0 +1,25 @@ +#%Module + +proc ModulesHelp { } { + puts stderr { Sequence assembler for very short reads - Homepage: http://www.ebi.ac.uk/~zerbino/velvet/ +} +} + +module-whatis {Sequence assembler for very short reads - Homepage: http://www.ebi.ac.uk/~zerbino/velvet/} + +set root /net/gmi.oeaw.ac.at/software/mendel/29_04_2013/software/Velvet/1.2.07-goolf-1.4.10 + +conflict Velvet + +if { ![is-loaded goolf/1.4.10] } { + module load goolf/1.4.10 +} + +prepend-path PATH $root/bin + +setenv EBROOTVELVET "$root" +setenv EBVERSIONVELVET "1.2.07" +setenv EBDEVELVELVET "$root/easybuild/Velvet-1.2.07-goolf-1.4.10-easybuild-devel" + + +# built with EasyBuild version 1.3.0 diff --git a/rt/tabcompl/mf/bio/Velvet/1.2.07-ictce-5.3.0 b/rt/tabcompl/mf/bio/Velvet/1.2.07-ictce-5.3.0 deleted file mode 120000 index 895a19cab..000000000 --- a/rt/tabcompl/mf/bio/Velvet/1.2.07-ictce-5.3.0 +++ /dev/null @@ -1 +0,0 @@ -../../all/Velvet/1.2.07-ictce-5.3.0 \ No newline at end of file diff --git a/rt/tabcompl/mf/bio/Velvet/1.2.07-ictce-5.3.0 b/rt/tabcompl/mf/bio/Velvet/1.2.07-ictce-5.3.0 new file mode 100644 index 000000000..7a1d7ec95 --- /dev/null +++ b/rt/tabcompl/mf/bio/Velvet/1.2.07-ictce-5.3.0 @@ -0,0 +1,25 @@ +#%Module + +proc ModulesHelp { } { + puts stderr { Sequence assembler for very short reads - Homepage: http://www.ebi.ac.uk/~zerbino/velvet/ +} +} + +module-whatis {Sequence assembler for very short reads - Homepage: http://www.ebi.ac.uk/~zerbino/velvet/} + +set root /net/gmi.oeaw.ac.at/software/mendel/29_04_2013/software/Velvet/1.2.07-ictce-5.3.0 + +conflict Velvet + +if { ![is-loaded ictce/5.3.0] } { + module load ictce/5.3.0 +} + +prepend-path PATH $root/bin + +setenv EBROOTVELVET "$root" +setenv EBVERSIONVELVET "1.2.07" +setenv EBDEVELVELVET "$root/easybuild/Velvet-1.2.07-ictce-5.3.0-easybuild-devel" + + +# built with EasyBuild version 1.4.0 diff --git a/rt/tabcompl/mf/bio/bam2fastq/1.1.0-goolf-1.4.10 b/rt/tabcompl/mf/bio/bam2fastq/1.1.0-goolf-1.4.10 deleted file mode 120000 index 79491bf27..000000000 --- a/rt/tabcompl/mf/bio/bam2fastq/1.1.0-goolf-1.4.10 +++ /dev/null @@ -1 +0,0 @@ -../../all/bam2fastq/1.1.0-goolf-1.4.10 \ No newline at end of file diff --git a/rt/tabcompl/mf/bio/bam2fastq/1.1.0-goolf-1.4.10 b/rt/tabcompl/mf/bio/bam2fastq/1.1.0-goolf-1.4.10 new file mode 100644 index 000000000..9bdb05448 --- /dev/null +++ b/rt/tabcompl/mf/bio/bam2fastq/1.1.0-goolf-1.4.10 @@ -0,0 +1,33 @@ +#%Module + +proc ModulesHelp { } { + puts stderr { The BAM format is an efficient method for storing and sharing data + from modern, highly parallel sequencers. While primarily used for storing alignment information, + BAMs can (and frequently do) store unaligned reads as well. - Homepage: http://www.hudsonalpha.org/gsl/information/software/bam2fastq +} +} + +module-whatis {The BAM format is an efficient method for storing and sharing data + from modern, highly parallel sequencers. While primarily used for storing alignment information, + BAMs can (and frequently do) store unaligned reads as well. - Homepage: http://www.hudsonalpha.org/gsl/information/software/bam2fastq} + +set root /net/gmi.oeaw.ac.at/software/mendel/29_04_2013/software/bam2fastq/1.1.0-goolf-1.4.10 + +conflict bam2fastq + +if { ![is-loaded goolf/1.4.10] } { + module load goolf/1.4.10 +} + +if { ![is-loaded zlib/1.2.7-goolf-1.4.10] } { + module load zlib/1.2.7-goolf-1.4.10 +} + +prepend-path PATH $root/bin + +setenv EBROOTBAM2FASTQ "$root" +setenv EBVERSIONBAM2FASTQ "1.1.0" +setenv EBDEVELBAM2FASTQ "$root/easybuild/bam2fastq-1.1.0-goolf-1.4.10-easybuild-devel" + + +# built with EasyBuild version 1.6.0dev diff --git a/rt/tabcompl/mf/bio/dadi/1.6.3-goolf-1.4.10-Python-2.7.3 b/rt/tabcompl/mf/bio/dadi/1.6.3-goolf-1.4.10-Python-2.7.3 deleted file mode 120000 index 12bfb33b4..000000000 --- a/rt/tabcompl/mf/bio/dadi/1.6.3-goolf-1.4.10-Python-2.7.3 +++ /dev/null @@ -1 +0,0 @@ -../../all/dadi/1.6.3-goolf-1.4.10-Python-2.7.3 \ No newline at end of file diff --git a/rt/tabcompl/mf/bio/dadi/1.6.3-goolf-1.4.10-Python-2.7.3 b/rt/tabcompl/mf/bio/dadi/1.6.3-goolf-1.4.10-Python-2.7.3 new file mode 100644 index 000000000..178e095bf --- /dev/null +++ b/rt/tabcompl/mf/bio/dadi/1.6.3-goolf-1.4.10-Python-2.7.3 @@ -0,0 +1,31 @@ +#%Module + +proc ModulesHelp { } { + puts stderr { dadi implements a method for demographic inference from genetic data, based on a diffusion approximation to the allele frequency spectrum. One of dadi's main benefits is speed: fitting a two-population model typically takes around 10 minutes, and run time is independent of the number of SNPs in your data set. dadi is also flexible, handling up to three simultaneous populations, with arbitrary timecourses for population size and migration, plus the possibility of admixture and population-specific selection. The code is young but has already been used in several publications. - Homepage: https://code.google.com/d/dadi/ +} +} + +module-whatis {dadi implements a method for demographic inference from genetic data, based on a diffusion approximation to the allele frequency spectrum. One of dadi's main benefits is speed: fitting a two-population model typically takes around 10 minutes, and run time is independent of the number of SNPs in your data set. dadi is also flexible, handling up to three simultaneous populations, with arbitrary timecourses for population size and migration, plus the possibility of admixture and population-specific selection. The code is young but has already been used in several publications. - Homepage: https://code.google.com/d/dadi/} + +set root /net/gmi.oeaw.ac.at/software/mendel/29_04_2013/software/dadi/1.6.3-goolf-1.4.10-Python-2.7.3 + +conflict dadi + +if { ![is-loaded goolf/1.4.10] } { + module load goolf/1.4.10 +} + +if { ![is-loaded Python/2.7.3-goolf-1.4.10] } { + module load Python/2.7.3-goolf-1.4.10 +} + +prepend-path LD_LIBRARY_PATH $root/lib +prepend-path PATH $root/bin + +setenv EBROOTDADI "$root" +setenv EBVERSIONDADI "1.6.3" +setenv EBDEVELDADI "$root/easybuild/dadi-1.6.3-goolf-1.4.10-Python-2.7.3-easybuild-devel" + +prepend-path PYTHONPATH $root/lib/python2.7/site-packages + +# built with EasyBuild version 1.6.0 diff --git a/rt/tabcompl/mf/bio/mpiBLAST/1.6.0-goolf-1.4.10 b/rt/tabcompl/mf/bio/mpiBLAST/1.6.0-goolf-1.4.10 deleted file mode 120000 index 2d6615bc6..000000000 --- a/rt/tabcompl/mf/bio/mpiBLAST/1.6.0-goolf-1.4.10 +++ /dev/null @@ -1 +0,0 @@ -../../all/mpiBLAST/1.6.0-goolf-1.4.10 \ No newline at end of file diff --git a/rt/tabcompl/mf/bio/mpiBLAST/1.6.0-goolf-1.4.10 b/rt/tabcompl/mf/bio/mpiBLAST/1.6.0-goolf-1.4.10 new file mode 100644 index 000000000..19c610fd6 --- /dev/null +++ b/rt/tabcompl/mf/bio/mpiBLAST/1.6.0-goolf-1.4.10 @@ -0,0 +1,33 @@ +#%Module + +proc ModulesHelp { } { + puts stderr { mpiBLAST is a freely available, open-source, parallel implementation of NCBI BLAST. + By efficiently utilizing distributed computational resources through database fragmentation, + query segmentation, intelligent scheduling, and parallel I/O, mpiBLAST improves NCBI BLAST + performance by several orders of magnitude while scaling to hundreds of processors. + mpiBLAST is also portable across many different platforms and operating systems. - Homepage: http://www.mpiblast.org/ +} +} + +module-whatis {mpiBLAST is a freely available, open-source, parallel implementation of NCBI BLAST. + By efficiently utilizing distributed computational resources through database fragmentation, + query segmentation, intelligent scheduling, and parallel I/O, mpiBLAST improves NCBI BLAST + performance by several orders of magnitude while scaling to hundreds of processors. + mpiBLAST is also portable across many different platforms and operating systems. - Homepage: http://www.mpiblast.org/} + +set root /net/gmi.oeaw.ac.at/software/mendel/29_04_2013/software/mpiBLAST/1.6.0-goolf-1.4.10 + +conflict mpiBLAST + +if { ![is-loaded goolf/1.4.10] } { + module load goolf/1.4.10 +} + +prepend-path PATH $root/bin + +setenv EBROOTMPIBLAST "$root" +setenv EBVERSIONMPIBLAST "1.6.0" +setenv EBDEVELMPIBLAST "$root/easybuild/mpiBLAST-1.6.0-goolf-1.4.10-easybuild-devel" + + +# built with EasyBuild version 1.6.0 diff --git a/rt/tabcompl/mf/compiler/GCC/4.6.3 b/rt/tabcompl/mf/compiler/GCC/4.6.3 deleted file mode 120000 index f297fb752..000000000 --- a/rt/tabcompl/mf/compiler/GCC/4.6.3 +++ /dev/null @@ -1 +0,0 @@ -../../all/GCC/4.6.3 \ No newline at end of file diff --git a/rt/tabcompl/mf/compiler/GCC/4.6.3 b/rt/tabcompl/mf/compiler/GCC/4.6.3 new file mode 100644 index 000000000..1aa811d61 --- /dev/null +++ b/rt/tabcompl/mf/compiler/GCC/4.6.3 @@ -0,0 +1,28 @@ +#%Module + +proc ModulesHelp { } { + puts stderr { The GNU Compiler Collection includes front ends for C, C++, Objective-C, Fortran, + Java, and Ada, as well as libraries for these languages (libstdc++, libgcj,...). - Homepage: http://gcc.gnu.org/ +} +} + +module-whatis {The GNU Compiler Collection includes front ends for C, C++, Objective-C, Fortran, + Java, and Ada, as well as libraries for these languages (libstdc++, libgcj,...). - Homepage: http://gcc.gnu.org/} + +set root /net/gmi.oeaw.ac.at/software/mendel/29_04_2013/software/GCC/4.6.3 + +conflict GCC + +prepend-path CPATH $root/include +prepend-path LD_LIBRARY_PATH $root/lib +prepend-path LD_LIBRARY_PATH $root/lib64 +prepend-path LD_LIBRARY_PATH $root/lib/gcc/x86_64-unknown-linux-gnu/4.6.3 +prepend-path MANPATH $root/share/man +prepend-path PATH $root/bin + +setenv EBROOTGCC "$root" +setenv EBVERSIONGCC "4.6.3" +setenv EBDEVELGCC "$root/easybuild/GCC-4.6.3-easybuild-devel" + + +# built with EasyBuild version 1.3.0 diff --git a/rt/tabcompl/mf/compiler/GCC/4.7.2 b/rt/tabcompl/mf/compiler/GCC/4.7.2 deleted file mode 120000 index 5cf34f224..000000000 --- a/rt/tabcompl/mf/compiler/GCC/4.7.2 +++ /dev/null @@ -1 +0,0 @@ -../../all/GCC/4.7.2 \ No newline at end of file diff --git a/rt/tabcompl/mf/compiler/GCC/4.7.2 b/rt/tabcompl/mf/compiler/GCC/4.7.2 new file mode 100644 index 000000000..f929a9fdf --- /dev/null +++ b/rt/tabcompl/mf/compiler/GCC/4.7.2 @@ -0,0 +1,28 @@ +#%Module + +proc ModulesHelp { } { + puts stderr { The GNU Compiler Collection includes front ends for C, C++, Objective-C, Fortran, + Java, and Ada, as well as libraries for these languages (libstdc++, libgcj,...). - Homepage: http://gcc.gnu.org/ +} +} + +module-whatis {The GNU Compiler Collection includes front ends for C, C++, Objective-C, Fortran, + Java, and Ada, as well as libraries for these languages (libstdc++, libgcj,...). - Homepage: http://gcc.gnu.org/} + +set root /net/gmi.oeaw.ac.at/software/mendel/29_04_2013/software/GCC/4.7.2 + +conflict GCC + +prepend-path CPATH $root/include +prepend-path LD_LIBRARY_PATH $root/lib +prepend-path LD_LIBRARY_PATH $root/lib64 +prepend-path LD_LIBRARY_PATH $root/lib/gcc/x86_64-unknown-linux-gnu/4.7.2 +prepend-path MANPATH $root/share/man +prepend-path PATH $root/bin + +setenv EBROOTGCC "$root" +setenv EBVERSIONGCC "4.7.2" +setenv EBDEVELGCC "$root/easybuild/GCC-4.7.2-easybuild-devel" + + +# built with EasyBuild version 1.3.0 diff --git a/rt/tabcompl/mf/compiler/icc/2013.2.146 b/rt/tabcompl/mf/compiler/icc/2013.2.146 deleted file mode 120000 index 46ede598d..000000000 --- a/rt/tabcompl/mf/compiler/icc/2013.2.146 +++ /dev/null @@ -1 +0,0 @@ -../../all/icc/2013.2.146 \ No newline at end of file diff --git a/rt/tabcompl/mf/compiler/icc/2013.2.146 b/rt/tabcompl/mf/compiler/icc/2013.2.146 new file mode 100644 index 000000000..410e509b4 --- /dev/null +++ b/rt/tabcompl/mf/compiler/icc/2013.2.146 @@ -0,0 +1,29 @@ +#%Module + +proc ModulesHelp { } { + puts stderr { C and C++ compiler from Intel - Homepage: http://software.intel.com/en-us/intel-compilers/ +} +} + +module-whatis {C and C++ compiler from Intel - Homepage: http://software.intel.com/en-us/intel-compilers/} + +set root /net/gmi.oeaw.ac.at/software/mendel/29_04_2013/software/icc/2013.2.146 + +conflict icc + +prepend-path IDB_HOME $root/bin/intel64 +prepend-path LD_LIBRARY_PATH $root/compiler/lib +prepend-path LD_LIBRARY_PATH $root/compiler/lib/intel64 +prepend-path MANPATH $root/man +prepend-path MANPATH $root/man/en_US +prepend-path PATH $root/bin +prepend-path PATH $root/bin/intel64 + +setenv EBROOTICC "$root" +setenv EBVERSIONICC "2013.2.146" +setenv EBDEVELICC "$root/easybuild/icc-2013.2.146-easybuild-devel" + +prepend-path INTEL_LICENSE_FILE /net/gmi.oeaw.ac.at/software/mendel/easybuild-home/licenses/intel/license.lic +prepend-path NLSPATH $root/idb/intel64/locale/%l_%t/%N + +# built with EasyBuild version 1.3.0 diff --git a/rt/tabcompl/mf/compiler/icc/2013.3.163 b/rt/tabcompl/mf/compiler/icc/2013.3.163 deleted file mode 120000 index f39445f93..000000000 --- a/rt/tabcompl/mf/compiler/icc/2013.3.163 +++ /dev/null @@ -1 +0,0 @@ -../../all/icc/2013.3.163 \ No newline at end of file diff --git a/rt/tabcompl/mf/compiler/icc/2013.3.163 b/rt/tabcompl/mf/compiler/icc/2013.3.163 new file mode 100644 index 000000000..1cf841dfd --- /dev/null +++ b/rt/tabcompl/mf/compiler/icc/2013.3.163 @@ -0,0 +1,29 @@ +#%Module + +proc ModulesHelp { } { + puts stderr { C and C++ compiler from Intel - Homepage: http://software.intel.com/en-us/intel-compilers/ +} +} + +module-whatis {C and C++ compiler from Intel - Homepage: http://software.intel.com/en-us/intel-compilers/} + +set root /net/gmi.oeaw.ac.at/software/mendel/29_04_2013/software/icc/2013.3.163 + +conflict icc + +prepend-path IDB_HOME $root/bin/intel64 +prepend-path LD_LIBRARY_PATH $root/compiler/lib +prepend-path LD_LIBRARY_PATH $root/compiler/lib/intel64 +prepend-path MANPATH $root/man +prepend-path MANPATH $root/man/en_US +prepend-path PATH $root/bin +prepend-path PATH $root/bin/intel64 + +setenv EBROOTICC "$root" +setenv EBVERSIONICC "2013.3.163" +setenv EBDEVELICC "$root/easybuild/icc-2013.3.163-easybuild-devel" + +prepend-path INTEL_LICENSE_FILE /net/gmi.oeaw.ac.at/software/mendel/easybuild-home/licenses/intel/license.lic +prepend-path NLSPATH $root/idb/intel64/locale/%l_%t/%N + +# built with EasyBuild version 1.4.0 diff --git a/rt/tabcompl/mf/compiler/ifort/2013.2.146 b/rt/tabcompl/mf/compiler/ifort/2013.2.146 deleted file mode 120000 index 69bdb0e4c..000000000 --- a/rt/tabcompl/mf/compiler/ifort/2013.2.146 +++ /dev/null @@ -1 +0,0 @@ -../../all/ifort/2013.2.146 \ No newline at end of file diff --git a/rt/tabcompl/mf/compiler/ifort/2013.2.146 b/rt/tabcompl/mf/compiler/ifort/2013.2.146 new file mode 100644 index 000000000..1055cc7b3 --- /dev/null +++ b/rt/tabcompl/mf/compiler/ifort/2013.2.146 @@ -0,0 +1,29 @@ +#%Module + +proc ModulesHelp { } { + puts stderr { Fortran compiler from Intel - Homepage: http://software.intel.com/en-us/intel-compilers/ +} +} + +module-whatis {Fortran compiler from Intel - Homepage: http://software.intel.com/en-us/intel-compilers/} + +set root /net/gmi.oeaw.ac.at/software/mendel/29_04_2013/software/ifort/2013.2.146 + +conflict ifort + +prepend-path IDB_HOME $root/bin/intel64 +prepend-path LD_LIBRARY_PATH $root/compiler/lib +prepend-path LD_LIBRARY_PATH $root/compiler/lib/intel64 +prepend-path MANPATH $root/man +prepend-path MANPATH $root/man/en_US +prepend-path PATH $root/bin +prepend-path PATH $root/bin/intel64 + +setenv EBROOTIFORT "$root" +setenv EBVERSIONIFORT "2013.2.146" +setenv EBDEVELIFORT "$root/easybuild/ifort-2013.2.146-easybuild-devel" + +prepend-path INTEL_LICENSE_FILE /net/gmi.oeaw.ac.at/software/mendel/easybuild-home/licenses/intel/license.lic +prepend-path NLSPATH $root/idb/intel64/locale/%l_%t/%N + +# built with EasyBuild version 1.3.0 diff --git a/rt/tabcompl/mf/compiler/ifort/2013.3.163 b/rt/tabcompl/mf/compiler/ifort/2013.3.163 deleted file mode 120000 index ee5fc7348..000000000 --- a/rt/tabcompl/mf/compiler/ifort/2013.3.163 +++ /dev/null @@ -1 +0,0 @@ -../../all/ifort/2013.3.163 \ No newline at end of file diff --git a/rt/tabcompl/mf/compiler/ifort/2013.3.163 b/rt/tabcompl/mf/compiler/ifort/2013.3.163 new file mode 100644 index 000000000..c15288db5 --- /dev/null +++ b/rt/tabcompl/mf/compiler/ifort/2013.3.163 @@ -0,0 +1,29 @@ +#%Module + +proc ModulesHelp { } { + puts stderr { Fortran compiler from Intel - Homepage: http://software.intel.com/en-us/intel-compilers/ +} +} + +module-whatis {Fortran compiler from Intel - Homepage: http://software.intel.com/en-us/intel-compilers/} + +set root /net/gmi.oeaw.ac.at/software/mendel/29_04_2013/software/ifort/2013.3.163 + +conflict ifort + +prepend-path IDB_HOME $root/bin/intel64 +prepend-path LD_LIBRARY_PATH $root/compiler/lib +prepend-path LD_LIBRARY_PATH $root/compiler/lib/intel64 +prepend-path MANPATH $root/man +prepend-path MANPATH $root/man/en_US +prepend-path PATH $root/bin +prepend-path PATH $root/bin/intel64 + +setenv EBROOTIFORT "$root" +setenv EBVERSIONIFORT "2013.3.163" +setenv EBDEVELIFORT "$root/easybuild/ifort-2013.3.163-easybuild-devel" + +prepend-path INTEL_LICENSE_FILE /net/gmi.oeaw.ac.at/software/mendel/easybuild-home/licenses/intel/license.lic +prepend-path NLSPATH $root/idb/intel64/locale/%l_%t/%N + +# built with EasyBuild version 1.4.0 diff --git a/rt/tabcompl/mf/data/HDF5/1.8.7-goolf-1.4.10 b/rt/tabcompl/mf/data/HDF5/1.8.7-goolf-1.4.10 deleted file mode 120000 index f5663283e..000000000 --- a/rt/tabcompl/mf/data/HDF5/1.8.7-goolf-1.4.10 +++ /dev/null @@ -1 +0,0 @@ -../../all/HDF5/1.8.7-goolf-1.4.10 \ No newline at end of file diff --git a/rt/tabcompl/mf/data/HDF5/1.8.7-goolf-1.4.10 b/rt/tabcompl/mf/data/HDF5/1.8.7-goolf-1.4.10 new file mode 100644 index 000000000..0601d4f6f --- /dev/null +++ b/rt/tabcompl/mf/data/HDF5/1.8.7-goolf-1.4.10 @@ -0,0 +1,37 @@ +#%Module + +proc ModulesHelp { } { + puts stderr { HDF5 is a unique technology suite that makes possible the management of +extremely large and complex data collections. - Homepage: http://www.hdfgroup.org/HDF5/ +} +} + +module-whatis {HDF5 is a unique technology suite that makes possible the management of +extremely large and complex data collections. - Homepage: http://www.hdfgroup.org/HDF5/} + +set root /net/gmi.oeaw.ac.at/software/mendel/29_04_2013/software/HDF5/1.8.7-goolf-1.4.10 + +conflict HDF5 + +if { ![is-loaded goolf/1.4.10] } { + module load goolf/1.4.10 +} + +if { ![is-loaded zlib/1.2.7-goolf-1.4.10] } { + module load zlib/1.2.7-goolf-1.4.10 +} + +if { ![is-loaded Szip/2.1-goolf-1.4.10] } { + module load Szip/2.1-goolf-1.4.10 +} + +prepend-path CPATH $root/include +prepend-path LD_LIBRARY_PATH $root/lib +prepend-path PATH $root/bin + +setenv EBROOTHDF5 "$root" +setenv EBVERSIONHDF5 "1.8.7" +setenv EBDEVELHDF5 "$root/easybuild/HDF5-1.8.7-goolf-1.4.10-easybuild-devel" + + +# built with EasyBuild version 1.3.0 diff --git a/rt/tabcompl/mf/data/HDF5/1.8.9-goolf-1.4.10 b/rt/tabcompl/mf/data/HDF5/1.8.9-goolf-1.4.10 deleted file mode 120000 index 1baff8cb9..000000000 --- a/rt/tabcompl/mf/data/HDF5/1.8.9-goolf-1.4.10 +++ /dev/null @@ -1 +0,0 @@ -../../all/HDF5/1.8.9-goolf-1.4.10 \ No newline at end of file diff --git a/rt/tabcompl/mf/data/HDF5/1.8.9-goolf-1.4.10 b/rt/tabcompl/mf/data/HDF5/1.8.9-goolf-1.4.10 new file mode 100644 index 000000000..c6da20c28 --- /dev/null +++ b/rt/tabcompl/mf/data/HDF5/1.8.9-goolf-1.4.10 @@ -0,0 +1,37 @@ +#%Module + +proc ModulesHelp { } { + puts stderr { HDF5 is a unique technology suite that makes possible the management of +extremely large and complex data collections. - Homepage: http://www.hdfgroup.org/HDF5/ +} +} + +module-whatis {HDF5 is a unique technology suite that makes possible the management of +extremely large and complex data collections. - Homepage: http://www.hdfgroup.org/HDF5/} + +set root /net/gmi.oeaw.ac.at/software/mendel/29_04_2013/software/HDF5/1.8.9-goolf-1.4.10 + +conflict HDF5 + +if { ![is-loaded goolf/1.4.10] } { + module load goolf/1.4.10 +} + +if { ![is-loaded zlib/1.2.7-goolf-1.4.10] } { + module load zlib/1.2.7-goolf-1.4.10 +} + +if { ![is-loaded Szip/2.1-goolf-1.4.10] } { + module load Szip/2.1-goolf-1.4.10 +} + +prepend-path CPATH $root/include +prepend-path LD_LIBRARY_PATH $root/lib +prepend-path PATH $root/bin + +setenv EBROOTHDF5 "$root" +setenv EBVERSIONHDF5 "1.8.9" +setenv EBDEVELHDF5 "$root/easybuild/HDF5-1.8.9-goolf-1.4.10-easybuild-devel" + + +# built with EasyBuild version 1.3.0 diff --git a/rt/tabcompl/mf/data/h5py/2.0.1-goolf-1.4.10-Python-2.7.3 b/rt/tabcompl/mf/data/h5py/2.0.1-goolf-1.4.10-Python-2.7.3 deleted file mode 120000 index d084ff1ef..000000000 --- a/rt/tabcompl/mf/data/h5py/2.0.1-goolf-1.4.10-Python-2.7.3 +++ /dev/null @@ -1 +0,0 @@ -../../all/h5py/2.0.1-goolf-1.4.10-Python-2.7.3 \ No newline at end of file diff --git a/rt/tabcompl/mf/data/h5py/2.0.1-goolf-1.4.10-Python-2.7.3 b/rt/tabcompl/mf/data/h5py/2.0.1-goolf-1.4.10-Python-2.7.3 new file mode 100644 index 000000000..e41579fb2 --- /dev/null +++ b/rt/tabcompl/mf/data/h5py/2.0.1-goolf-1.4.10-Python-2.7.3 @@ -0,0 +1,38 @@ +#%Module + +proc ModulesHelp { } { + puts stderr { HDF5 for Python (h5py) is a general-purpose Python interface to the Hierarchical Data Format library, +version 5. HDF5 is a versatile, mature scientific software library designed for the fast, flexible storage of enormous +amounts of data. - Homepage: http://code.google.com/p/h5py/ +} +} + +module-whatis {HDF5 for Python (h5py) is a general-purpose Python interface to the Hierarchical Data Format library, +version 5. HDF5 is a versatile, mature scientific software library designed for the fast, flexible storage of enormous +amounts of data. - Homepage: http://code.google.com/p/h5py/} + +set root /net/gmi.oeaw.ac.at/software/mendel/29_04_2013/software/h5py/2.0.1-goolf-1.4.10-Python-2.7.3 + +conflict h5py + +if { ![is-loaded goolf/1.4.10] } { + module load goolf/1.4.10 +} + +if { ![is-loaded Python/2.7.3-goolf-1.4.10] } { + module load Python/2.7.3-goolf-1.4.10 +} + +if { ![is-loaded HDF5/1.8.7-goolf-1.4.10] } { + module load HDF5/1.8.7-goolf-1.4.10 +} + +prepend-path LD_LIBRARY_PATH $root/lib + +setenv EBROOTH5PY "$root" +setenv EBVERSIONH5PY "2.0.1" +setenv EBDEVELH5PY "$root/easybuild/h5py-2.0.1-goolf-1.4.10-Python-2.7.3-easybuild-devel" + +prepend-path PYTHONPATH $root/lib/python2.7/site-packages + +# built with EasyBuild version 1.3.0 diff --git a/rt/tabcompl/mf/data/h5utils/1.12.1-goolf-1.4.10 b/rt/tabcompl/mf/data/h5utils/1.12.1-goolf-1.4.10 deleted file mode 120000 index fa62ae9df..000000000 --- a/rt/tabcompl/mf/data/h5utils/1.12.1-goolf-1.4.10 +++ /dev/null @@ -1 +0,0 @@ -../../all/h5utils/1.12.1-goolf-1.4.10 \ No newline at end of file diff --git a/rt/tabcompl/mf/data/h5utils/1.12.1-goolf-1.4.10 b/rt/tabcompl/mf/data/h5utils/1.12.1-goolf-1.4.10 new file mode 100644 index 000000000..c99bcc975 --- /dev/null +++ b/rt/tabcompl/mf/data/h5utils/1.12.1-goolf-1.4.10 @@ -0,0 +1,48 @@ +#%Module + +proc ModulesHelp { } { + puts stderr { h5utils is a set of utilities for visualization and conversion of scientific data in the free, +portable HDF5 format. Besides providing a simple tool for batch visualization as PNG images, +h5utils also includes programs to convert HDF5 datasets into the formats required by other free visualization software +(e.g. plain text, Vis5d, and VTK). - Homepage: http://ab-initio.mit.edu/wiki/index.php/H5utils +} +} + +module-whatis {h5utils is a set of utilities for visualization and conversion of scientific data in the free, +portable HDF5 format. Besides providing a simple tool for batch visualization as PNG images, +h5utils also includes programs to convert HDF5 datasets into the formats required by other free visualization software +(e.g. plain text, Vis5d, and VTK). - Homepage: http://ab-initio.mit.edu/wiki/index.php/H5utils} + +set root /net/gmi.oeaw.ac.at/software/mendel/29_04_2013/software/h5utils/1.12.1-goolf-1.4.10 + +conflict h5utils + +if { ![is-loaded goolf/1.4.10] } { + module load goolf/1.4.10 +} + +if { ![is-loaded zlib/1.2.7-goolf-1.4.10] } { + module load zlib/1.2.7-goolf-1.4.10 +} + +if { ![is-loaded libpng/1.5.11-goolf-1.4.10] } { + module load libpng/1.5.11-goolf-1.4.10 +} + +if { ![is-loaded libmatheval/1.1.8-goolf-1.4.10] } { + module load libmatheval/1.1.8-goolf-1.4.10 +} + +if { ![is-loaded HDF5/1.8.7-goolf-1.4.10] } { + module load HDF5/1.8.7-goolf-1.4.10 +} + +prepend-path MANPATH $root/share/man +prepend-path PATH $root/bin + +setenv EBROOTH5UTILS "$root" +setenv EBVERSIONH5UTILS "1.12.1" +setenv EBDEVELH5UTILS "$root/easybuild/h5utils-1.12.1-goolf-1.4.10-easybuild-devel" + + +# built with EasyBuild version 1.3.0 diff --git a/rt/tabcompl/mf/data/pyTables/2.4.0-goolf-1.4.10-Python-2.7.3 b/rt/tabcompl/mf/data/pyTables/2.4.0-goolf-1.4.10-Python-2.7.3 deleted file mode 120000 index bdd658b09..000000000 --- a/rt/tabcompl/mf/data/pyTables/2.4.0-goolf-1.4.10-Python-2.7.3 +++ /dev/null @@ -1 +0,0 @@ -../../all/pyTables/2.4.0-goolf-1.4.10-Python-2.7.3 \ No newline at end of file diff --git a/rt/tabcompl/mf/data/pyTables/2.4.0-goolf-1.4.10-Python-2.7.3 b/rt/tabcompl/mf/data/pyTables/2.4.0-goolf-1.4.10-Python-2.7.3 new file mode 100644 index 000000000..e477fab00 --- /dev/null +++ b/rt/tabcompl/mf/data/pyTables/2.4.0-goolf-1.4.10-Python-2.7.3 @@ -0,0 +1,55 @@ +#%Module + +proc ModulesHelp { } { + puts stderr { PyTables is a package for managing hierarchical datasets and designed to efficiently and easily cope + with extremely large amounts of data. PyTables is built on top of the HDF5 library, using the Python language and the + NumPy package. It features an object-oriented interface that, combined with C extensions for the performance-critical + parts of the code (generated using Cython), makes it a fast, yet extremely easy to use tool for interactively browse, + process and search very large amounts of data. One important feature of PyTables is that it optimizes memory and disk + resources so that data takes much less space (specially if on-flight compression is used) than other solutions such as + relational or object oriented databases. - Homepage: http://www.pytables.org/moin +} +} + +module-whatis {PyTables is a package for managing hierarchical datasets and designed to efficiently and easily cope + with extremely large amounts of data. PyTables is built on top of the HDF5 library, using the Python language and the + NumPy package. It features an object-oriented interface that, combined with C extensions for the performance-critical + parts of the code (generated using Cython), makes it a fast, yet extremely easy to use tool for interactively browse, + process and search very large amounts of data. One important feature of PyTables is that it optimizes memory and disk + resources so that data takes much less space (specially if on-flight compression is used) than other solutions such as + relational or object oriented databases. - Homepage: http://www.pytables.org/moin} + +set root /net/gmi.oeaw.ac.at/software/mendel/29_04_2013/software/pyTables/2.4.0-goolf-1.4.10-Python-2.7.3 + +conflict pyTables + +if { ![is-loaded goolf/1.4.10] } { + module load goolf/1.4.10 +} + +if { ![is-loaded Python/2.7.3-goolf-1.4.10] } { + module load Python/2.7.3-goolf-1.4.10 +} + +if { ![is-loaded numexpr/2.0.1-goolf-1.4.10-Python-2.7.3] } { + module load numexpr/2.0.1-goolf-1.4.10-Python-2.7.3 +} + +if { ![is-loaded HDF5/1.8.7-goolf-1.4.10] } { + module load HDF5/1.8.7-goolf-1.4.10 +} + +if { ![is-loaded Cython/0.16-goolf-1.4.10-Python-2.7.3] } { + module load Cython/0.16-goolf-1.4.10-Python-2.7.3 +} + +prepend-path LD_LIBRARY_PATH $root/lib +prepend-path PATH $root/bin + +setenv EBROOTPYTABLES "$root" +setenv EBVERSIONPYTABLES "2.4.0" +setenv EBDEVELPYTABLES "$root/easybuild/pyTables-2.4.0-goolf-1.4.10-Python-2.7.3-easybuild-devel" + +prepend-path PYTHONPATH $root/lib/python2.7/site-packages + +# built with EasyBuild version 1.3.0 diff --git a/rt/tabcompl/mf/debugger/GDB/7.5.1-goolf-1.4.10 b/rt/tabcompl/mf/debugger/GDB/7.5.1-goolf-1.4.10 deleted file mode 120000 index 20c36946a..000000000 --- a/rt/tabcompl/mf/debugger/GDB/7.5.1-goolf-1.4.10 +++ /dev/null @@ -1 +0,0 @@ -../../all/GDB/7.5.1-goolf-1.4.10 \ No newline at end of file diff --git a/rt/tabcompl/mf/debugger/GDB/7.5.1-goolf-1.4.10 b/rt/tabcompl/mf/debugger/GDB/7.5.1-goolf-1.4.10 new file mode 100644 index 000000000..fe3274028 --- /dev/null +++ b/rt/tabcompl/mf/debugger/GDB/7.5.1-goolf-1.4.10 @@ -0,0 +1,33 @@ +#%Module + +proc ModulesHelp { } { + puts stderr { GDB-7.5.1: The GNU Project Debugger - Homepage: http://www.gnu.org/software/gdb/gdb.html +} +} + +module-whatis {GDB-7.5.1: The GNU Project Debugger - Homepage: http://www.gnu.org/software/gdb/gdb.html} + +set root /net/gmi.oeaw.ac.at/software/mendel/29_04_2013/software/GDB/7.5.1-goolf-1.4.10 + +conflict GDB + +if { ![is-loaded goolf/1.4.10] } { + module load goolf/1.4.10 +} + +if { ![is-loaded ncurses/5.9-goolf-1.4.10] } { + module load ncurses/5.9-goolf-1.4.10 +} + +prepend-path CPATH $root/include +prepend-path LD_LIBRARY_PATH $root/lib +prepend-path LD_LIBRARY_PATH $root/lib64 +prepend-path MANPATH $root/share/man +prepend-path PATH $root/bin + +setenv EBROOTGDB "$root" +setenv EBVERSIONGDB "7.5.1" +setenv EBDEVELGDB "$root/easybuild/GDB-7.5.1-goolf-1.4.10-easybuild-devel" + + +# built with EasyBuild version 1.3.0 diff --git a/rt/tabcompl/mf/debugger/Valgrind/3.8.1-goolf-1.4.10 b/rt/tabcompl/mf/debugger/Valgrind/3.8.1-goolf-1.4.10 deleted file mode 120000 index 9faec487f..000000000 --- a/rt/tabcompl/mf/debugger/Valgrind/3.8.1-goolf-1.4.10 +++ /dev/null @@ -1 +0,0 @@ -../../all/Valgrind/3.8.1-goolf-1.4.10 \ No newline at end of file diff --git a/rt/tabcompl/mf/debugger/Valgrind/3.8.1-goolf-1.4.10 b/rt/tabcompl/mf/debugger/Valgrind/3.8.1-goolf-1.4.10 new file mode 100644 index 000000000..49b14de4a --- /dev/null +++ b/rt/tabcompl/mf/debugger/Valgrind/3.8.1-goolf-1.4.10 @@ -0,0 +1,29 @@ +#%Module + +proc ModulesHelp { } { + puts stderr { Valgrind-3.8.1: Debugging and profiling tools - Homepage: http://valgrind.org/downloads/ +} +} + +module-whatis {Valgrind-3.8.1: Debugging and profiling tools - Homepage: http://valgrind.org/downloads/} + +set root /net/gmi.oeaw.ac.at/software/mendel/29_04_2013/software/Valgrind/3.8.1-goolf-1.4.10 + +conflict Valgrind + +if { ![is-loaded goolf/1.4.10] } { + module load goolf/1.4.10 +} + +prepend-path CPATH $root/include +prepend-path LD_LIBRARY_PATH $root/lib +prepend-path MANPATH $root/share/man +prepend-path PATH $root/bin +prepend-path PKG_CONFIG_PATH $root/lib/pkgconfig + +setenv EBROOTVALGRIND "$root" +setenv EBVERSIONVALGRIND "3.8.1" +setenv EBDEVELVALGRIND "$root/easybuild/Valgrind-3.8.1-goolf-1.4.10-easybuild-devel" + + +# built with EasyBuild version 1.3.0 diff --git a/rt/tabcompl/mf/devel/Autoconf/2.69-goolf-1.4.10 b/rt/tabcompl/mf/devel/Autoconf/2.69-goolf-1.4.10 deleted file mode 120000 index 4215b741d..000000000 --- a/rt/tabcompl/mf/devel/Autoconf/2.69-goolf-1.4.10 +++ /dev/null @@ -1 +0,0 @@ -../../all/Autoconf/2.69-goolf-1.4.10 \ No newline at end of file diff --git a/rt/tabcompl/mf/devel/Autoconf/2.69-goolf-1.4.10 b/rt/tabcompl/mf/devel/Autoconf/2.69-goolf-1.4.10 new file mode 100644 index 000000000..a1fbba92a --- /dev/null +++ b/rt/tabcompl/mf/devel/Autoconf/2.69-goolf-1.4.10 @@ -0,0 +1,30 @@ +#%Module + +proc ModulesHelp { } { + puts stderr { Autoconf is an extensible package of M4 macros that produce shell scripts to automatically configure software source code packages. These scripts can adapt the packages to many kinds of UNIX-like systems without manual user intervention. Autoconf creates a configuration script for a package from a template file that lists the operating system features that the package can use, in the form of M4 macro calls. - Homepage: http://www.gnu.org/software/autoconf/ +} +} + +module-whatis {Autoconf is an extensible package of M4 macros that produce shell scripts to automatically configure software source code packages. These scripts can adapt the packages to many kinds of UNIX-like systems without manual user intervention. Autoconf creates a configuration script for a package from a template file that lists the operating system features that the package can use, in the form of M4 macro calls. - Homepage: http://www.gnu.org/software/autoconf/} + +set root /net/gmi.oeaw.ac.at/software/mendel/29_04_2013/software/Autoconf/2.69-goolf-1.4.10 + +conflict Autoconf + +if { ![is-loaded goolf/1.4.10] } { + module load goolf/1.4.10 +} + +if { ![is-loaded M4/1.4.16-goolf-1.4.10] } { + module load M4/1.4.16-goolf-1.4.10 +} + +prepend-path MANPATH $root/share/man +prepend-path PATH $root/bin + +setenv EBROOTAUTOCONF "$root" +setenv EBVERSIONAUTOCONF "2.69" +setenv EBDEVELAUTOCONF "$root/easybuild/Autoconf-2.69-goolf-1.4.10-easybuild-devel" + + +# built with EasyBuild version 1.3.0 diff --git a/rt/tabcompl/mf/devel/Automake/1.13.1-goolf-1.4.10 b/rt/tabcompl/mf/devel/Automake/1.13.1-goolf-1.4.10 deleted file mode 120000 index c03c1b266..000000000 --- a/rt/tabcompl/mf/devel/Automake/1.13.1-goolf-1.4.10 +++ /dev/null @@ -1 +0,0 @@ -../../all/Automake/1.13.1-goolf-1.4.10 \ No newline at end of file diff --git a/rt/tabcompl/mf/devel/Automake/1.13.1-goolf-1.4.10 b/rt/tabcompl/mf/devel/Automake/1.13.1-goolf-1.4.10 new file mode 100644 index 000000000..c7c26e655 --- /dev/null +++ b/rt/tabcompl/mf/devel/Automake/1.13.1-goolf-1.4.10 @@ -0,0 +1,32 @@ +#%Module + +proc ModulesHelp { } { + puts stderr { Automake is a tool for automatically generating `Makefile.in' files compliant with the GNU Coding Standards. Automake requires the use of Autoconf. + - Homepage: http://www.gnu.org/software/automake/ +} +} + +module-whatis {Automake is a tool for automatically generating `Makefile.in' files compliant with the GNU Coding Standards. Automake requires the use of Autoconf. + - Homepage: http://www.gnu.org/software/automake/} + +set root /net/gmi.oeaw.ac.at/software/mendel/29_04_2013/software/Automake/1.13.1-goolf-1.4.10 + +conflict Automake + +if { ![is-loaded goolf/1.4.10] } { + module load goolf/1.4.10 +} + +if { ![is-loaded Autoconf/2.69-goolf-1.4.10] } { + module load Autoconf/2.69-goolf-1.4.10 +} + +prepend-path MANPATH $root/share/man +prepend-path PATH $root/bin + +setenv EBROOTAUTOMAKE "$root" +setenv EBVERSIONAUTOMAKE "1.13.1" +setenv EBDEVELAUTOMAKE "$root/easybuild/Automake-1.13.1-goolf-1.4.10-easybuild-devel" + + +# built with EasyBuild version 1.3.0 diff --git a/rt/tabcompl/mf/devel/Boost/1.51.0-goolf-1.4.10 b/rt/tabcompl/mf/devel/Boost/1.51.0-goolf-1.4.10 deleted file mode 120000 index b4dc12c04..000000000 --- a/rt/tabcompl/mf/devel/Boost/1.51.0-goolf-1.4.10 +++ /dev/null @@ -1 +0,0 @@ -../../all/Boost/1.51.0-goolf-1.4.10 \ No newline at end of file diff --git a/rt/tabcompl/mf/devel/Boost/1.51.0-goolf-1.4.10 b/rt/tabcompl/mf/devel/Boost/1.51.0-goolf-1.4.10 new file mode 100644 index 000000000..1be206739 --- /dev/null +++ b/rt/tabcompl/mf/devel/Boost/1.51.0-goolf-1.4.10 @@ -0,0 +1,34 @@ +#%Module + +proc ModulesHelp { } { + puts stderr { Boost provides free peer-reviewed portable C++ source libraries. - Homepage: http://www.boost.org/ +} +} + +module-whatis {Boost provides free peer-reviewed portable C++ source libraries. - Homepage: http://www.boost.org/} + +set root /net/gmi.oeaw.ac.at/software/mendel/29_04_2013/software/Boost/1.51.0-goolf-1.4.10 + +conflict Boost + +if { ![is-loaded goolf/1.4.10] } { + module load goolf/1.4.10 +} + +if { ![is-loaded bzip2/1.0.6-goolf-1.4.10] } { + module load bzip2/1.0.6-goolf-1.4.10 +} + +if { ![is-loaded zlib/1.2.8-goolf-1.4.10] } { + module load zlib/1.2.8-goolf-1.4.10 +} + +prepend-path CPATH $root/include +prepend-path LD_LIBRARY_PATH $root/lib + +setenv EBROOTBOOST "$root" +setenv EBVERSIONBOOST "1.51.0" +setenv EBDEVELBOOST "$root/easybuild/Boost-1.51.0-goolf-1.4.10-easybuild-devel" + + +# built with EasyBuild version 1.6.0 diff --git a/rt/tabcompl/mf/devel/Boost/1.51.0-goolf-1.4.10-Python-2.7.3 b/rt/tabcompl/mf/devel/Boost/1.51.0-goolf-1.4.10-Python-2.7.3 deleted file mode 120000 index c93d6b4b3..000000000 --- a/rt/tabcompl/mf/devel/Boost/1.51.0-goolf-1.4.10-Python-2.7.3 +++ /dev/null @@ -1 +0,0 @@ -../../all/Boost/1.51.0-goolf-1.4.10-Python-2.7.3 \ No newline at end of file diff --git a/rt/tabcompl/mf/devel/Boost/1.51.0-goolf-1.4.10-Python-2.7.3 b/rt/tabcompl/mf/devel/Boost/1.51.0-goolf-1.4.10-Python-2.7.3 new file mode 100644 index 000000000..d34f877c2 --- /dev/null +++ b/rt/tabcompl/mf/devel/Boost/1.51.0-goolf-1.4.10-Python-2.7.3 @@ -0,0 +1,34 @@ +#%Module + +proc ModulesHelp { } { + puts stderr { Boost provides free peer-reviewed portable C++ source libraries. - Homepage: http://www.boost.org/ +} +} + +module-whatis {Boost provides free peer-reviewed portable C++ source libraries. - Homepage: http://www.boost.org/} + +set root /net/gmi.oeaw.ac.at/software/mendel/29_04_2013/software/Boost/1.51.0-goolf-1.4.10-Python-2.7.3 + +conflict Boost + +if { ![is-loaded goolf/1.4.10] } { + module load goolf/1.4.10 +} + +if { ![is-loaded bzip2/1.0.6-goolf-1.4.10] } { + module load bzip2/1.0.6-goolf-1.4.10 +} + +if { ![is-loaded Python/2.7.3-goolf-1.4.10] } { + module load Python/2.7.3-goolf-1.4.10 +} + +prepend-path CPATH $root/include +prepend-path LD_LIBRARY_PATH $root/lib + +setenv EBROOTBOOST "$root" +setenv EBVERSIONBOOST "1.51.0" +setenv EBDEVELBOOST "$root/easybuild/Boost-1.51.0-goolf-1.4.10-Python-2.7.3-easybuild-devel" + + +# built with EasyBuild version 1.3.0 diff --git a/rt/tabcompl/mf/devel/CMake/2.8.11-goolf-1.4.10 b/rt/tabcompl/mf/devel/CMake/2.8.11-goolf-1.4.10 deleted file mode 120000 index f6e8d6a72..000000000 --- a/rt/tabcompl/mf/devel/CMake/2.8.11-goolf-1.4.10 +++ /dev/null @@ -1 +0,0 @@ -../../all/CMake/2.8.11-goolf-1.4.10 \ No newline at end of file diff --git a/rt/tabcompl/mf/devel/CMake/2.8.11-goolf-1.4.10 b/rt/tabcompl/mf/devel/CMake/2.8.11-goolf-1.4.10 new file mode 100644 index 000000000..c7fd6850a --- /dev/null +++ b/rt/tabcompl/mf/devel/CMake/2.8.11-goolf-1.4.10 @@ -0,0 +1,32 @@ +#%Module + +proc ModulesHelp { } { + puts stderr { CMake, the cross-platform, open-source build system. + CMake is a family of tools designed to build, test and package software. - Homepage: http://www.cmake.org +} +} + +module-whatis {CMake, the cross-platform, open-source build system. + CMake is a family of tools designed to build, test and package software. - Homepage: http://www.cmake.org} + +set root /net/gmi.oeaw.ac.at/software/mendel/29_04_2013/software/CMake/2.8.11-goolf-1.4.10 + +conflict CMake + +if { ![is-loaded goolf/1.4.10] } { + module load goolf/1.4.10 +} + +if { ![is-loaded ncurses/5.9-goolf-1.4.10] } { + module load ncurses/5.9-goolf-1.4.10 +} + +prepend-path MANPATH $root/man +prepend-path PATH $root/bin + +setenv EBROOTCMAKE "$root" +setenv EBVERSIONCMAKE "2.8.11" +setenv EBDEVELCMAKE "$root/easybuild/CMake-2.8.11-goolf-1.4.10-easybuild-devel" + + +# built with EasyBuild version 1.6.0dev diff --git a/rt/tabcompl/mf/devel/CMake/2.8.4-goolf-1.4.10 b/rt/tabcompl/mf/devel/CMake/2.8.4-goolf-1.4.10 deleted file mode 120000 index 95d0c600d..000000000 --- a/rt/tabcompl/mf/devel/CMake/2.8.4-goolf-1.4.10 +++ /dev/null @@ -1 +0,0 @@ -../../all/CMake/2.8.4-goolf-1.4.10 \ No newline at end of file diff --git a/rt/tabcompl/mf/devel/CMake/2.8.4-goolf-1.4.10 b/rt/tabcompl/mf/devel/CMake/2.8.4-goolf-1.4.10 new file mode 100644 index 000000000..bbe71101f --- /dev/null +++ b/rt/tabcompl/mf/devel/CMake/2.8.4-goolf-1.4.10 @@ -0,0 +1,28 @@ +#%Module + +proc ModulesHelp { } { + puts stderr { CMake, the cross-platform, open-source build system. +CMake is a family of tools designed to build, test and package software. - Homepage: http://www.cmake.org +} +} + +module-whatis {CMake, the cross-platform, open-source build system. +CMake is a family of tools designed to build, test and package software. - Homepage: http://www.cmake.org} + +set root /net/gmi.oeaw.ac.at/software/mendel/29_04_2013/software/CMake/2.8.4-goolf-1.4.10 + +conflict CMake + +if { ![is-loaded goolf/1.4.10] } { + module load goolf/1.4.10 +} + +prepend-path MANPATH $root/man +prepend-path PATH $root/bin + +setenv EBROOTCMAKE "$root" +setenv EBVERSIONCMAKE "2.8.4" +setenv EBDEVELCMAKE "$root/easybuild/CMake-2.8.4-goolf-1.4.10-easybuild-devel" + + +# built with EasyBuild version 1.3.0 diff --git a/rt/tabcompl/mf/devel/JUnit/4.10-Java-1.7.0_10 b/rt/tabcompl/mf/devel/JUnit/4.10-Java-1.7.0_10 deleted file mode 120000 index 924d1c8d3..000000000 --- a/rt/tabcompl/mf/devel/JUnit/4.10-Java-1.7.0_10 +++ /dev/null @@ -1 +0,0 @@ -../../all/JUnit/4.10-Java-1.7.0_10 \ No newline at end of file diff --git a/rt/tabcompl/mf/devel/JUnit/4.10-Java-1.7.0_10 b/rt/tabcompl/mf/devel/JUnit/4.10-Java-1.7.0_10 new file mode 100644 index 000000000..429104e75 --- /dev/null +++ b/rt/tabcompl/mf/devel/JUnit/4.10-Java-1.7.0_10 @@ -0,0 +1,26 @@ +#%Module + +proc ModulesHelp { } { + puts stderr { A programmer-oriented testing framework for Java. - Homepage: http://sourceforge.net/projects/junit +} +} + +module-whatis {A programmer-oriented testing framework for Java. - Homepage: http://sourceforge.net/projects/junit} + +set root /net/gmi.oeaw.ac.at/software/mendel/29_04_2013/software/JUnit/4.10-Java-1.7.0_10 + +conflict JUnit + +if { ![is-loaded Java/1.7.0_10] } { + module load Java/1.7.0_10 +} + + +setenv EBROOTJUNIT "$root" +setenv EBVERSIONJUNIT "4.10" +setenv EBDEVELJUNIT "$root/easybuild/JUnit-4.10-Java-1.7.0_10-easybuild-devel" + +prepend-path PATH $root/ +prepend-path CLASSPATH $root/junit-4.10.jar + +# built with EasyBuild version 1.3.0 diff --git a/rt/tabcompl/mf/devel/M4/1.4.16-goolf-1.4.10 b/rt/tabcompl/mf/devel/M4/1.4.16-goolf-1.4.10 deleted file mode 120000 index 9f351fcc2..000000000 --- a/rt/tabcompl/mf/devel/M4/1.4.16-goolf-1.4.10 +++ /dev/null @@ -1 +0,0 @@ -../../all/M4/1.4.16-goolf-1.4.10 \ No newline at end of file diff --git a/rt/tabcompl/mf/devel/M4/1.4.16-goolf-1.4.10 b/rt/tabcompl/mf/devel/M4/1.4.16-goolf-1.4.10 new file mode 100644 index 000000000..b87030c41 --- /dev/null +++ b/rt/tabcompl/mf/devel/M4/1.4.16-goolf-1.4.10 @@ -0,0 +1,34 @@ +#%Module + +proc ModulesHelp { } { + puts stderr { GNU M4 is an implementation of the traditional Unix macro processor. +It is mostly SVR4 compatible although it has some extensions +(for example, handling more than 9 positional parameters to macros). +GNU M4 also has built-in functions for including files, running shell commands, doing arithmetic, etc. + - Homepage: http://www.gnu.org/software/m4/m4.html +} +} + +module-whatis {GNU M4 is an implementation of the traditional Unix macro processor. +It is mostly SVR4 compatible although it has some extensions +(for example, handling more than 9 positional parameters to macros). +GNU M4 also has built-in functions for including files, running shell commands, doing arithmetic, etc. + - Homepage: http://www.gnu.org/software/m4/m4.html} + +set root /net/gmi.oeaw.ac.at/software/mendel/29_04_2013/software/M4/1.4.16-goolf-1.4.10 + +conflict M4 + +if { ![is-loaded goolf/1.4.10] } { + module load goolf/1.4.10 +} + +prepend-path MANPATH $root/share/man +prepend-path PATH $root/bin + +setenv EBROOTM4 "$root" +setenv EBVERSIONM4 "1.4.16" +setenv EBDEVELM4 "$root/easybuild/M4-1.4.16-goolf-1.4.10-easybuild-devel" + + +# built with EasyBuild version 1.3.0 diff --git a/rt/tabcompl/mf/devel/PyZMQ/2.2.0.1-goolf-1.4.10-Python-2.7.3-zmq2 b/rt/tabcompl/mf/devel/PyZMQ/2.2.0.1-goolf-1.4.10-Python-2.7.3-zmq2 deleted file mode 120000 index 94bc4376f..000000000 --- a/rt/tabcompl/mf/devel/PyZMQ/2.2.0.1-goolf-1.4.10-Python-2.7.3-zmq2 +++ /dev/null @@ -1 +0,0 @@ -../../all/PyZMQ/2.2.0.1-goolf-1.4.10-Python-2.7.3-zmq2 \ No newline at end of file diff --git a/rt/tabcompl/mf/devel/PyZMQ/2.2.0.1-goolf-1.4.10-Python-2.7.3-zmq2 b/rt/tabcompl/mf/devel/PyZMQ/2.2.0.1-goolf-1.4.10-Python-2.7.3-zmq2 new file mode 100644 index 000000000..eb059a6ed --- /dev/null +++ b/rt/tabcompl/mf/devel/PyZMQ/2.2.0.1-goolf-1.4.10-Python-2.7.3-zmq2 @@ -0,0 +1,34 @@ +#%Module + +proc ModulesHelp { } { + puts stderr { Python bindings for ZeroMQ - Homepage: http://www.zeromq.org/bindings:python + } +} + +module-whatis {Python bindings for ZeroMQ - Homepage: http://www.zeromq.org/bindings:python} + +set root /net/gmi.oeaw.ac.at/software/mendel/29_04_2013/software/PyZMQ/2.2.0.1-goolf-1.4.10-Python-2.7.3-zmq2 + +conflict PyZMQ + +if { ![is-loaded goolf/1.4.10] } { + module load goolf/1.4.10 +} + +if { ![is-loaded Python/2.7.3-goolf-1.4.10] } { + module load Python/2.7.3-goolf-1.4.10 +} + +if { ![is-loaded ZeroMQ/2.2.0-goolf-1.4.10] } { + module load ZeroMQ/2.2.0-goolf-1.4.10 +} + +prepend-path LD_LIBRARY_PATH $root/lib + +setenv EBROOTPYZMQ "$root" +setenv EBVERSIONPYZMQ "2.2.0.1" +setenv EBDEVELPYZMQ "$root/easybuild/PyZMQ-2.2.0.1-goolf-1.4.10-Python-2.7.3-zmq2-easybuild-devel" + +prepend-path PYTHONPATH $root/lib/python2.7/site-packages + +# built with EasyBuild version 1.8.2 diff --git a/rt/tabcompl/mf/devel/ZeroMQ/2.2.0-goolf-1.4.10 b/rt/tabcompl/mf/devel/ZeroMQ/2.2.0-goolf-1.4.10 deleted file mode 120000 index 323631936..000000000 --- a/rt/tabcompl/mf/devel/ZeroMQ/2.2.0-goolf-1.4.10 +++ /dev/null @@ -1 +0,0 @@ -../../all/ZeroMQ/2.2.0-goolf-1.4.10 \ No newline at end of file diff --git a/rt/tabcompl/mf/devel/ZeroMQ/2.2.0-goolf-1.4.10 b/rt/tabcompl/mf/devel/ZeroMQ/2.2.0-goolf-1.4.10 new file mode 100644 index 000000000..cde5f6225 --- /dev/null +++ b/rt/tabcompl/mf/devel/ZeroMQ/2.2.0-goolf-1.4.10 @@ -0,0 +1,46 @@ +#%Module + +proc ModulesHelp { } { + puts stderr { ZeroMQ looks like an embeddable networking library but acts like a concurrency framework. +It gives you sockets that carry atomic messages across various transports like in-process, +inter-process, TCP, and multicast. You can connect sockets N-to-N with patterns like fanout, +pub-sub, task distribution, and request-reply. It's fast enough to be the fabric for clustered +products. Its asynchronous I/O model gives you scalable multicore applications, built as asynchronous +message-processing tasks. It has a score of language APIs and runs on most operating systems. - Homepage: http://www.zeromq.org/ +} +} + +module-whatis {ZeroMQ looks like an embeddable networking library but acts like a concurrency framework. +It gives you sockets that carry atomic messages across various transports like in-process, +inter-process, TCP, and multicast. You can connect sockets N-to-N with patterns like fanout, +pub-sub, task distribution, and request-reply. It's fast enough to be the fabric for clustered +products. Its asynchronous I/O model gives you scalable multicore applications, built as asynchronous +message-processing tasks. It has a score of language APIs and runs on most operating systems. - Homepage: http://www.zeromq.org/} + +set root /net/gmi.oeaw.ac.at/software/mendel/29_04_2013/software/ZeroMQ/2.2.0-goolf-1.4.10 + +conflict ZeroMQ + +if { ![is-loaded goolf/1.4.10] } { + module load goolf/1.4.10 +} + +if { ![is-loaded OpenPGM/5.2.122-goolf-1.4.10] } { + module load OpenPGM/5.2.122-goolf-1.4.10 +} + +if { ![is-loaded util-linux/2.22.2-goolf-1.4.10] } { + module load util-linux/2.22.2-goolf-1.4.10 +} + +prepend-path CPATH $root/include +prepend-path LD_LIBRARY_PATH $root/lib +prepend-path MANPATH $root/share/man +prepend-path PKG_CONFIG_PATH $root/lib/pkgconfig + +setenv EBROOTZEROMQ "$root" +setenv EBVERSIONZEROMQ "2.2.0" +setenv EBDEVELZEROMQ "$root/easybuild/ZeroMQ-2.2.0-goolf-1.4.10-easybuild-devel" + + +# built with EasyBuild version 1.3.0 diff --git a/rt/tabcompl/mf/devel/gperf/3.0.4-goolf-1.4.10 b/rt/tabcompl/mf/devel/gperf/3.0.4-goolf-1.4.10 deleted file mode 120000 index ea641cd16..000000000 --- a/rt/tabcompl/mf/devel/gperf/3.0.4-goolf-1.4.10 +++ /dev/null @@ -1 +0,0 @@ -../../all/gperf/3.0.4-goolf-1.4.10 \ No newline at end of file diff --git a/rt/tabcompl/mf/devel/gperf/3.0.4-goolf-1.4.10 b/rt/tabcompl/mf/devel/gperf/3.0.4-goolf-1.4.10 new file mode 100644 index 000000000..5a7a75e57 --- /dev/null +++ b/rt/tabcompl/mf/devel/gperf/3.0.4-goolf-1.4.10 @@ -0,0 +1,32 @@ +#%Module + +proc ModulesHelp { } { + puts stderr { GNU gperf is a perfect hash function generator. For a given list of strings, it produces a hash +function and hash table, in form of C or C++ code, for looking up a value depending on the input string. The hash +function is perfect, which means that the hash table has no collisions, and the hash table lookup needs a single +string comparison only. - Homepage: http://www.gnu.org/software/gperf/ +} +} + +module-whatis {GNU gperf is a perfect hash function generator. For a given list of strings, it produces a hash +function and hash table, in form of C or C++ code, for looking up a value depending on the input string. The hash +function is perfect, which means that the hash table has no collisions, and the hash table lookup needs a single +string comparison only. - Homepage: http://www.gnu.org/software/gperf/} + +set root /net/gmi.oeaw.ac.at/software/mendel/29_04_2013/software/gperf/3.0.4-goolf-1.4.10 + +conflict gperf + +if { ![is-loaded goolf/1.4.10] } { + module load goolf/1.4.10 +} + +prepend-path MANPATH $root/share/man +prepend-path PATH $root/bin + +setenv EBROOTGPERF "$root" +setenv EBVERSIONGPERF "3.0.4" +setenv EBDEVELGPERF "$root/easybuild/gperf-3.0.4-goolf-1.4.10-easybuild-devel" + + +# built with EasyBuild version 1.6.0dev diff --git a/rt/tabcompl/mf/devel/ncurses/5.9-goalf-1.1.0-no-OFED b/rt/tabcompl/mf/devel/ncurses/5.9-goalf-1.1.0-no-OFED deleted file mode 120000 index 7c95e335d..000000000 --- a/rt/tabcompl/mf/devel/ncurses/5.9-goalf-1.1.0-no-OFED +++ /dev/null @@ -1 +0,0 @@ -../../all/ncurses/5.9-goalf-1.1.0-no-OFED \ No newline at end of file diff --git a/rt/tabcompl/mf/devel/ncurses/5.9-goalf-1.1.0-no-OFED b/rt/tabcompl/mf/devel/ncurses/5.9-goalf-1.1.0-no-OFED new file mode 100644 index 000000000..d1673a231 --- /dev/null +++ b/rt/tabcompl/mf/devel/ncurses/5.9-goalf-1.1.0-no-OFED @@ -0,0 +1,32 @@ +#%Module + +proc ModulesHelp { } { + puts stderr { The Ncurses (new curses) library is a free software emulation of curses in System V Release 4.0, + and more. It uses Terminfo format, supports pads and color and multiple highlights and forms characters and + function-key mapping, and has all the other SYSV-curses enhancements over BSD Curses. - Homepage: http://www.gnu.org/software/ncurses/ +} +} + +module-whatis {The Ncurses (new curses) library is a free software emulation of curses in System V Release 4.0, + and more. It uses Terminfo format, supports pads and color and multiple highlights and forms characters and + function-key mapping, and has all the other SYSV-curses enhancements over BSD Curses. - Homepage: http://www.gnu.org/software/ncurses/} + +set root /net/gmi.oeaw.ac.at/software/mendel/29_04_2013/software/ncurses/5.9-goalf-1.1.0-no-OFED + +conflict ncurses + +if { ![is-loaded goalf/1.1.0-no-OFED] } { + module load goalf/1.1.0-no-OFED +} + +prepend-path CPATH $root/include +prepend-path LD_LIBRARY_PATH $root/lib +prepend-path MANPATH $root/man +prepend-path PATH $root/bin + +setenv EBROOTNCURSES "$root" +setenv EBVERSIONNCURSES "5.9" +setenv EBDEVELNCURSES "$root/easybuild/ncurses-5.9-goalf-1.1.0-no-OFED-easybuild-devel" + + +# built with EasyBuild version 1.3.0 diff --git a/rt/tabcompl/mf/devel/ncurses/5.9-goolf-1.4.10 b/rt/tabcompl/mf/devel/ncurses/5.9-goolf-1.4.10 deleted file mode 120000 index f54b4e1a2..000000000 --- a/rt/tabcompl/mf/devel/ncurses/5.9-goolf-1.4.10 +++ /dev/null @@ -1 +0,0 @@ -../../all/ncurses/5.9-goolf-1.4.10 \ No newline at end of file diff --git a/rt/tabcompl/mf/devel/ncurses/5.9-goolf-1.4.10 b/rt/tabcompl/mf/devel/ncurses/5.9-goolf-1.4.10 new file mode 100644 index 000000000..b12770a56 --- /dev/null +++ b/rt/tabcompl/mf/devel/ncurses/5.9-goolf-1.4.10 @@ -0,0 +1,32 @@ +#%Module + +proc ModulesHelp { } { + puts stderr { The Ncurses (new curses) library is a free software emulation of curses in System V Release 4.0, +and more. It uses Terminfo format, supports pads and color and multiple highlights and forms characters and +function-key mapping, and has all the other SYSV-curses enhancements over BSD Curses. - Homepage: http://www.gnu.org/software/ncurses/ +} +} + +module-whatis {The Ncurses (new curses) library is a free software emulation of curses in System V Release 4.0, +and more. It uses Terminfo format, supports pads and color and multiple highlights and forms characters and +function-key mapping, and has all the other SYSV-curses enhancements over BSD Curses. - Homepage: http://www.gnu.org/software/ncurses/} + +set root /net/gmi.oeaw.ac.at/software/mendel/29_04_2013/software/ncurses/5.9-goolf-1.4.10 + +conflict ncurses + +if { ![is-loaded goolf/1.4.10] } { + module load goolf/1.4.10 +} + +prepend-path CPATH $root/include +prepend-path LD_LIBRARY_PATH $root/lib +prepend-path MANPATH $root/man +prepend-path PATH $root/bin + +setenv EBROOTNCURSES "$root" +setenv EBVERSIONNCURSES "5.9" +setenv EBDEVELNCURSES "$root/easybuild/ncurses-5.9-goolf-1.4.10-easybuild-devel" + + +# built with EasyBuild version 1.3.0 diff --git a/rt/tabcompl/mf/devel/ncurses/5.9-ictce-5.2.0 b/rt/tabcompl/mf/devel/ncurses/5.9-ictce-5.2.0 deleted file mode 120000 index 3eecb0022..000000000 --- a/rt/tabcompl/mf/devel/ncurses/5.9-ictce-5.2.0 +++ /dev/null @@ -1 +0,0 @@ -../../all/ncurses/5.9-ictce-5.2.0 \ No newline at end of file diff --git a/rt/tabcompl/mf/devel/ncurses/5.9-ictce-5.2.0 b/rt/tabcompl/mf/devel/ncurses/5.9-ictce-5.2.0 new file mode 100644 index 000000000..f00f1698c --- /dev/null +++ b/rt/tabcompl/mf/devel/ncurses/5.9-ictce-5.2.0 @@ -0,0 +1,32 @@ +#%Module + +proc ModulesHelp { } { + puts stderr { The Ncurses (new curses) library is a free software emulation of curses in System V Release 4.0, + and more. It uses Terminfo format, supports pads and color and multiple highlights and forms characters and + function-key mapping, and has all the other SYSV-curses enhancements over BSD Curses. - Homepage: http://www.gnu.org/software/ncurses/ +} +} + +module-whatis {The Ncurses (new curses) library is a free software emulation of curses in System V Release 4.0, + and more. It uses Terminfo format, supports pads and color and multiple highlights and forms characters and + function-key mapping, and has all the other SYSV-curses enhancements over BSD Curses. - Homepage: http://www.gnu.org/software/ncurses/} + +set root /net/gmi.oeaw.ac.at/software/mendel/29_04_2013/software/ncurses/5.9-ictce-5.2.0 + +conflict ncurses + +if { ![is-loaded ictce/5.2.0] } { + module load ictce/5.2.0 +} + +prepend-path CPATH $root/include +prepend-path LD_LIBRARY_PATH $root/lib +prepend-path MANPATH $root/man +prepend-path PATH $root/bin + +setenv EBROOTNCURSES "$root" +setenv EBVERSIONNCURSES "5.9" +setenv EBDEVELNCURSES "$root/easybuild/ncurses-5.9-ictce-5.2.0-easybuild-devel" + + +# built with EasyBuild version 1.3.0 diff --git a/rt/tabcompl/mf/devel/ncurses/5.9-ictce-5.3.0 b/rt/tabcompl/mf/devel/ncurses/5.9-ictce-5.3.0 deleted file mode 120000 index 753fddaea..000000000 --- a/rt/tabcompl/mf/devel/ncurses/5.9-ictce-5.3.0 +++ /dev/null @@ -1 +0,0 @@ -../../all/ncurses/5.9-ictce-5.3.0 \ No newline at end of file diff --git a/rt/tabcompl/mf/devel/ncurses/5.9-ictce-5.3.0 b/rt/tabcompl/mf/devel/ncurses/5.9-ictce-5.3.0 new file mode 100644 index 000000000..896cd2e48 --- /dev/null +++ b/rt/tabcompl/mf/devel/ncurses/5.9-ictce-5.3.0 @@ -0,0 +1,32 @@ +#%Module + +proc ModulesHelp { } { + puts stderr { The Ncurses (new curses) library is a free software emulation of curses in System V Release 4.0, + and more. It uses Terminfo format, supports pads and color and multiple highlights and forms characters and + function-key mapping, and has all the other SYSV-curses enhancements over BSD Curses. - Homepage: http://www.gnu.org/software/ncurses/ +} +} + +module-whatis {The Ncurses (new curses) library is a free software emulation of curses in System V Release 4.0, + and more. It uses Terminfo format, supports pads and color and multiple highlights and forms characters and + function-key mapping, and has all the other SYSV-curses enhancements over BSD Curses. - Homepage: http://www.gnu.org/software/ncurses/} + +set root /net/gmi.oeaw.ac.at/software/mendel/29_04_2013/software/ncurses/5.9-ictce-5.3.0 + +conflict ncurses + +if { ![is-loaded ictce/5.3.0] } { + module load ictce/5.3.0 +} + +prepend-path CPATH $root/include +prepend-path LD_LIBRARY_PATH $root/lib +prepend-path MANPATH $root/man +prepend-path PATH $root/bin + +setenv EBROOTNCURSES "$root" +setenv EBVERSIONNCURSES "5.9" +setenv EBDEVELNCURSES "$root/easybuild/ncurses-5.9-ictce-5.3.0-easybuild-devel" + + +# built with EasyBuild version 1.4.0 diff --git a/rt/tabcompl/mf/devel/pkg-config/0.27.1-goolf-1.4.10 b/rt/tabcompl/mf/devel/pkg-config/0.27.1-goolf-1.4.10 deleted file mode 120000 index 5236c3a50..000000000 --- a/rt/tabcompl/mf/devel/pkg-config/0.27.1-goolf-1.4.10 +++ /dev/null @@ -1 +0,0 @@ -../../all/pkg-config/0.27.1-goolf-1.4.10 \ No newline at end of file diff --git a/rt/tabcompl/mf/devel/pkg-config/0.27.1-goolf-1.4.10 b/rt/tabcompl/mf/devel/pkg-config/0.27.1-goolf-1.4.10 new file mode 100644 index 000000000..21f5b1ef7 --- /dev/null +++ b/rt/tabcompl/mf/devel/pkg-config/0.27.1-goolf-1.4.10 @@ -0,0 +1,34 @@ +#%Module + +proc ModulesHelp { } { + puts stderr { pkg-config is a helper tool used when compiling applications and libraries. It helps you insert the +correct compiler options on the command line so an application can use +gcc -o test test.c `pkg-config --libs --cflags glib-2.0` +for instance, rather than hard-coding values on where to find glib (or other libraries). + - Homepage: http://www.freedesktop.org/wiki/Software/pkg-config/ +} +} + +module-whatis {pkg-config is a helper tool used when compiling applications and libraries. It helps you insert the +correct compiler options on the command line so an application can use +gcc -o test test.c `pkg-config --libs --cflags glib-2.0` +for instance, rather than hard-coding values on where to find glib (or other libraries). + - Homepage: http://www.freedesktop.org/wiki/Software/pkg-config/} + +set root /net/gmi.oeaw.ac.at/software/mendel/29_04_2013/software/pkg-config/0.27.1-goolf-1.4.10 + +conflict pkg-config + +if { ![is-loaded goolf/1.4.10] } { + module load goolf/1.4.10 +} + +prepend-path MANPATH $root/share/man +prepend-path PATH $root/bin + +setenv EBROOTPKGMINCONFIG "$root" +setenv EBVERSIONPKGMINCONFIG "0.27.1" +setenv EBDEVELPKGMINCONFIG "$root/easybuild/pkg-config-0.27.1-goolf-1.4.10-easybuild-devel" + + +# built with EasyBuild version 1.3.0 diff --git a/rt/tabcompl/mf/devel/setuptools/0.6c11-goolf-1.4.10-Python-2.7.3 b/rt/tabcompl/mf/devel/setuptools/0.6c11-goolf-1.4.10-Python-2.7.3 deleted file mode 120000 index b921bacc6..000000000 --- a/rt/tabcompl/mf/devel/setuptools/0.6c11-goolf-1.4.10-Python-2.7.3 +++ /dev/null @@ -1 +0,0 @@ -../../all/setuptools/0.6c11-goolf-1.4.10-Python-2.7.3 \ No newline at end of file diff --git a/rt/tabcompl/mf/devel/setuptools/0.6c11-goolf-1.4.10-Python-2.7.3 b/rt/tabcompl/mf/devel/setuptools/0.6c11-goolf-1.4.10-Python-2.7.3 new file mode 100644 index 000000000..c4c5b4df3 --- /dev/null +++ b/rt/tabcompl/mf/devel/setuptools/0.6c11-goolf-1.4.10-Python-2.7.3 @@ -0,0 +1,31 @@ +#%Module + +proc ModulesHelp { } { + puts stderr { Download, build, install, upgrade, and uninstall Python packages -- easily! - Homepage: http://pypi.python.org/pypi/setuptools/ + } +} + +module-whatis {Download, build, install, upgrade, and uninstall Python packages -- easily! - Homepage: http://pypi.python.org/pypi/setuptools/} + +set root /net/gmi.oeaw.ac.at/software/mendel/29_04_2013/software/setuptools/0.6c11-goolf-1.4.10-Python-2.7.3 + +conflict setuptools + +if { ![is-loaded goolf/1.4.10] } { + module load goolf/1.4.10 +} + +if { ![is-loaded Python/2.7.3-goolf-1.4.10] } { + module load Python/2.7.3-goolf-1.4.10 +} + +prepend-path LD_LIBRARY_PATH $root/lib +prepend-path PATH $root/bin + +setenv EBROOTSETUPTOOLS "$root" +setenv EBVERSIONSETUPTOOLS "0.6c11" +setenv EBDEVELSETUPTOOLS "$root/easybuild/setuptools-0.6c11-goolf-1.4.10-Python-2.7.3-easybuild-devel" + +prepend-path PYTHONPATH $root/lib/python2.7/site-packages + +# built with EasyBuild version 1.8.2 diff --git a/rt/tabcompl/mf/devel/setuptools/0.7.8-goolf-1.4.10-Python-2.7.3 b/rt/tabcompl/mf/devel/setuptools/0.7.8-goolf-1.4.10-Python-2.7.3 deleted file mode 120000 index d8c545d3c..000000000 --- a/rt/tabcompl/mf/devel/setuptools/0.7.8-goolf-1.4.10-Python-2.7.3 +++ /dev/null @@ -1 +0,0 @@ -../../all/setuptools/0.7.8-goolf-1.4.10-Python-2.7.3 \ No newline at end of file diff --git a/rt/tabcompl/mf/devel/setuptools/0.7.8-goolf-1.4.10-Python-2.7.3 b/rt/tabcompl/mf/devel/setuptools/0.7.8-goolf-1.4.10-Python-2.7.3 new file mode 100644 index 000000000..54584cc41 --- /dev/null +++ b/rt/tabcompl/mf/devel/setuptools/0.7.8-goolf-1.4.10-Python-2.7.3 @@ -0,0 +1,31 @@ +#%Module + +proc ModulesHelp { } { + puts stderr { Download, build, install, upgrade, and uninstall Python packages -- easily! - Homepage: http://pypi.python.org/pypi/setuptools/ + } +} + +module-whatis {Download, build, install, upgrade, and uninstall Python packages -- easily! - Homepage: http://pypi.python.org/pypi/setuptools/} + +set root /net/gmi.oeaw.ac.at/software/mendel/29_04_2013/software/setuptools/0.7.8-goolf-1.4.10-Python-2.7.3 + +conflict setuptools + +if { ![is-loaded goolf/1.4.10] } { + module load goolf/1.4.10 +} + +if { ![is-loaded Python/2.7.3-goolf-1.4.10] } { + module load Python/2.7.3-goolf-1.4.10 +} + +prepend-path LD_LIBRARY_PATH $root/lib +prepend-path PATH $root/bin + +setenv EBROOTSETUPTOOLS "$root" +setenv EBVERSIONSETUPTOOLS "0.7.8" +setenv EBDEVELSETUPTOOLS "$root/easybuild/setuptools-0.7.8-goolf-1.4.10-Python-2.7.3-easybuild-devel" + +prepend-path PYTHONPATH $root/lib/python2.7/site-packages + +# built with EasyBuild version 1.8.2 diff --git a/rt/tabcompl/mf/lang/Bison/2.5-goolf-1.4.10 b/rt/tabcompl/mf/lang/Bison/2.5-goolf-1.4.10 deleted file mode 120000 index 0dffb3405..000000000 --- a/rt/tabcompl/mf/lang/Bison/2.5-goolf-1.4.10 +++ /dev/null @@ -1 +0,0 @@ -../../all/Bison/2.5-goolf-1.4.10 \ No newline at end of file diff --git a/rt/tabcompl/mf/lang/Bison/2.5-goolf-1.4.10 b/rt/tabcompl/mf/lang/Bison/2.5-goolf-1.4.10 new file mode 100644 index 000000000..2609c05f3 --- /dev/null +++ b/rt/tabcompl/mf/lang/Bison/2.5-goolf-1.4.10 @@ -0,0 +1,29 @@ +#%Module + +proc ModulesHelp { } { + puts stderr { Bison is a general-purpose parser generator that converts an annotated context-free grammar +into a deterministic LR or generalized LR (GLR) parser employing LALR(1) parser tables. - Homepage: http://www.gnu.org/software/bison +} +} + +module-whatis {Bison is a general-purpose parser generator that converts an annotated context-free grammar +into a deterministic LR or generalized LR (GLR) parser employing LALR(1) parser tables. - Homepage: http://www.gnu.org/software/bison} + +set root /net/gmi.oeaw.ac.at/software/mendel/29_04_2013/software/Bison/2.5-goolf-1.4.10 + +conflict Bison + +if { ![is-loaded goolf/1.4.10] } { + module load goolf/1.4.10 +} + +prepend-path LD_LIBRARY_PATH $root/lib +prepend-path MANPATH $root/share/man +prepend-path PATH $root/bin + +setenv EBROOTBISON "$root" +setenv EBVERSIONBISON "2.5" +setenv EBDEVELBISON "$root/easybuild/Bison-2.5-goolf-1.4.10-easybuild-devel" + + +# built with EasyBuild version 1.3.0 diff --git a/rt/tabcompl/mf/lang/Cython/0.16-goolf-1.4.10-Python-2.7.3 b/rt/tabcompl/mf/lang/Cython/0.16-goolf-1.4.10-Python-2.7.3 deleted file mode 120000 index ba6c109c8..000000000 --- a/rt/tabcompl/mf/lang/Cython/0.16-goolf-1.4.10-Python-2.7.3 +++ /dev/null @@ -1 +0,0 @@ -../../all/Cython/0.16-goolf-1.4.10-Python-2.7.3 \ No newline at end of file diff --git a/rt/tabcompl/mf/lang/Cython/0.16-goolf-1.4.10-Python-2.7.3 b/rt/tabcompl/mf/lang/Cython/0.16-goolf-1.4.10-Python-2.7.3 new file mode 100644 index 000000000..173ddfee6 --- /dev/null +++ b/rt/tabcompl/mf/lang/Cython/0.16-goolf-1.4.10-Python-2.7.3 @@ -0,0 +1,33 @@ +#%Module + +proc ModulesHelp { } { + puts stderr { The Cython language makes writing C extensions for the Python language as easy as Python itself. +Cython is a source code translator based on the well-known Pyrex, but supports more cutting edge functionality and optimizations. - Homepage: http://pypi.python.org/pypi/Cython/ +} +} + +module-whatis {The Cython language makes writing C extensions for the Python language as easy as Python itself. +Cython is a source code translator based on the well-known Pyrex, but supports more cutting edge functionality and optimizations. - Homepage: http://pypi.python.org/pypi/Cython/} + +set root /net/gmi.oeaw.ac.at/software/mendel/29_04_2013/software/Cython/0.16-goolf-1.4.10-Python-2.7.3 + +conflict Cython + +if { ![is-loaded goolf/1.4.10] } { + module load goolf/1.4.10 +} + +if { ![is-loaded Python/2.7.3-goolf-1.4.10] } { + module load Python/2.7.3-goolf-1.4.10 +} + +prepend-path LD_LIBRARY_PATH $root/lib +prepend-path PATH $root/bin + +setenv EBROOTCYTHON "$root" +setenv EBVERSIONCYTHON "0.16" +setenv EBDEVELCYTHON "$root/easybuild/Cython-0.16-goolf-1.4.10-Python-2.7.3-easybuild-devel" + +prepend-path PYTHONPATH $root/lib/python2.7/site-packages + +# built with EasyBuild version 1.3.0 diff --git a/rt/tabcompl/mf/lang/Cython/0.16-ictce-5.3.0-Python-2.7.3 b/rt/tabcompl/mf/lang/Cython/0.16-ictce-5.3.0-Python-2.7.3 deleted file mode 120000 index b12dd031b..000000000 --- a/rt/tabcompl/mf/lang/Cython/0.16-ictce-5.3.0-Python-2.7.3 +++ /dev/null @@ -1 +0,0 @@ -../../all/Cython/0.16-ictce-5.3.0-Python-2.7.3 \ No newline at end of file diff --git a/rt/tabcompl/mf/lang/Cython/0.16-ictce-5.3.0-Python-2.7.3 b/rt/tabcompl/mf/lang/Cython/0.16-ictce-5.3.0-Python-2.7.3 new file mode 100644 index 000000000..621a17bc8 --- /dev/null +++ b/rt/tabcompl/mf/lang/Cython/0.16-ictce-5.3.0-Python-2.7.3 @@ -0,0 +1,33 @@ +#%Module + +proc ModulesHelp { } { + puts stderr { The Cython language makes writing C extensions for the Python language as easy as Python itself. + Cython is a source code translator based on the well-known Pyrex, but supports more cutting edge functionality and optimizations. - Homepage: http://pypi.python.org/pypi/Cython/ +} +} + +module-whatis {The Cython language makes writing C extensions for the Python language as easy as Python itself. + Cython is a source code translator based on the well-known Pyrex, but supports more cutting edge functionality and optimizations. - Homepage: http://pypi.python.org/pypi/Cython/} + +set root /net/gmi.oeaw.ac.at/software/mendel/29_04_2013/software/Cython/0.16-ictce-5.3.0-Python-2.7.3 + +conflict Cython + +if { ![is-loaded ictce/5.3.0] } { + module load ictce/5.3.0 +} + +if { ![is-loaded Python/2.7.3-ictce-5.3.0] } { + module load Python/2.7.3-ictce-5.3.0 +} + +prepend-path LD_LIBRARY_PATH $root/lib +prepend-path PATH $root/bin + +setenv EBROOTCYTHON "$root" +setenv EBVERSIONCYTHON "0.16" +setenv EBDEVELCYTHON "$root/easybuild/Cython-0.16-ictce-5.3.0-Python-2.7.3-easybuild-devel" + +prepend-path PYTHONPATH $root/lib/python2.7/site-packages + +# built with EasyBuild version 1.6.0dev diff --git a/rt/tabcompl/mf/lang/Python/2.7.3-goalf-1.1.0-no-OFED b/rt/tabcompl/mf/lang/Python/2.7.3-goalf-1.1.0-no-OFED deleted file mode 120000 index 1e9a22bed..000000000 --- a/rt/tabcompl/mf/lang/Python/2.7.3-goalf-1.1.0-no-OFED +++ /dev/null @@ -1 +0,0 @@ -../../all/Python/2.7.3-goalf-1.1.0-no-OFED \ No newline at end of file diff --git a/rt/tabcompl/mf/lang/Python/2.7.3-goalf-1.1.0-no-OFED b/rt/tabcompl/mf/lang/Python/2.7.3-goalf-1.1.0-no-OFED new file mode 100644 index 000000000..8d0b4f1f8 --- /dev/null +++ b/rt/tabcompl/mf/lang/Python/2.7.3-goalf-1.1.0-no-OFED @@ -0,0 +1,46 @@ +#%Module + +proc ModulesHelp { } { + puts stderr { Python is a programming language that lets you work more quickly and integrate your systems more effectively. - Homepage: http://python.org/ +} +} + +module-whatis {Python is a programming language that lets you work more quickly and integrate your systems more effectively. - Homepage: http://python.org/} + +set root /net/gmi.oeaw.ac.at/software/mendel/29_04_2013/software/Python/2.7.3-goalf-1.1.0-no-OFED + +conflict Python + +if { ![is-loaded goalf/1.1.0-no-OFED] } { + module load goalf/1.1.0-no-OFED +} + +if { ![is-loaded bzip2/1.0.6-goalf-1.1.0-no-OFED] } { + module load bzip2/1.0.6-goalf-1.1.0-no-OFED +} + +if { ![is-loaded zlib/1.2.7-goalf-1.1.0-no-OFED] } { + module load zlib/1.2.7-goalf-1.1.0-no-OFED +} + +if { ![is-loaded libreadline/6.2-goalf-1.1.0-no-OFED] } { + module load libreadline/6.2-goalf-1.1.0-no-OFED +} + +if { ![is-loaded ncurses/5.9-goalf-1.1.0-no-OFED] } { + module load ncurses/5.9-goalf-1.1.0-no-OFED +} + +prepend-path CPATH $root/include +prepend-path LD_LIBRARY_PATH $root/lib +prepend-path MANPATH $root/share/man +prepend-path PATH $root/bin +prepend-path PKG_CONFIG_PATH $root/lib/pkgconfig + +setenv EBROOTPYTHON "$root" +setenv EBVERSIONPYTHON "2.7.3" +setenv EBDEVELPYTHON "$root/easybuild/Python-2.7.3-goalf-1.1.0-no-OFED-easybuild-devel" + +setenv EBEXTSLISTPYTHON "setuptools-0.6c11,nose-1.1.2,numpy-1.6.1,scipy-0.10.1,paycheck-1.0.2,argparse-1.2.1,lockfile-0.9.1" + +# built with EasyBuild version 1.3.0 diff --git a/rt/tabcompl/mf/lang/Python/2.7.3-goolf-1.4.10 b/rt/tabcompl/mf/lang/Python/2.7.3-goolf-1.4.10 deleted file mode 120000 index 6b675adaa..000000000 --- a/rt/tabcompl/mf/lang/Python/2.7.3-goolf-1.4.10 +++ /dev/null @@ -1 +0,0 @@ -../../all/Python/2.7.3-goolf-1.4.10 \ No newline at end of file diff --git a/rt/tabcompl/mf/lang/Python/2.7.3-goolf-1.4.10 b/rt/tabcompl/mf/lang/Python/2.7.3-goolf-1.4.10 new file mode 100644 index 000000000..9813e6230 --- /dev/null +++ b/rt/tabcompl/mf/lang/Python/2.7.3-goolf-1.4.10 @@ -0,0 +1,46 @@ +#%Module + +proc ModulesHelp { } { + puts stderr { Python is a programming language that lets you work more quickly and integrate your systems more effectively. - Homepage: http://python.org/ +} +} + +module-whatis {Python is a programming language that lets you work more quickly and integrate your systems more effectively. - Homepage: http://python.org/} + +set root /net/gmi.oeaw.ac.at/software/mendel/29_04_2013/software/Python/2.7.3-goolf-1.4.10 + +conflict Python + +if { ![is-loaded goolf/1.4.10] } { + module load goolf/1.4.10 +} + +if { ![is-loaded bzip2/1.0.6-goolf-1.4.10] } { + module load bzip2/1.0.6-goolf-1.4.10 +} + +if { ![is-loaded zlib/1.2.7-goolf-1.4.10] } { + module load zlib/1.2.7-goolf-1.4.10 +} + +if { ![is-loaded libreadline/6.2-goolf-1.4.10] } { + module load libreadline/6.2-goolf-1.4.10 +} + +if { ![is-loaded ncurses/5.9-goolf-1.4.10] } { + module load ncurses/5.9-goolf-1.4.10 +} + +prepend-path CPATH $root/include +prepend-path LD_LIBRARY_PATH $root/lib +prepend-path MANPATH $root/share/man +prepend-path PATH $root/bin +prepend-path PKG_CONFIG_PATH $root/lib/pkgconfig + +setenv EBROOTPYTHON "$root" +setenv EBVERSIONPYTHON "2.7.3" +setenv EBDEVELPYTHON "$root/easybuild/Python-2.7.3-goolf-1.4.10-easybuild-devel" + +setenv EBEXTSLISTPYTHON "setuptools-0.6c11,nose-1.1.2,numpy-1.6.1,scipy-0.10.1,paycheck-1.0.2,argparse-1.2.1,lockfile-0.9.1" + +# built with EasyBuild version 1.3.0 diff --git a/rt/tabcompl/mf/lang/Python/2.7.3-ictce-5.2.0 b/rt/tabcompl/mf/lang/Python/2.7.3-ictce-5.2.0 deleted file mode 120000 index 40193b577..000000000 --- a/rt/tabcompl/mf/lang/Python/2.7.3-ictce-5.2.0 +++ /dev/null @@ -1 +0,0 @@ -../../all/Python/2.7.3-ictce-5.2.0 \ No newline at end of file diff --git a/rt/tabcompl/mf/lang/Python/2.7.3-ictce-5.2.0 b/rt/tabcompl/mf/lang/Python/2.7.3-ictce-5.2.0 new file mode 100644 index 000000000..c4def34b7 --- /dev/null +++ b/rt/tabcompl/mf/lang/Python/2.7.3-ictce-5.2.0 @@ -0,0 +1,46 @@ +#%Module + +proc ModulesHelp { } { + puts stderr { Python is a programming language that lets you work more quickly and integrate your systems more effectively. - Homepage: http://python.org/ +} +} + +module-whatis {Python is a programming language that lets you work more quickly and integrate your systems more effectively. - Homepage: http://python.org/} + +set root /net/gmi.oeaw.ac.at/software/mendel/29_04_2013/software/Python/2.7.3-ictce-5.2.0 + +conflict Python + +if { ![is-loaded ictce/5.2.0] } { + module load ictce/5.2.0 +} + +if { ![is-loaded bzip2/1.0.6-ictce-5.2.0] } { + module load bzip2/1.0.6-ictce-5.2.0 +} + +if { ![is-loaded zlib/1.2.7-ictce-5.2.0] } { + module load zlib/1.2.7-ictce-5.2.0 +} + +if { ![is-loaded libreadline/6.2-ictce-5.2.0] } { + module load libreadline/6.2-ictce-5.2.0 +} + +if { ![is-loaded ncurses/5.9-ictce-5.2.0] } { + module load ncurses/5.9-ictce-5.2.0 +} + +prepend-path CPATH $root/include +prepend-path LD_LIBRARY_PATH $root/lib +prepend-path MANPATH $root/share/man +prepend-path PATH $root/bin +prepend-path PKG_CONFIG_PATH $root/lib/pkgconfig + +setenv EBROOTPYTHON "$root" +setenv EBVERSIONPYTHON "2.7.3" +setenv EBDEVELPYTHON "$root/easybuild/Python-2.7.3-ictce-5.2.0-easybuild-devel" + +setenv EBEXTSLISTPYTHON "setuptools-0.6c11,nose-1.1.2,paycheck-1.0.2,argparse-1.2.1,lockfile-0.9.1" + +# built with EasyBuild version 1.3.0 diff --git a/rt/tabcompl/mf/lang/Python/2.7.3-ictce-5.3.0 b/rt/tabcompl/mf/lang/Python/2.7.3-ictce-5.3.0 deleted file mode 120000 index a2646f944..000000000 --- a/rt/tabcompl/mf/lang/Python/2.7.3-ictce-5.3.0 +++ /dev/null @@ -1 +0,0 @@ -../../all/Python/2.7.3-ictce-5.3.0 \ No newline at end of file diff --git a/rt/tabcompl/mf/lang/Python/2.7.3-ictce-5.3.0 b/rt/tabcompl/mf/lang/Python/2.7.3-ictce-5.3.0 new file mode 100644 index 000000000..dec958f4e --- /dev/null +++ b/rt/tabcompl/mf/lang/Python/2.7.3-ictce-5.3.0 @@ -0,0 +1,46 @@ +#%Module + +proc ModulesHelp { } { + puts stderr { Python is a programming language that lets you work more quickly and integrate your systems more effectively. - Homepage: http://python.org/ +} +} + +module-whatis {Python is a programming language that lets you work more quickly and integrate your systems more effectively. - Homepage: http://python.org/} + +set root /net/gmi.oeaw.ac.at/software/mendel/29_04_2013/software/Python/2.7.3-ictce-5.3.0 + +conflict Python + +if { ![is-loaded ictce/5.3.0] } { + module load ictce/5.3.0 +} + +if { ![is-loaded bzip2/1.0.6-ictce-5.3.0] } { + module load bzip2/1.0.6-ictce-5.3.0 +} + +if { ![is-loaded zlib/1.2.7-ictce-5.3.0] } { + module load zlib/1.2.7-ictce-5.3.0 +} + +if { ![is-loaded libreadline/6.2-ictce-5.3.0] } { + module load libreadline/6.2-ictce-5.3.0 +} + +if { ![is-loaded ncurses/5.9-ictce-5.3.0] } { + module load ncurses/5.9-ictce-5.3.0 +} + +prepend-path CPATH $root/include +prepend-path LD_LIBRARY_PATH $root/lib +prepend-path MANPATH $root/share/man +prepend-path PATH $root/bin +prepend-path PKG_CONFIG_PATH $root/lib/pkgconfig + +setenv EBROOTPYTHON "$root" +setenv EBVERSIONPYTHON "2.7.3" +setenv EBDEVELPYTHON "$root/easybuild/Python-2.7.3-ictce-5.3.0-easybuild-devel" + +setenv EBEXTSLISTPYTHON "setuptools-0.6c11,nose-1.1.2,numpy-1.6.1,scipy-0.10.1,paycheck-1.0.2,argparse-1.2.1,lockfile-0.9.1,Cython-0.17.2" + +# built with EasyBuild version 1.6.0dev diff --git a/rt/tabcompl/mf/lang/Python/2.7.5-goolf-1.4.10 b/rt/tabcompl/mf/lang/Python/2.7.5-goolf-1.4.10 deleted file mode 120000 index f0beafad8..000000000 --- a/rt/tabcompl/mf/lang/Python/2.7.5-goolf-1.4.10 +++ /dev/null @@ -1 +0,0 @@ -../../all/Python/2.7.5-goolf-1.4.10 \ No newline at end of file diff --git a/rt/tabcompl/mf/lang/Python/2.7.5-goolf-1.4.10 b/rt/tabcompl/mf/lang/Python/2.7.5-goolf-1.4.10 new file mode 100644 index 000000000..1389544a7 --- /dev/null +++ b/rt/tabcompl/mf/lang/Python/2.7.5-goolf-1.4.10 @@ -0,0 +1,46 @@ +#%Module + +proc ModulesHelp { } { + puts stderr { Python is a programming language that lets you work more quickly and integrate your systems more effectively. - Homepage: http://python.org/ +} +} + +module-whatis {Python is a programming language that lets you work more quickly and integrate your systems more effectively. - Homepage: http://python.org/} + +set root /net/gmi.oeaw.ac.at/software/mendel/29_04_2013/software/Python/2.7.5-goolf-1.4.10 + +conflict Python + +if { ![is-loaded goolf/1.4.10] } { + module load goolf/1.4.10 +} + +if { ![is-loaded bzip2/1.0.6-goolf-1.4.10] } { + module load bzip2/1.0.6-goolf-1.4.10 +} + +if { ![is-loaded zlib/1.2.8-goolf-1.4.10] } { + module load zlib/1.2.8-goolf-1.4.10 +} + +if { ![is-loaded libreadline/6.2-goolf-1.4.10] } { + module load libreadline/6.2-goolf-1.4.10 +} + +if { ![is-loaded ncurses/5.9-goolf-1.4.10] } { + module load ncurses/5.9-goolf-1.4.10 +} + +prepend-path CPATH $root/include +prepend-path LD_LIBRARY_PATH $root/lib +prepend-path MANPATH $root/share/man +prepend-path PATH $root/bin +prepend-path PKG_CONFIG_PATH $root/lib/pkgconfig + +setenv EBROOTPYTHON "$root" +setenv EBVERSIONPYTHON "2.7.5" +setenv EBDEVELPYTHON "$root/easybuild/Python-2.7.5-goolf-1.4.10-easybuild-devel" + +setenv EBEXTSLISTPYTHON "setuptools-0.6c11,nose-1.3.0,numpy-1.7.0,scipy-0.12.0,mpi4py-1.3,paycheck-1.0.2,argparse-1.2.1,lockfile-0.9.1,Cython-0.19.1" + +# built with EasyBuild version 1.6.0dev diff --git a/rt/tabcompl/mf/lang/Python/2.7.5-ictce-5.3.0 b/rt/tabcompl/mf/lang/Python/2.7.5-ictce-5.3.0 deleted file mode 120000 index 86820ed55..000000000 --- a/rt/tabcompl/mf/lang/Python/2.7.5-ictce-5.3.0 +++ /dev/null @@ -1 +0,0 @@ -../../all/Python/2.7.5-ictce-5.3.0 \ No newline at end of file diff --git a/rt/tabcompl/mf/lang/Python/2.7.5-ictce-5.3.0 b/rt/tabcompl/mf/lang/Python/2.7.5-ictce-5.3.0 new file mode 100644 index 000000000..bd594c32a --- /dev/null +++ b/rt/tabcompl/mf/lang/Python/2.7.5-ictce-5.3.0 @@ -0,0 +1,46 @@ +#%Module + +proc ModulesHelp { } { + puts stderr { Python is a programming language that lets you work more quickly and integrate your systems more effectively. - Homepage: http://python.org/ +} +} + +module-whatis {Python is a programming language that lets you work more quickly and integrate your systems more effectively. - Homepage: http://python.org/} + +set root /net/gmi.oeaw.ac.at/software/mendel/29_04_2013/software/Python/2.7.5-ictce-5.3.0 + +conflict Python + +if { ![is-loaded ictce/5.3.0] } { + module load ictce/5.3.0 +} + +if { ![is-loaded bzip2/1.0.6-ictce-5.3.0] } { + module load bzip2/1.0.6-ictce-5.3.0 +} + +if { ![is-loaded zlib/1.2.8-ictce-5.3.0] } { + module load zlib/1.2.8-ictce-5.3.0 +} + +if { ![is-loaded libreadline/6.2-ictce-5.3.0] } { + module load libreadline/6.2-ictce-5.3.0 +} + +if { ![is-loaded ncurses/5.9-ictce-5.3.0] } { + module load ncurses/5.9-ictce-5.3.0 +} + +prepend-path CPATH $root/include +prepend-path LD_LIBRARY_PATH $root/lib +prepend-path MANPATH $root/share/man +prepend-path PATH $root/bin +prepend-path PKG_CONFIG_PATH $root/lib/pkgconfig + +setenv EBROOTPYTHON "$root" +setenv EBVERSIONPYTHON "2.7.5" +setenv EBDEVELPYTHON "$root/easybuild/Python-2.7.5-ictce-5.3.0-easybuild-devel" + +setenv EBEXTSLISTPYTHON "setuptools-0.6c11,nose-1.3.0,numpy-1.7.0,scipy-0.12.0,mpi4py-1.3,paycheck-1.0.2,argparse-1.2.1,lockfile-0.9.1,Cython-0.19.1" + +# built with EasyBuild version 1.6.0dev diff --git a/rt/tabcompl/mf/lang/R/2.15.2-goolf-1.4.10 b/rt/tabcompl/mf/lang/R/2.15.2-goolf-1.4.10 deleted file mode 120000 index 1e6645e15..000000000 --- a/rt/tabcompl/mf/lang/R/2.15.2-goolf-1.4.10 +++ /dev/null @@ -1 +0,0 @@ -../../all/R/2.15.2-goolf-1.4.10 \ No newline at end of file diff --git a/rt/tabcompl/mf/lang/R/2.15.2-goolf-1.4.10 b/rt/tabcompl/mf/lang/R/2.15.2-goolf-1.4.10 new file mode 100644 index 000000000..337728502 --- /dev/null +++ b/rt/tabcompl/mf/lang/R/2.15.2-goolf-1.4.10 @@ -0,0 +1,48 @@ +#%Module + +proc ModulesHelp { } { + puts stderr { R is a free software environment for statistical computing and graphics. - Homepage: http://www.r-project.org/ + } +} + +module-whatis {R is a free software environment for statistical computing and graphics. - Homepage: http://www.r-project.org/} + +set root /net/gmi.oeaw.ac.at/software/mendel/29_04_2013/software/R/2.15.2-goolf-1.4.10 + +conflict R + +if { ![is-loaded goolf/1.4.10] } { + module load goolf/1.4.10 +} + +if { ![is-loaded libreadline/6.2-goolf-1.4.10] } { + module load libreadline/6.2-goolf-1.4.10 +} + +if { ![is-loaded ncurses/5.9-goolf-1.4.10] } { + module load ncurses/5.9-goolf-1.4.10 +} + +if { ![is-loaded zlib/1.2.7-goolf-1.4.10] } { + module load zlib/1.2.7-goolf-1.4.10 +} + +if { ![is-loaded libpng/1.5.13-goolf-1.4.10] } { + module load libpng/1.5.13-goolf-1.4.10 +} + +if { ![is-loaded Java/1.7.0_10] } { + module load Java/1.7.0_10 +} + +prepend-path LD_LIBRARY_PATH $root/lib64 +prepend-path MANPATH $root/share/man +prepend-path PATH $root/bin + +setenv EBROOTR "$root" +setenv EBVERSIONR "2.15.2" +setenv EBDEVELR "$root/easybuild/R-2.15.2-goolf-1.4.10-easybuild-devel" + +setenv EBEXTSLISTR "base-,datasets-,graphics-,grDevices-,grid-,methods-,splines-,stats-,stats4-,tools-,utils-,Rmpi-0.5-9,irace-1.03,rJava-0.9-4,lattice-0.20-15,RColorBrewer-1.0-5,latticeExtra-0.6-24,Matrix-1.0-12,png-0.1-4,Rcpp-0.10.3,quadprog-1.5-5,BB-2013.4-1,MASS-7.3-22,rlecuyer-0.3-3,class-7.3-5,e1071-1.6-1,nnet-7.3-6,car-2.0-16,colorspace-1.2-2,robustbase-0.9-7,sp-0.9-91,vcd-1.2-13,Rserve-0.6-1,DBI-0.2-6,RSQLite-0.11.3,hwriter-1.3,bitops-1.0-5,BiocGenerics-0.4.0,Biobase-2.18.0,IRanges-1.16.6,AnnotationDbi-1.20.7,Biostrings-2.26.3,GenomicRanges-1.10.7,BSgenome-1.26.1,zlibbioc-1.4.0,Rsamtools-1.10.2,ShortRead-1.16.4,akima-0.5-9,boot-1.3-7,cluster-1.14.4,coda-0.16-1,codetools-0.2-8,foreign-0.8-53,gam-1.08,nlme-3.1-105,survival-2.37-4,gamlss.data-4.2-0,gamlss.dist-4.2-0,gamlss-4.2-0,gamlss.tr-4.1-0,KernSmooth-2.23-10,zoo-1.7-9,lmtest-0.9-31,mgcv-1.7-22,mnormt-1.4-5,mvtnorm-0.9-9994,numDeriv-2012.9-1,pscl-1.04.4,rpart-4.1-1,sandwich-2.2-10,sfsmisc-1.0-23,spatial-7.3-5,VGAM-0.9-1,waveslim-1.7.1,xtable-1.7-0,profileModel-0.5-8,brglm-0.5-7,deSolve-1.10-6,odesolve-0.9-9,tseriesChaos-0.1-11,tseries-0.10-31,neuRosim-0.2-10,fastICA-1.1-16,R.methodsS3-1.4.2,R.oo-1.13.0,R.matlab-1.7.0,Rniftilib-0.0-32" + +# built with EasyBuild version 1.8.2 diff --git a/rt/tabcompl/mf/lang/R/2.15.3-goolf-1.4.10 b/rt/tabcompl/mf/lang/R/2.15.3-goolf-1.4.10 deleted file mode 120000 index e79c1dfd9..000000000 --- a/rt/tabcompl/mf/lang/R/2.15.3-goolf-1.4.10 +++ /dev/null @@ -1 +0,0 @@ -../../all/R/2.15.3-goolf-1.4.10 \ No newline at end of file diff --git a/rt/tabcompl/mf/lang/R/2.15.3-goolf-1.4.10 b/rt/tabcompl/mf/lang/R/2.15.3-goolf-1.4.10 new file mode 100644 index 000000000..8204881d7 --- /dev/null +++ b/rt/tabcompl/mf/lang/R/2.15.3-goolf-1.4.10 @@ -0,0 +1,44 @@ +#%Module + +proc ModulesHelp { } { + puts stderr { R is a free software environment for statistical computing and graphics. - Homepage: http://www.r-project.org/ +} +} + +module-whatis {R is a free software environment for statistical computing and graphics. - Homepage: http://www.r-project.org/} + +set root /net/gmi.oeaw.ac.at/software/mendel/29_04_2013/software/R/2.15.3-goolf-1.4.10 + +conflict R + +if { ![is-loaded goolf/1.4.10] } { + module load goolf/1.4.10 +} + +if { ![is-loaded libreadline/6.2-goolf-1.4.10] } { + module load libreadline/6.2-goolf-1.4.10 +} + +if { ![is-loaded ncurses/5.9-goolf-1.4.10] } { + module load ncurses/5.9-goolf-1.4.10 +} + +if { ![is-loaded libpng/1.6.2-goolf-1.4.10] } { + module load libpng/1.6.2-goolf-1.4.10 +} + +if { ![is-loaded Java/1.7.0_21] } { + module load Java/1.7.0_21 +} + +prepend-path LD_LIBRARY_PATH $root/lib64 +prepend-path MANPATH $root/share/man +prepend-path PATH $root/bin + +setenv EBROOTR "$root" +setenv EBVERSIONR "2.15.3" +setenv EBDEVELR "$root/easybuild/R-2.15.3-goolf-1.4.10-easybuild-devel" + +setenv EBEXTSLISTR "base-,datasets-,graphics-,grDevices-,grid-,methods-,splines-,stats-,stats4-,tools-,utils-,Rmpi-0.5-9,irace-1.03,rJava-0.9-4,lattice-0.20-15,RColorBrewer-1.0-5,latticeExtra-0.6-24,Matrix-1.0-12,png-0.1-4,Rcpp-0.10.3,quadprog-1.5-5,BB-2013.4-1,rlecuyer-0.3-3,snow-0.3-12,MASS-7.3-23,class-7.3-5,e1071-1.6-1,nnet-7.3-6,car-2.0-17,colorspace-1.2-2,robustbase-0.9-7,sp-0.9-91,vcd-1.2-13,snowfall-1.84-4,logistf-1.10,Rserve-0.6-1,akima-0.5-10,bitops-1.0-5,boot-1.3-7,cluster-1.14.4,coda-0.16-1,codetools-0.2-8,DBI-0.2-7,foreign-0.8-54,nlme-3.1-108,survival-2.37-4,gam-1.08,gamlss.data-4.2-0,gamlss.dist-4.2-0,gamlss-4.2-0,gamlss.tr-4.1-0,hwriter-1.3,KernSmooth-2.23-10,zoo-1.7-9,lmtest-0.9-31,mgcv-1.7-23,mnormt-1.4-5,mvtnorm-0.9-9994,numDeriv-2012.9-1,pscl-1.04.4,rpart-4.1-1,RSQLite-0.11.3,sandwich-2.2-10,sfsmisc-1.0-23,spatial-7.3-5,VGAM-0.9-1,waveslim-1.7.1,xtable-1.7-1,profileModel-0.5-8,brglm-0.5-7,deSolve-1.10-6,odesolve-0.9-9,tseriesChaos-0.1-11,tseries-0.10-32,neuRosim-0.2-10,fastICA-1.1-16,R.methodsS3-1.4.2,R.oo-1.13.0,R.matlab-1.7.0,Rniftilib-0.0-32,BiocGenerics-0.6.0,Biobase-2.20.0,IRanges-1.18.1,AnnotationDbi-1.22.6,Biostrings-2.28.0,GenomicRanges-1.12.4,BSgenome-1.28.0,zlibbioc-1.6.0,Rsamtools-1.12.3,ShortRead-1.18.0,graph-1.38.2,igraph0-0.5.7" + +# built with EasyBuild version 1.6.0dev diff --git a/rt/tabcompl/mf/lang/R/3.0.1-goolf-1.4.10-bare b/rt/tabcompl/mf/lang/R/3.0.1-goolf-1.4.10-bare deleted file mode 120000 index 33536f58a..000000000 --- a/rt/tabcompl/mf/lang/R/3.0.1-goolf-1.4.10-bare +++ /dev/null @@ -1 +0,0 @@ -../../all/R/3.0.1-goolf-1.4.10-bare \ No newline at end of file diff --git a/rt/tabcompl/mf/lang/R/3.0.1-goolf-1.4.10-bare b/rt/tabcompl/mf/lang/R/3.0.1-goolf-1.4.10-bare new file mode 100644 index 000000000..a3025fa60 --- /dev/null +++ b/rt/tabcompl/mf/lang/R/3.0.1-goolf-1.4.10-bare @@ -0,0 +1,43 @@ +#%Module + +proc ModulesHelp { } { + puts stderr { R is a free software environment for statistical computing and graphics. - Homepage: http://www.r-project.org/ + } +} + +module-whatis {R is a free software environment for statistical computing and graphics. - Homepage: http://www.r-project.org/} + +set root /net/gmi.oeaw.ac.at/software/mendel/29_04_2013/software/R/3.0.1-goolf-1.4.10-bare + +conflict R + +if { ![is-loaded goolf/1.4.10] } { + module load goolf/1.4.10 +} + +if { ![is-loaded libreadline/6.2-goolf-1.4.10] } { + module load libreadline/6.2-goolf-1.4.10 +} + +if { ![is-loaded ncurses/5.9-goolf-1.4.10] } { + module load ncurses/5.9-goolf-1.4.10 +} + +if { ![is-loaded libpng/1.6.2-goolf-1.4.10] } { + module load libpng/1.6.2-goolf-1.4.10 +} + +if { ![is-loaded Java/1.7.0_21] } { + module load Java/1.7.0_21 +} + +prepend-path LD_LIBRARY_PATH $root/lib64 +prepend-path MANPATH $root/share/man +prepend-path PATH $root/bin + +setenv EBROOTR "$root" +setenv EBVERSIONR "3.0.1" +setenv EBDEVELR "$root/easybuild/R-3.0.1-goolf-1.4.10-bare-easybuild-devel" + + +# built with EasyBuild version 1.8.2 diff --git a/rt/tabcompl/mf/lang/Tcl/8.5.12-goolf-1.4.10 b/rt/tabcompl/mf/lang/Tcl/8.5.12-goolf-1.4.10 deleted file mode 120000 index 01b350271..000000000 --- a/rt/tabcompl/mf/lang/Tcl/8.5.12-goolf-1.4.10 +++ /dev/null @@ -1 +0,0 @@ -../../all/Tcl/8.5.12-goolf-1.4.10 \ No newline at end of file diff --git a/rt/tabcompl/mf/lang/Tcl/8.5.12-goolf-1.4.10 b/rt/tabcompl/mf/lang/Tcl/8.5.12-goolf-1.4.10 new file mode 100644 index 000000000..10e090321 --- /dev/null +++ b/rt/tabcompl/mf/lang/Tcl/8.5.12-goolf-1.4.10 @@ -0,0 +1,30 @@ +#%Module + +proc ModulesHelp { } { + puts stderr { Tcl (Tool Command Language) is a very powerful but easy to learn dynamic programming language, +suitable for a very wide range of uses, including web and desktop applications, networking, administration, testing and many more. - Homepage: http://www.tcl.tk/ +} +} + +module-whatis {Tcl (Tool Command Language) is a very powerful but easy to learn dynamic programming language, +suitable for a very wide range of uses, including web and desktop applications, networking, administration, testing and many more. - Homepage: http://www.tcl.tk/} + +set root /net/gmi.oeaw.ac.at/software/mendel/29_04_2013/software/Tcl/8.5.12-goolf-1.4.10 + +conflict Tcl + +if { ![is-loaded goolf/1.4.10] } { + module load goolf/1.4.10 +} + +prepend-path CPATH $root/include +prepend-path LD_LIBRARY_PATH $root/lib +prepend-path MANPATH $root/man +prepend-path PATH $root/bin + +setenv EBROOTTCL "$root" +setenv EBVERSIONTCL "8.5.12" +setenv EBDEVELTCL "$root/easybuild/Tcl-8.5.12-goolf-1.4.10-easybuild-devel" + + +# built with EasyBuild version 1.6.0 diff --git a/rt/tabcompl/mf/lang/Tcl/8.5.12-ictce-5.3.0 b/rt/tabcompl/mf/lang/Tcl/8.5.12-ictce-5.3.0 deleted file mode 120000 index 880127be7..000000000 --- a/rt/tabcompl/mf/lang/Tcl/8.5.12-ictce-5.3.0 +++ /dev/null @@ -1 +0,0 @@ -../../all/Tcl/8.5.12-ictce-5.3.0 \ No newline at end of file diff --git a/rt/tabcompl/mf/lang/Tcl/8.5.12-ictce-5.3.0 b/rt/tabcompl/mf/lang/Tcl/8.5.12-ictce-5.3.0 new file mode 100644 index 000000000..bd29f7ffe --- /dev/null +++ b/rt/tabcompl/mf/lang/Tcl/8.5.12-ictce-5.3.0 @@ -0,0 +1,30 @@ +#%Module + +proc ModulesHelp { } { + puts stderr { Tcl (Tool Command Language) is a very powerful but easy to learn dynamic programming language, + suitable for a very wide range of uses, including web and desktop applications, networking, administration, testing and many more. - Homepage: http://www.tcl.tk/ + } +} + +module-whatis {Tcl (Tool Command Language) is a very powerful but easy to learn dynamic programming language, + suitable for a very wide range of uses, including web and desktop applications, networking, administration, testing and many more. - Homepage: http://www.tcl.tk/} + +set root /net/gmi.oeaw.ac.at/software/mendel/29_04_2013/software/Tcl/8.5.12-ictce-5.3.0 + +conflict Tcl + +if { ![is-loaded ictce/5.3.0] } { + module load ictce/5.3.0 +} + +prepend-path CPATH $root/include +prepend-path LD_LIBRARY_PATH $root/lib +prepend-path MANPATH $root/man +prepend-path PATH $root/bin + +setenv EBROOTTCL "$root" +setenv EBVERSIONTCL "8.5.12" +setenv EBDEVELTCL "$root/easybuild/Tcl-8.5.12-ictce-5.3.0-easybuild-devel" + + +# built with EasyBuild version 1.8.2 diff --git a/rt/tabcompl/mf/lang/Tcl/8.5.14-goolf-1.4.10 b/rt/tabcompl/mf/lang/Tcl/8.5.14-goolf-1.4.10 deleted file mode 120000 index 99b35431b..000000000 --- a/rt/tabcompl/mf/lang/Tcl/8.5.14-goolf-1.4.10 +++ /dev/null @@ -1 +0,0 @@ -../../all/Tcl/8.5.14-goolf-1.4.10 \ No newline at end of file diff --git a/rt/tabcompl/mf/lang/Tcl/8.5.14-goolf-1.4.10 b/rt/tabcompl/mf/lang/Tcl/8.5.14-goolf-1.4.10 new file mode 100644 index 000000000..b3f3bfe38 --- /dev/null +++ b/rt/tabcompl/mf/lang/Tcl/8.5.14-goolf-1.4.10 @@ -0,0 +1,30 @@ +#%Module + +proc ModulesHelp { } { + puts stderr { Tcl (Tool Command Language) is a very powerful but easy to learn dynamic programming language, +suitable for a very wide range of uses, including web and desktop applications, networking, administration, testing and many more. - Homepage: http://www.tcl.tk/ +} +} + +module-whatis {Tcl (Tool Command Language) is a very powerful but easy to learn dynamic programming language, +suitable for a very wide range of uses, including web and desktop applications, networking, administration, testing and many more. - Homepage: http://www.tcl.tk/} + +set root /net/gmi.oeaw.ac.at/software/mendel/29_04_2013/software/Tcl/8.5.14-goolf-1.4.10 + +conflict Tcl + +if { ![is-loaded goolf/1.4.10] } { + module load goolf/1.4.10 +} + +prepend-path CPATH $root/include +prepend-path LD_LIBRARY_PATH $root/lib +prepend-path MANPATH $root/man +prepend-path PATH $root/bin + +setenv EBROOTTCL "$root" +setenv EBVERSIONTCL "8.5.14" +setenv EBDEVELTCL "$root/easybuild/Tcl-8.5.14-goolf-1.4.10-easybuild-devel" + + +# built with EasyBuild version 1.6.0 diff --git a/rt/tabcompl/mf/lib/PyYAML/3.10-goolf-1.4.10-Python-2.7.3 b/rt/tabcompl/mf/lib/PyYAML/3.10-goolf-1.4.10-Python-2.7.3 deleted file mode 120000 index 4d5c201b8..000000000 --- a/rt/tabcompl/mf/lib/PyYAML/3.10-goolf-1.4.10-Python-2.7.3 +++ /dev/null @@ -1 +0,0 @@ -../../all/PyYAML/3.10-goolf-1.4.10-Python-2.7.3 \ No newline at end of file diff --git a/rt/tabcompl/mf/lib/PyYAML/3.10-goolf-1.4.10-Python-2.7.3 b/rt/tabcompl/mf/lib/PyYAML/3.10-goolf-1.4.10-Python-2.7.3 new file mode 100644 index 000000000..5102ae7c9 --- /dev/null +++ b/rt/tabcompl/mf/lib/PyYAML/3.10-goolf-1.4.10-Python-2.7.3 @@ -0,0 +1,34 @@ +#%Module + +proc ModulesHelp { } { + puts stderr { YAML 1.1 implementation for Python - Homepage: http://pyyaml.org/ +} +} + +module-whatis {YAML 1.1 implementation for Python - Homepage: http://pyyaml.org/} + +set root /net/gmi.oeaw.ac.at/software/mendel/29_04_2013/software/PyYAML/3.10-goolf-1.4.10-Python-2.7.3 + +conflict PyYAML + +if { ![is-loaded goolf/1.4.10] } { + module load goolf/1.4.10 +} + +if { ![is-loaded Python/2.7.3-goolf-1.4.10] } { + module load Python/2.7.3-goolf-1.4.10 +} + +if { ![is-loaded libyaml/0.1.4-goolf-1.4.10] } { + module load libyaml/0.1.4-goolf-1.4.10 +} + +prepend-path LD_LIBRARY_PATH $root/lib + +setenv EBROOTPYYAML "$root" +setenv EBVERSIONPYYAML "3.10" +setenv EBDEVELPYYAML "$root/easybuild/PyYAML-3.10-goolf-1.4.10-Python-2.7.3-easybuild-devel" + +prepend-path PYTHONPATH $root/lib/python2.7/site-packages + +# built with EasyBuild version 1.6.0dev diff --git a/rt/tabcompl/mf/lib/PyYAML/3.10-ictce-5.3.0-Python-2.7.3 b/rt/tabcompl/mf/lib/PyYAML/3.10-ictce-5.3.0-Python-2.7.3 deleted file mode 120000 index a9d57e31e..000000000 --- a/rt/tabcompl/mf/lib/PyYAML/3.10-ictce-5.3.0-Python-2.7.3 +++ /dev/null @@ -1 +0,0 @@ -../../all/PyYAML/3.10-ictce-5.3.0-Python-2.7.3 \ No newline at end of file diff --git a/rt/tabcompl/mf/lib/PyYAML/3.10-ictce-5.3.0-Python-2.7.3 b/rt/tabcompl/mf/lib/PyYAML/3.10-ictce-5.3.0-Python-2.7.3 new file mode 100644 index 000000000..4c7298c3a --- /dev/null +++ b/rt/tabcompl/mf/lib/PyYAML/3.10-ictce-5.3.0-Python-2.7.3 @@ -0,0 +1,34 @@ +#%Module + +proc ModulesHelp { } { + puts stderr { YAML 1.1 implementation for Python - Homepage: http://pyyaml.org/ +} +} + +module-whatis {YAML 1.1 implementation for Python - Homepage: http://pyyaml.org/} + +set root /net/gmi.oeaw.ac.at/software/mendel/29_04_2013/software/PyYAML/3.10-ictce-5.3.0-Python-2.7.3 + +conflict PyYAML + +if { ![is-loaded ictce/5.3.0] } { + module load ictce/5.3.0 +} + +if { ![is-loaded Python/2.7.3-ictce-5.3.0] } { + module load Python/2.7.3-ictce-5.3.0 +} + +if { ![is-loaded libyaml/0.1.4-ictce-5.3.0] } { + module load libyaml/0.1.4-ictce-5.3.0 +} + +prepend-path LD_LIBRARY_PATH $root/lib + +setenv EBROOTPYYAML "$root" +setenv EBVERSIONPYYAML "3.10" +setenv EBDEVELPYYAML "$root/easybuild/PyYAML-3.10-ictce-5.3.0-Python-2.7.3-easybuild-devel" + +prepend-path PYTHONPATH $root/lib/python2.7/site-packages + +# built with EasyBuild version 1.6.0dev diff --git a/rt/tabcompl/mf/lib/libreadline/6.2-goalf-1.1.0-no-OFED b/rt/tabcompl/mf/lib/libreadline/6.2-goalf-1.1.0-no-OFED deleted file mode 120000 index 6ff329861..000000000 --- a/rt/tabcompl/mf/lib/libreadline/6.2-goalf-1.1.0-no-OFED +++ /dev/null @@ -1 +0,0 @@ -../../all/libreadline/6.2-goalf-1.1.0-no-OFED \ No newline at end of file diff --git a/rt/tabcompl/mf/lib/libreadline/6.2-goalf-1.1.0-no-OFED b/rt/tabcompl/mf/lib/libreadline/6.2-goalf-1.1.0-no-OFED new file mode 100644 index 000000000..31318da25 --- /dev/null +++ b/rt/tabcompl/mf/lib/libreadline/6.2-goalf-1.1.0-no-OFED @@ -0,0 +1,38 @@ +#%Module + +proc ModulesHelp { } { + puts stderr { The GNU Readline library provides a set of functions for use by applications that allow users to edit + command lines as they are typed in. Both Emacs and vi editing modes are available. The Readline library includes + additional functions to maintain a list of previously-entered command lines, to recall and perhaps reedit those lines, + and perform csh-like history expansion on previous commands. - Homepage: http://cnswww.cns.cwru.edu/php/chet/readline/rltop.html +} +} + +module-whatis {The GNU Readline library provides a set of functions for use by applications that allow users to edit + command lines as they are typed in. Both Emacs and vi editing modes are available. The Readline library includes + additional functions to maintain a list of previously-entered command lines, to recall and perhaps reedit those lines, + and perform csh-like history expansion on previous commands. - Homepage: http://cnswww.cns.cwru.edu/php/chet/readline/rltop.html} + +set root /net/gmi.oeaw.ac.at/software/mendel/29_04_2013/software/libreadline/6.2-goalf-1.1.0-no-OFED + +conflict libreadline + +if { ![is-loaded goalf/1.1.0-no-OFED] } { + module load goalf/1.1.0-no-OFED +} + +if { ![is-loaded ncurses/5.9-goalf-1.1.0-no-OFED] } { + module load ncurses/5.9-goalf-1.1.0-no-OFED +} + +prepend-path CPATH $root/include +prepend-path LD_LIBRARY_PATH $root/lib +prepend-path MANPATH $root/share/man +prepend-path PATH $root/bin + +setenv EBROOTLIBREADLINE "$root" +setenv EBVERSIONLIBREADLINE "6.2" +setenv EBDEVELLIBREADLINE "$root/easybuild/libreadline-6.2-goalf-1.1.0-no-OFED-easybuild-devel" + + +# built with EasyBuild version 1.3.0 diff --git a/rt/tabcompl/mf/lib/libreadline/6.2-goolf-1.4.10 b/rt/tabcompl/mf/lib/libreadline/6.2-goolf-1.4.10 deleted file mode 120000 index 5c0eab83b..000000000 --- a/rt/tabcompl/mf/lib/libreadline/6.2-goolf-1.4.10 +++ /dev/null @@ -1 +0,0 @@ -../../all/libreadline/6.2-goolf-1.4.10 \ No newline at end of file diff --git a/rt/tabcompl/mf/lib/libreadline/6.2-goolf-1.4.10 b/rt/tabcompl/mf/lib/libreadline/6.2-goolf-1.4.10 new file mode 100644 index 000000000..6208a76a6 --- /dev/null +++ b/rt/tabcompl/mf/lib/libreadline/6.2-goolf-1.4.10 @@ -0,0 +1,34 @@ +#%Module + +proc ModulesHelp { } { + puts stderr { The GNU Readline library provides a set of functions for use by applications that allow users to edit +command lines as they are typed in. Both Emacs and vi editing modes are available. The Readline library includes +additional functions to maintain a list of previously-entered command lines, to recall and perhaps reedit those lines, +and perform csh-like history expansion on previous commands. - Homepage: http://cnswww.cns.cwru.edu/php/chet/readline/rltop.html +} +} + +module-whatis {The GNU Readline library provides a set of functions for use by applications that allow users to edit +command lines as they are typed in. Both Emacs and vi editing modes are available. The Readline library includes +additional functions to maintain a list of previously-entered command lines, to recall and perhaps reedit those lines, +and perform csh-like history expansion on previous commands. - Homepage: http://cnswww.cns.cwru.edu/php/chet/readline/rltop.html} + +set root /net/gmi.oeaw.ac.at/software/mendel/29_04_2013/software/libreadline/6.2-goolf-1.4.10 + +conflict libreadline + +if { ![is-loaded goolf/1.4.10] } { + module load goolf/1.4.10 +} + +prepend-path CPATH $root/include +prepend-path LD_LIBRARY_PATH $root/lib +prepend-path MANPATH $root/share/man +prepend-path PATH $root/bin + +setenv EBROOTLIBREADLINE "$root" +setenv EBVERSIONLIBREADLINE "6.2" +setenv EBDEVELLIBREADLINE "$root/easybuild/libreadline-6.2-goolf-1.4.10-easybuild-devel" + + +# built with EasyBuild version 1.3.0 diff --git a/rt/tabcompl/mf/lib/libreadline/6.2-ictce-5.2.0 b/rt/tabcompl/mf/lib/libreadline/6.2-ictce-5.2.0 deleted file mode 120000 index 5635f9b74..000000000 --- a/rt/tabcompl/mf/lib/libreadline/6.2-ictce-5.2.0 +++ /dev/null @@ -1 +0,0 @@ -../../all/libreadline/6.2-ictce-5.2.0 \ No newline at end of file diff --git a/rt/tabcompl/mf/lib/libreadline/6.2-ictce-5.2.0 b/rt/tabcompl/mf/lib/libreadline/6.2-ictce-5.2.0 new file mode 100644 index 000000000..5fbfa4090 --- /dev/null +++ b/rt/tabcompl/mf/lib/libreadline/6.2-ictce-5.2.0 @@ -0,0 +1,38 @@ +#%Module + +proc ModulesHelp { } { + puts stderr { The GNU Readline library provides a set of functions for use by applications that + allow users to edit command lines as they are typed in. Both Emacs and vi editing modes are available. + The Readline library includes additional functions to maintain a list of previously-entered command lines, + to recall and perhaps reedit those lines, and perform csh-like history expansion on previous commands. - Homepage: http://cnswww.cns.cwru.edu/php/chet/readline/rltop.html +} +} + +module-whatis {The GNU Readline library provides a set of functions for use by applications that + allow users to edit command lines as they are typed in. Both Emacs and vi editing modes are available. + The Readline library includes additional functions to maintain a list of previously-entered command lines, + to recall and perhaps reedit those lines, and perform csh-like history expansion on previous commands. - Homepage: http://cnswww.cns.cwru.edu/php/chet/readline/rltop.html} + +set root /net/gmi.oeaw.ac.at/software/mendel/29_04_2013/software/libreadline/6.2-ictce-5.2.0 + +conflict libreadline + +if { ![is-loaded ictce/5.2.0] } { + module load ictce/5.2.0 +} + +if { ![is-loaded ncurses/5.9-ictce-5.2.0] } { + module load ncurses/5.9-ictce-5.2.0 +} + +prepend-path CPATH $root/include +prepend-path LD_LIBRARY_PATH $root/lib +prepend-path MANPATH $root/share/man +prepend-path PATH $root/bin + +setenv EBROOTLIBREADLINE "$root" +setenv EBVERSIONLIBREADLINE "6.2" +setenv EBDEVELLIBREADLINE "$root/easybuild/libreadline-6.2-ictce-5.2.0-easybuild-devel" + + +# built with EasyBuild version 1.3.0 diff --git a/rt/tabcompl/mf/lib/libreadline/6.2-ictce-5.3.0 b/rt/tabcompl/mf/lib/libreadline/6.2-ictce-5.3.0 deleted file mode 120000 index a033970d2..000000000 --- a/rt/tabcompl/mf/lib/libreadline/6.2-ictce-5.3.0 +++ /dev/null @@ -1 +0,0 @@ -../../all/libreadline/6.2-ictce-5.3.0 \ No newline at end of file diff --git a/rt/tabcompl/mf/lib/libreadline/6.2-ictce-5.3.0 b/rt/tabcompl/mf/lib/libreadline/6.2-ictce-5.3.0 new file mode 100644 index 000000000..8b75243bc --- /dev/null +++ b/rt/tabcompl/mf/lib/libreadline/6.2-ictce-5.3.0 @@ -0,0 +1,38 @@ +#%Module + +proc ModulesHelp { } { + puts stderr { The GNU Readline library provides a set of functions for use by applications that + allow users to edit command lines as they are typed in. Both Emacs and vi editing modes are available. + The Readline library includes additional functions to maintain a list of previously-entered command lines, + to recall and perhaps reedit those lines, and perform csh-like history expansion on previous commands. - Homepage: http://cnswww.cns.cwru.edu/php/chet/readline/rltop.html +} +} + +module-whatis {The GNU Readline library provides a set of functions for use by applications that + allow users to edit command lines as they are typed in. Both Emacs and vi editing modes are available. + The Readline library includes additional functions to maintain a list of previously-entered command lines, + to recall and perhaps reedit those lines, and perform csh-like history expansion on previous commands. - Homepage: http://cnswww.cns.cwru.edu/php/chet/readline/rltop.html} + +set root /net/gmi.oeaw.ac.at/software/mendel/29_04_2013/software/libreadline/6.2-ictce-5.3.0 + +conflict libreadline + +if { ![is-loaded ictce/5.3.0] } { + module load ictce/5.3.0 +} + +if { ![is-loaded ncurses/5.9-ictce-5.3.0] } { + module load ncurses/5.9-ictce-5.3.0 +} + +prepend-path CPATH $root/include +prepend-path LD_LIBRARY_PATH $root/lib +prepend-path MANPATH $root/share/man +prepend-path PATH $root/bin + +setenv EBROOTLIBREADLINE "$root" +setenv EBVERSIONLIBREADLINE "6.2" +setenv EBDEVELLIBREADLINE "$root/easybuild/libreadline-6.2-ictce-5.3.0-easybuild-devel" + + +# built with EasyBuild version 1.4.0 diff --git a/rt/tabcompl/mf/lib/libtool/2.4.2-goolf-1.4.10 b/rt/tabcompl/mf/lib/libtool/2.4.2-goolf-1.4.10 deleted file mode 120000 index 4c6dbfb46..000000000 --- a/rt/tabcompl/mf/lib/libtool/2.4.2-goolf-1.4.10 +++ /dev/null @@ -1 +0,0 @@ -../../all/libtool/2.4.2-goolf-1.4.10 \ No newline at end of file diff --git a/rt/tabcompl/mf/lib/libtool/2.4.2-goolf-1.4.10 b/rt/tabcompl/mf/lib/libtool/2.4.2-goolf-1.4.10 new file mode 100644 index 000000000..c65b74740 --- /dev/null +++ b/rt/tabcompl/mf/lib/libtool/2.4.2-goolf-1.4.10 @@ -0,0 +1,30 @@ +#%Module + +proc ModulesHelp { } { + puts stderr { GNU libtool is a generic library support script. Libtool hides the complexity of using shared libraries +behind a consistent, portable interface. - Homepage: http://www.gnu.org/software/libtool +} +} + +module-whatis {GNU libtool is a generic library support script. Libtool hides the complexity of using shared libraries +behind a consistent, portable interface. - Homepage: http://www.gnu.org/software/libtool} + +set root /net/gmi.oeaw.ac.at/software/mendel/29_04_2013/software/libtool/2.4.2-goolf-1.4.10 + +conflict libtool + +if { ![is-loaded goolf/1.4.10] } { + module load goolf/1.4.10 +} + +prepend-path CPATH $root/include +prepend-path LD_LIBRARY_PATH $root/lib +prepend-path MANPATH $root/share/man +prepend-path PATH $root/bin + +setenv EBROOTLIBTOOL "$root" +setenv EBVERSIONLIBTOOL "2.4.2" +setenv EBDEVELLIBTOOL "$root/easybuild/libtool-2.4.2-goolf-1.4.10-easybuild-devel" + + +# built with EasyBuild version 1.3.0 diff --git a/rt/tabcompl/mf/lib/libxml2/2.8.0-goolf-1.4.10 b/rt/tabcompl/mf/lib/libxml2/2.8.0-goolf-1.4.10 deleted file mode 120000 index 4bef6c029..000000000 --- a/rt/tabcompl/mf/lib/libxml2/2.8.0-goolf-1.4.10 +++ /dev/null @@ -1 +0,0 @@ -../../all/libxml2/2.8.0-goolf-1.4.10 \ No newline at end of file diff --git a/rt/tabcompl/mf/lib/libxml2/2.8.0-goolf-1.4.10 b/rt/tabcompl/mf/lib/libxml2/2.8.0-goolf-1.4.10 new file mode 100644 index 000000000..42c869a11 --- /dev/null +++ b/rt/tabcompl/mf/lib/libxml2/2.8.0-goolf-1.4.10 @@ -0,0 +1,35 @@ +#%Module + +proc ModulesHelp { } { + puts stderr { Libxml2 is the XML C parser and toolchain developed for the Gnome project (but usable +outside of the Gnome platform). - Homepage: http://xmlsoft.org/ +} +} + +module-whatis {Libxml2 is the XML C parser and toolchain developed for the Gnome project (but usable +outside of the Gnome platform). - Homepage: http://xmlsoft.org/} + +set root /net/gmi.oeaw.ac.at/software/mendel/29_04_2013/software/libxml2/2.8.0-goolf-1.4.10 + +conflict libxml2 + +if { ![is-loaded goolf/1.4.10] } { + module load goolf/1.4.10 +} + +if { ![is-loaded zlib/1.2.7-goolf-1.4.10] } { + module load zlib/1.2.7-goolf-1.4.10 +} + +prepend-path CPATH $root/include +prepend-path LD_LIBRARY_PATH $root/lib +prepend-path MANPATH $root/share/man +prepend-path PATH $root/bin +prepend-path PKG_CONFIG_PATH $root/lib/pkgconfig + +setenv EBROOTLIBXML2 "$root" +setenv EBVERSIONLIBXML2 "2.8.0" +setenv EBDEVELLIBXML2 "$root/easybuild/libxml2-2.8.0-goolf-1.4.10-easybuild-devel" + + +# built with EasyBuild version 1.6.0 diff --git a/rt/tabcompl/mf/lib/libxml2/2.8.0-ictce-5.3.0 b/rt/tabcompl/mf/lib/libxml2/2.8.0-ictce-5.3.0 deleted file mode 120000 index b38487172..000000000 --- a/rt/tabcompl/mf/lib/libxml2/2.8.0-ictce-5.3.0 +++ /dev/null @@ -1 +0,0 @@ -../../all/libxml2/2.8.0-ictce-5.3.0 \ No newline at end of file diff --git a/rt/tabcompl/mf/lib/libxml2/2.8.0-ictce-5.3.0 b/rt/tabcompl/mf/lib/libxml2/2.8.0-ictce-5.3.0 new file mode 100644 index 000000000..6e9595cb5 --- /dev/null +++ b/rt/tabcompl/mf/lib/libxml2/2.8.0-ictce-5.3.0 @@ -0,0 +1,35 @@ +#%Module + +proc ModulesHelp { } { + puts stderr { Libxml2 is the XML C parser and toolchain developed for the Gnome project (but usable + outside of the Gnome platform). - Homepage: http://xmlsoft.org/ +} +} + +module-whatis {Libxml2 is the XML C parser and toolchain developed for the Gnome project (but usable + outside of the Gnome platform). - Homepage: http://xmlsoft.org/} + +set root /net/gmi.oeaw.ac.at/software/mendel/29_04_2013/software/libxml2/2.8.0-ictce-5.3.0 + +conflict libxml2 + +if { ![is-loaded ictce/5.3.0] } { + module load ictce/5.3.0 +} + +if { ![is-loaded zlib/1.2.7-ictce-5.3.0] } { + module load zlib/1.2.7-ictce-5.3.0 +} + +prepend-path CPATH $root/include +prepend-path LD_LIBRARY_PATH $root/lib +prepend-path MANPATH $root/share/man +prepend-path PATH $root/bin +prepend-path PKG_CONFIG_PATH $root/lib/pkgconfig + +setenv EBROOTLIBXML2 "$root" +setenv EBVERSIONLIBXML2 "2.8.0" +setenv EBDEVELLIBXML2 "$root/easybuild/libxml2-2.8.0-ictce-5.3.0-easybuild-devel" + + +# built with EasyBuild version 1.6.0 diff --git a/rt/tabcompl/mf/lib/libxml2/2.9.0-goolf-1.4.10 b/rt/tabcompl/mf/lib/libxml2/2.9.0-goolf-1.4.10 deleted file mode 120000 index 7c037a5d0..000000000 --- a/rt/tabcompl/mf/lib/libxml2/2.9.0-goolf-1.4.10 +++ /dev/null @@ -1 +0,0 @@ -../../all/libxml2/2.9.0-goolf-1.4.10 \ No newline at end of file diff --git a/rt/tabcompl/mf/lib/libxml2/2.9.0-goolf-1.4.10 b/rt/tabcompl/mf/lib/libxml2/2.9.0-goolf-1.4.10 new file mode 100644 index 000000000..80d5643ee --- /dev/null +++ b/rt/tabcompl/mf/lib/libxml2/2.9.0-goolf-1.4.10 @@ -0,0 +1,35 @@ +#%Module + +proc ModulesHelp { } { + puts stderr { Libxml2 is the XML C parser and toolchain developed for the Gnome project (but usable +outside of the Gnome platform). - Homepage: http://xmlsoft.org/ +} +} + +module-whatis {Libxml2 is the XML C parser and toolchain developed for the Gnome project (but usable +outside of the Gnome platform). - Homepage: http://xmlsoft.org/} + +set root /net/gmi.oeaw.ac.at/software/mendel/29_04_2013/software/libxml2/2.9.0-goolf-1.4.10 + +conflict libxml2 + +if { ![is-loaded goolf/1.4.10] } { + module load goolf/1.4.10 +} + +if { ![is-loaded zlib/1.2.7-goolf-1.4.10] } { + module load zlib/1.2.7-goolf-1.4.10 +} + +prepend-path CPATH $root/include +prepend-path LD_LIBRARY_PATH $root/lib +prepend-path MANPATH $root/share/man +prepend-path PATH $root/bin +prepend-path PKG_CONFIG_PATH $root/lib/pkgconfig + +setenv EBROOTLIBXML2 "$root" +setenv EBVERSIONLIBXML2 "2.9.0" +setenv EBDEVELLIBXML2 "$root/easybuild/libxml2-2.9.0-goolf-1.4.10-easybuild-devel" + + +# built with EasyBuild version 1.6.0 diff --git a/rt/tabcompl/mf/lib/libxml2/2.9.0-ictce-5.3.0 b/rt/tabcompl/mf/lib/libxml2/2.9.0-ictce-5.3.0 deleted file mode 120000 index 97d11d75e..000000000 --- a/rt/tabcompl/mf/lib/libxml2/2.9.0-ictce-5.3.0 +++ /dev/null @@ -1 +0,0 @@ -../../all/libxml2/2.9.0-ictce-5.3.0 \ No newline at end of file diff --git a/rt/tabcompl/mf/lib/libxml2/2.9.0-ictce-5.3.0 b/rt/tabcompl/mf/lib/libxml2/2.9.0-ictce-5.3.0 new file mode 100644 index 000000000..10fbca066 --- /dev/null +++ b/rt/tabcompl/mf/lib/libxml2/2.9.0-ictce-5.3.0 @@ -0,0 +1,35 @@ +#%Module + +proc ModulesHelp { } { + puts stderr { Libxml2 is the XML C parser and toolchain developed for the Gnome project (but usable + outside of the Gnome platform). - Homepage: http://xmlsoft.org/ +} +} + +module-whatis {Libxml2 is the XML C parser and toolchain developed for the Gnome project (but usable + outside of the Gnome platform). - Homepage: http://xmlsoft.org/} + +set root /net/gmi.oeaw.ac.at/software/mendel/29_04_2013/software/libxml2/2.9.0-ictce-5.3.0 + +conflict libxml2 + +if { ![is-loaded ictce/5.3.0] } { + module load ictce/5.3.0 +} + +if { ![is-loaded zlib/1.2.7-ictce-5.3.0] } { + module load zlib/1.2.7-ictce-5.3.0 +} + +prepend-path CPATH $root/include +prepend-path LD_LIBRARY_PATH $root/lib +prepend-path MANPATH $root/share/man +prepend-path PATH $root/bin +prepend-path PKG_CONFIG_PATH $root/lib/pkgconfig + +setenv EBROOTLIBXML2 "$root" +setenv EBVERSIONLIBXML2 "2.9.0" +setenv EBDEVELLIBXML2 "$root/easybuild/libxml2-2.9.0-ictce-5.3.0-easybuild-devel" + + +# built with EasyBuild version 1.6.0 diff --git a/rt/tabcompl/mf/lib/libxml2/2.9.1-goolf-1.4.10 b/rt/tabcompl/mf/lib/libxml2/2.9.1-goolf-1.4.10 deleted file mode 120000 index 957df465a..000000000 --- a/rt/tabcompl/mf/lib/libxml2/2.9.1-goolf-1.4.10 +++ /dev/null @@ -1 +0,0 @@ -../../all/libxml2/2.9.1-goolf-1.4.10 \ No newline at end of file diff --git a/rt/tabcompl/mf/lib/libxml2/2.9.1-goolf-1.4.10 b/rt/tabcompl/mf/lib/libxml2/2.9.1-goolf-1.4.10 new file mode 100644 index 000000000..1c97f6ef6 --- /dev/null +++ b/rt/tabcompl/mf/lib/libxml2/2.9.1-goolf-1.4.10 @@ -0,0 +1,36 @@ +#%Module + +proc ModulesHelp { } { + puts stderr { Libxml2 is the XML C parser and toolchain developed for the Gnome project (but usable +outside of the Gnome platform). - Homepage: http://xmlsoft.org/ + } +} + +module-whatis {Libxml2 is the XML C parser and toolchain developed for the Gnome project (but usable +outside of the Gnome platform). - Homepage: http://xmlsoft.org/} + +set root /net/gmi.oeaw.ac.at/software/mendel/29_04_2013/software/libxml2/2.9.1-goolf-1.4.10 + +conflict libxml2 + +if { ![is-loaded goolf/1.4.10] } { + module load goolf/1.4.10 +} + +if { ![is-loaded zlib/1.2.7-goolf-1.4.10] } { + module load zlib/1.2.7-goolf-1.4.10 +} + +prepend-path ACLOCAL_PATH $root/share/aclocal +prepend-path CPATH $root/include +prepend-path LD_LIBRARY_PATH $root/lib +prepend-path MANPATH $root/share/man +prepend-path PATH $root/bin +prepend-path PKG_CONFIG_PATH $root/lib/pkgconfig + +setenv EBROOTLIBXML2 "$root" +setenv EBVERSIONLIBXML2 "2.9.1" +setenv EBDEVELLIBXML2 "$root/easybuild/libxml2-2.9.1-goolf-1.4.10-easybuild-devel" + + +# built with EasyBuild version 1.8.2 diff --git a/rt/tabcompl/mf/lib/libyaml/0.1.4-goolf-1.4.10 b/rt/tabcompl/mf/lib/libyaml/0.1.4-goolf-1.4.10 deleted file mode 120000 index 05be66d0e..000000000 --- a/rt/tabcompl/mf/lib/libyaml/0.1.4-goolf-1.4.10 +++ /dev/null @@ -1 +0,0 @@ -../../all/libyaml/0.1.4-goolf-1.4.10 \ No newline at end of file diff --git a/rt/tabcompl/mf/lib/libyaml/0.1.4-goolf-1.4.10 b/rt/tabcompl/mf/lib/libyaml/0.1.4-goolf-1.4.10 new file mode 100644 index 000000000..fba4bcf66 --- /dev/null +++ b/rt/tabcompl/mf/lib/libyaml/0.1.4-goolf-1.4.10 @@ -0,0 +1,27 @@ +#%Module + +proc ModulesHelp { } { + puts stderr { LibYAML is a YAML 1.1 parser and emitter written in C. - Homepage: http://pyyaml.org/wiki/LibYAML +} +} + +module-whatis {LibYAML is a YAML 1.1 parser and emitter written in C. - Homepage: http://pyyaml.org/wiki/LibYAML} + +set root /net/gmi.oeaw.ac.at/software/mendel/29_04_2013/software/libyaml/0.1.4-goolf-1.4.10 + +conflict libyaml + +if { ![is-loaded goolf/1.4.10] } { + module load goolf/1.4.10 +} + +prepend-path CPATH $root/include +prepend-path LD_LIBRARY_PATH $root/lib +prepend-path PKG_CONFIG_PATH $root/lib/pkgconfig + +setenv EBROOTLIBYAML "$root" +setenv EBVERSIONLIBYAML "0.1.4" +setenv EBDEVELLIBYAML "$root/easybuild/libyaml-0.1.4-goolf-1.4.10-easybuild-devel" + + +# built with EasyBuild version 1.6.0dev diff --git a/rt/tabcompl/mf/lib/libyaml/0.1.4-ictce-5.3.0 b/rt/tabcompl/mf/lib/libyaml/0.1.4-ictce-5.3.0 deleted file mode 120000 index 2437c7daa..000000000 --- a/rt/tabcompl/mf/lib/libyaml/0.1.4-ictce-5.3.0 +++ /dev/null @@ -1 +0,0 @@ -../../all/libyaml/0.1.4-ictce-5.3.0 \ No newline at end of file diff --git a/rt/tabcompl/mf/lib/libyaml/0.1.4-ictce-5.3.0 b/rt/tabcompl/mf/lib/libyaml/0.1.4-ictce-5.3.0 new file mode 100644 index 000000000..d371cd6d5 --- /dev/null +++ b/rt/tabcompl/mf/lib/libyaml/0.1.4-ictce-5.3.0 @@ -0,0 +1,27 @@ +#%Module + +proc ModulesHelp { } { + puts stderr { LibYAML is a YAML 1.1 parser and emitter written in C. - Homepage: http://pyyaml.org/wiki/LibYAML +} +} + +module-whatis {LibYAML is a YAML 1.1 parser and emitter written in C. - Homepage: http://pyyaml.org/wiki/LibYAML} + +set root /net/gmi.oeaw.ac.at/software/mendel/29_04_2013/software/libyaml/0.1.4-ictce-5.3.0 + +conflict libyaml + +if { ![is-loaded ictce/5.3.0] } { + module load ictce/5.3.0 +} + +prepend-path CPATH $root/include +prepend-path LD_LIBRARY_PATH $root/lib +prepend-path PKG_CONFIG_PATH $root/lib/pkgconfig + +setenv EBROOTLIBYAML "$root" +setenv EBVERSIONLIBYAML "0.1.4" +setenv EBDEVELLIBYAML "$root/easybuild/libyaml-0.1.4-ictce-5.3.0-easybuild-devel" + + +# built with EasyBuild version 1.6.0dev diff --git a/rt/tabcompl/mf/lib/zlib/1.2.5-goolf-1.4.10 b/rt/tabcompl/mf/lib/zlib/1.2.5-goolf-1.4.10 deleted file mode 120000 index 653ca9ac2..000000000 --- a/rt/tabcompl/mf/lib/zlib/1.2.5-goolf-1.4.10 +++ /dev/null @@ -1 +0,0 @@ -../../all/zlib/1.2.5-goolf-1.4.10 \ No newline at end of file diff --git a/rt/tabcompl/mf/lib/zlib/1.2.5-goolf-1.4.10 b/rt/tabcompl/mf/lib/zlib/1.2.5-goolf-1.4.10 new file mode 100644 index 000000000..5757c024a --- /dev/null +++ b/rt/tabcompl/mf/lib/zlib/1.2.5-goolf-1.4.10 @@ -0,0 +1,32 @@ +#%Module + +proc ModulesHelp { } { + puts stderr { zlib is designed to be a free, general-purpose, legally unencumbered -- that is, +not covered by any patents -- lossless data-compression library for use on virtually any +computer hardware and operating system. - Homepage: http://www.zlib.net/ +} +} + +module-whatis {zlib is designed to be a free, general-purpose, legally unencumbered -- that is, +not covered by any patents -- lossless data-compression library for use on virtually any +computer hardware and operating system. - Homepage: http://www.zlib.net/} + +set root /net/gmi.oeaw.ac.at/software/mendel/29_04_2013/software/zlib/1.2.5-goolf-1.4.10 + +conflict zlib + +if { ![is-loaded goolf/1.4.10] } { + module load goolf/1.4.10 +} + +prepend-path CPATH $root/include +prepend-path LD_LIBRARY_PATH $root/lib +prepend-path MANPATH $root/share/man +prepend-path PKG_CONFIG_PATH $root/lib/pkgconfig + +setenv EBROOTZLIB "$root" +setenv EBVERSIONZLIB "1.2.5" +setenv EBDEVELZLIB "$root/easybuild/zlib-1.2.5-goolf-1.4.10-easybuild-devel" + + +# built with EasyBuild version 1.6.0dev diff --git a/rt/tabcompl/mf/lib/zlib/1.2.7-goalf-1.1.0-no-OFED b/rt/tabcompl/mf/lib/zlib/1.2.7-goalf-1.1.0-no-OFED deleted file mode 120000 index 070c03fd4..000000000 --- a/rt/tabcompl/mf/lib/zlib/1.2.7-goalf-1.1.0-no-OFED +++ /dev/null @@ -1 +0,0 @@ -../../all/zlib/1.2.7-goalf-1.1.0-no-OFED \ No newline at end of file diff --git a/rt/tabcompl/mf/lib/zlib/1.2.7-goalf-1.1.0-no-OFED b/rt/tabcompl/mf/lib/zlib/1.2.7-goalf-1.1.0-no-OFED new file mode 100644 index 000000000..9e0281cc5 --- /dev/null +++ b/rt/tabcompl/mf/lib/zlib/1.2.7-goalf-1.1.0-no-OFED @@ -0,0 +1,32 @@ +#%Module + +proc ModulesHelp { } { + puts stderr { zlib is designed to be a free, general-purpose, legally unencumbered -- that is, + not covered by any patents -- lossless data-compression library for use on virtually any + computer hardware and operating system. - Homepage: http://www.zlib.net/ +} +} + +module-whatis {zlib is designed to be a free, general-purpose, legally unencumbered -- that is, + not covered by any patents -- lossless data-compression library for use on virtually any + computer hardware and operating system. - Homepage: http://www.zlib.net/} + +set root /net/gmi.oeaw.ac.at/software/mendel/29_04_2013/software/zlib/1.2.7-goalf-1.1.0-no-OFED + +conflict zlib + +if { ![is-loaded goalf/1.1.0-no-OFED] } { + module load goalf/1.1.0-no-OFED +} + +prepend-path CPATH $root/include +prepend-path LD_LIBRARY_PATH $root/lib +prepend-path MANPATH $root/share/man +prepend-path PKG_CONFIG_PATH $root/lib/pkgconfig + +setenv EBROOTZLIB "$root" +setenv EBVERSIONZLIB "1.2.7" +setenv EBDEVELZLIB "$root/easybuild/zlib-1.2.7-goalf-1.1.0-no-OFED-easybuild-devel" + + +# built with EasyBuild version 1.3.0 diff --git a/rt/tabcompl/mf/lib/zlib/1.2.7-goolf-1.4.10 b/rt/tabcompl/mf/lib/zlib/1.2.7-goolf-1.4.10 deleted file mode 120000 index 49a23c938..000000000 --- a/rt/tabcompl/mf/lib/zlib/1.2.7-goolf-1.4.10 +++ /dev/null @@ -1 +0,0 @@ -../../all/zlib/1.2.7-goolf-1.4.10 \ No newline at end of file diff --git a/rt/tabcompl/mf/lib/zlib/1.2.7-goolf-1.4.10 b/rt/tabcompl/mf/lib/zlib/1.2.7-goolf-1.4.10 new file mode 100644 index 000000000..0aef0ccb8 --- /dev/null +++ b/rt/tabcompl/mf/lib/zlib/1.2.7-goolf-1.4.10 @@ -0,0 +1,32 @@ +#%Module + +proc ModulesHelp { } { + puts stderr { zlib is designed to be a free, general-purpose, legally unencumbered -- that is, +not covered by any patents -- lossless data-compression library for use on virtually any +computer hardware and operating system. - Homepage: http://www.zlib.net/ +} +} + +module-whatis {zlib is designed to be a free, general-purpose, legally unencumbered -- that is, +not covered by any patents -- lossless data-compression library for use on virtually any +computer hardware and operating system. - Homepage: http://www.zlib.net/} + +set root /net/gmi.oeaw.ac.at/software/mendel/29_04_2013/software/zlib/1.2.7-goolf-1.4.10 + +conflict zlib + +if { ![is-loaded goolf/1.4.10] } { + module load goolf/1.4.10 +} + +prepend-path CPATH $root/include +prepend-path LD_LIBRARY_PATH $root/lib +prepend-path MANPATH $root/share/man +prepend-path PKG_CONFIG_PATH $root/lib/pkgconfig + +setenv EBROOTZLIB "$root" +setenv EBVERSIONZLIB "1.2.7" +setenv EBDEVELZLIB "$root/easybuild/zlib-1.2.7-goolf-1.4.10-easybuild-devel" + + +# built with EasyBuild version 1.3.0 diff --git a/rt/tabcompl/mf/lib/zlib/1.2.7-ictce-5.2.0 b/rt/tabcompl/mf/lib/zlib/1.2.7-ictce-5.2.0 deleted file mode 120000 index 59cc24aa8..000000000 --- a/rt/tabcompl/mf/lib/zlib/1.2.7-ictce-5.2.0 +++ /dev/null @@ -1 +0,0 @@ -../../all/zlib/1.2.7-ictce-5.2.0 \ No newline at end of file diff --git a/rt/tabcompl/mf/lib/zlib/1.2.7-ictce-5.2.0 b/rt/tabcompl/mf/lib/zlib/1.2.7-ictce-5.2.0 new file mode 100644 index 000000000..b4573aea7 --- /dev/null +++ b/rt/tabcompl/mf/lib/zlib/1.2.7-ictce-5.2.0 @@ -0,0 +1,32 @@ +#%Module + +proc ModulesHelp { } { + puts stderr { zlib is designed to be a free, general-purpose, legally unencumbered -- that is, + not covered by any patents -- lossless data-compression library for use on virtually any + computer hardware and operating system. - Homepage: http://www.zlib.net/ +} +} + +module-whatis {zlib is designed to be a free, general-purpose, legally unencumbered -- that is, + not covered by any patents -- lossless data-compression library for use on virtually any + computer hardware and operating system. - Homepage: http://www.zlib.net/} + +set root /net/gmi.oeaw.ac.at/software/mendel/29_04_2013/software/zlib/1.2.7-ictce-5.2.0 + +conflict zlib + +if { ![is-loaded ictce/5.2.0] } { + module load ictce/5.2.0 +} + +prepend-path CPATH $root/include +prepend-path LD_LIBRARY_PATH $root/lib +prepend-path MANPATH $root/share/man +prepend-path PKG_CONFIG_PATH $root/lib/pkgconfig + +setenv EBROOTZLIB "$root" +setenv EBVERSIONZLIB "1.2.7" +setenv EBDEVELZLIB "$root/easybuild/zlib-1.2.7-ictce-5.2.0-easybuild-devel" + + +# built with EasyBuild version 1.3.0 diff --git a/rt/tabcompl/mf/lib/zlib/1.2.7-ictce-5.3.0 b/rt/tabcompl/mf/lib/zlib/1.2.7-ictce-5.3.0 deleted file mode 120000 index f25ce75e1..000000000 --- a/rt/tabcompl/mf/lib/zlib/1.2.7-ictce-5.3.0 +++ /dev/null @@ -1 +0,0 @@ -../../all/zlib/1.2.7-ictce-5.3.0 \ No newline at end of file diff --git a/rt/tabcompl/mf/lib/zlib/1.2.7-ictce-5.3.0 b/rt/tabcompl/mf/lib/zlib/1.2.7-ictce-5.3.0 new file mode 100644 index 000000000..a3b893f25 --- /dev/null +++ b/rt/tabcompl/mf/lib/zlib/1.2.7-ictce-5.3.0 @@ -0,0 +1,32 @@ +#%Module + +proc ModulesHelp { } { + puts stderr { zlib is designed to be a free, general-purpose, legally unencumbered -- that is, + not covered by any patents -- lossless data-compression library for use on virtually any + computer hardware and operating system. - Homepage: http://www.zlib.net/ +} +} + +module-whatis {zlib is designed to be a free, general-purpose, legally unencumbered -- that is, + not covered by any patents -- lossless data-compression library for use on virtually any + computer hardware and operating system. - Homepage: http://www.zlib.net/} + +set root /net/gmi.oeaw.ac.at/software/mendel/29_04_2013/software/zlib/1.2.7-ictce-5.3.0 + +conflict zlib + +if { ![is-loaded ictce/5.3.0] } { + module load ictce/5.3.0 +} + +prepend-path CPATH $root/include +prepend-path LD_LIBRARY_PATH $root/lib +prepend-path MANPATH $root/share/man +prepend-path PKG_CONFIG_PATH $root/lib/pkgconfig + +setenv EBROOTZLIB "$root" +setenv EBVERSIONZLIB "1.2.7" +setenv EBDEVELZLIB "$root/easybuild/zlib-1.2.7-ictce-5.3.0-easybuild-devel" + + +# built with EasyBuild version 1.4.0 diff --git a/rt/tabcompl/mf/lib/zlib/1.2.8-goolf-1.4.10 b/rt/tabcompl/mf/lib/zlib/1.2.8-goolf-1.4.10 deleted file mode 120000 index f3010ddf9..000000000 --- a/rt/tabcompl/mf/lib/zlib/1.2.8-goolf-1.4.10 +++ /dev/null @@ -1 +0,0 @@ -../../all/zlib/1.2.8-goolf-1.4.10 \ No newline at end of file diff --git a/rt/tabcompl/mf/lib/zlib/1.2.8-goolf-1.4.10 b/rt/tabcompl/mf/lib/zlib/1.2.8-goolf-1.4.10 new file mode 100644 index 000000000..aec4ed431 --- /dev/null +++ b/rt/tabcompl/mf/lib/zlib/1.2.8-goolf-1.4.10 @@ -0,0 +1,32 @@ +#%Module + +proc ModulesHelp { } { + puts stderr { zlib is designed to be a free, general-purpose, legally unencumbered -- that is, + not covered by any patents -- lossless data-compression library for use on virtually any + computer hardware and operating system. - Homepage: http://www.zlib.net/ +} +} + +module-whatis {zlib is designed to be a free, general-purpose, legally unencumbered -- that is, + not covered by any patents -- lossless data-compression library for use on virtually any + computer hardware and operating system. - Homepage: http://www.zlib.net/} + +set root /net/gmi.oeaw.ac.at/software/mendel/29_04_2013/software/zlib/1.2.8-goolf-1.4.10 + +conflict zlib + +if { ![is-loaded goolf/1.4.10] } { + module load goolf/1.4.10 +} + +prepend-path CPATH $root/include +prepend-path LD_LIBRARY_PATH $root/lib +prepend-path MANPATH $root/share/man +prepend-path PKG_CONFIG_PATH $root/lib/pkgconfig + +setenv EBROOTZLIB "$root" +setenv EBVERSIONZLIB "1.2.8" +setenv EBDEVELZLIB "$root/easybuild/zlib-1.2.8-goolf-1.4.10-easybuild-devel" + + +# built with EasyBuild version 1.6.0dev diff --git a/rt/tabcompl/mf/lib/zlib/1.2.8-ictce-5.3.0 b/rt/tabcompl/mf/lib/zlib/1.2.8-ictce-5.3.0 deleted file mode 120000 index 254f2c206..000000000 --- a/rt/tabcompl/mf/lib/zlib/1.2.8-ictce-5.3.0 +++ /dev/null @@ -1 +0,0 @@ -../../all/zlib/1.2.8-ictce-5.3.0 \ No newline at end of file diff --git a/rt/tabcompl/mf/lib/zlib/1.2.8-ictce-5.3.0 b/rt/tabcompl/mf/lib/zlib/1.2.8-ictce-5.3.0 new file mode 100644 index 000000000..f35fa2b6b --- /dev/null +++ b/rt/tabcompl/mf/lib/zlib/1.2.8-ictce-5.3.0 @@ -0,0 +1,32 @@ +#%Module + +proc ModulesHelp { } { + puts stderr { zlib is designed to be a free, general-purpose, legally unencumbered -- that is, + not covered by any patents -- lossless data-compression library for use on virtually any + computer hardware and operating system. - Homepage: http://www.zlib.net/ +} +} + +module-whatis {zlib is designed to be a free, general-purpose, legally unencumbered -- that is, + not covered by any patents -- lossless data-compression library for use on virtually any + computer hardware and operating system. - Homepage: http://www.zlib.net/} + +set root /net/gmi.oeaw.ac.at/software/mendel/29_04_2013/software/zlib/1.2.8-ictce-5.3.0 + +conflict zlib + +if { ![is-loaded ictce/5.3.0] } { + module load ictce/5.3.0 +} + +prepend-path CPATH $root/include +prepend-path LD_LIBRARY_PATH $root/lib +prepend-path MANPATH $root/share/man +prepend-path PKG_CONFIG_PATH $root/lib/pkgconfig + +setenv EBROOTZLIB "$root" +setenv EBVERSIONZLIB "1.2.8" +setenv EBDEVELZLIB "$root/easybuild/zlib-1.2.8-ictce-5.3.0-easybuild-devel" + + +# built with EasyBuild version 1.6.0dev diff --git a/rt/tabcompl/mf/math/GMP/5.0.5-goolf-1.4.10 b/rt/tabcompl/mf/math/GMP/5.0.5-goolf-1.4.10 deleted file mode 120000 index bf6b27f82..000000000 --- a/rt/tabcompl/mf/math/GMP/5.0.5-goolf-1.4.10 +++ /dev/null @@ -1 +0,0 @@ -../../all/GMP/5.0.5-goolf-1.4.10 \ No newline at end of file diff --git a/rt/tabcompl/mf/math/GMP/5.0.5-goolf-1.4.10 b/rt/tabcompl/mf/math/GMP/5.0.5-goolf-1.4.10 new file mode 100644 index 000000000..47e651d25 --- /dev/null +++ b/rt/tabcompl/mf/math/GMP/5.0.5-goolf-1.4.10 @@ -0,0 +1,28 @@ +#%Module + +proc ModulesHelp { } { + puts stderr { GMP is a free library for arbitrary precision arithmetic, +operating on signed integers, rational numbers, and floating point numbers. - Homepage: http://gmplib.org/ +} +} + +module-whatis {GMP is a free library for arbitrary precision arithmetic, +operating on signed integers, rational numbers, and floating point numbers. - Homepage: http://gmplib.org/} + +set root /net/gmi.oeaw.ac.at/software/mendel/29_04_2013/software/GMP/5.0.5-goolf-1.4.10 + +conflict GMP + +if { ![is-loaded goolf/1.4.10] } { + module load goolf/1.4.10 +} + +prepend-path CPATH $root/include +prepend-path LD_LIBRARY_PATH $root/lib + +setenv EBROOTGMP "$root" +setenv EBVERSIONGMP "5.0.5" +setenv EBDEVELGMP "$root/easybuild/GMP-5.0.5-goolf-1.4.10-easybuild-devel" + + +# built with EasyBuild version 1.3.0 diff --git a/rt/tabcompl/mf/math/R/2.15.2-goolf-1.4.10 b/rt/tabcompl/mf/math/R/2.15.2-goolf-1.4.10 deleted file mode 120000 index 1e6645e15..000000000 --- a/rt/tabcompl/mf/math/R/2.15.2-goolf-1.4.10 +++ /dev/null @@ -1 +0,0 @@ -../../all/R/2.15.2-goolf-1.4.10 \ No newline at end of file diff --git a/rt/tabcompl/mf/math/R/2.15.2-goolf-1.4.10 b/rt/tabcompl/mf/math/R/2.15.2-goolf-1.4.10 new file mode 100644 index 000000000..337728502 --- /dev/null +++ b/rt/tabcompl/mf/math/R/2.15.2-goolf-1.4.10 @@ -0,0 +1,48 @@ +#%Module + +proc ModulesHelp { } { + puts stderr { R is a free software environment for statistical computing and graphics. - Homepage: http://www.r-project.org/ + } +} + +module-whatis {R is a free software environment for statistical computing and graphics. - Homepage: http://www.r-project.org/} + +set root /net/gmi.oeaw.ac.at/software/mendel/29_04_2013/software/R/2.15.2-goolf-1.4.10 + +conflict R + +if { ![is-loaded goolf/1.4.10] } { + module load goolf/1.4.10 +} + +if { ![is-loaded libreadline/6.2-goolf-1.4.10] } { + module load libreadline/6.2-goolf-1.4.10 +} + +if { ![is-loaded ncurses/5.9-goolf-1.4.10] } { + module load ncurses/5.9-goolf-1.4.10 +} + +if { ![is-loaded zlib/1.2.7-goolf-1.4.10] } { + module load zlib/1.2.7-goolf-1.4.10 +} + +if { ![is-loaded libpng/1.5.13-goolf-1.4.10] } { + module load libpng/1.5.13-goolf-1.4.10 +} + +if { ![is-loaded Java/1.7.0_10] } { + module load Java/1.7.0_10 +} + +prepend-path LD_LIBRARY_PATH $root/lib64 +prepend-path MANPATH $root/share/man +prepend-path PATH $root/bin + +setenv EBROOTR "$root" +setenv EBVERSIONR "2.15.2" +setenv EBDEVELR "$root/easybuild/R-2.15.2-goolf-1.4.10-easybuild-devel" + +setenv EBEXTSLISTR "base-,datasets-,graphics-,grDevices-,grid-,methods-,splines-,stats-,stats4-,tools-,utils-,Rmpi-0.5-9,irace-1.03,rJava-0.9-4,lattice-0.20-15,RColorBrewer-1.0-5,latticeExtra-0.6-24,Matrix-1.0-12,png-0.1-4,Rcpp-0.10.3,quadprog-1.5-5,BB-2013.4-1,MASS-7.3-22,rlecuyer-0.3-3,class-7.3-5,e1071-1.6-1,nnet-7.3-6,car-2.0-16,colorspace-1.2-2,robustbase-0.9-7,sp-0.9-91,vcd-1.2-13,Rserve-0.6-1,DBI-0.2-6,RSQLite-0.11.3,hwriter-1.3,bitops-1.0-5,BiocGenerics-0.4.0,Biobase-2.18.0,IRanges-1.16.6,AnnotationDbi-1.20.7,Biostrings-2.26.3,GenomicRanges-1.10.7,BSgenome-1.26.1,zlibbioc-1.4.0,Rsamtools-1.10.2,ShortRead-1.16.4,akima-0.5-9,boot-1.3-7,cluster-1.14.4,coda-0.16-1,codetools-0.2-8,foreign-0.8-53,gam-1.08,nlme-3.1-105,survival-2.37-4,gamlss.data-4.2-0,gamlss.dist-4.2-0,gamlss-4.2-0,gamlss.tr-4.1-0,KernSmooth-2.23-10,zoo-1.7-9,lmtest-0.9-31,mgcv-1.7-22,mnormt-1.4-5,mvtnorm-0.9-9994,numDeriv-2012.9-1,pscl-1.04.4,rpart-4.1-1,sandwich-2.2-10,sfsmisc-1.0-23,spatial-7.3-5,VGAM-0.9-1,waveslim-1.7.1,xtable-1.7-0,profileModel-0.5-8,brglm-0.5-7,deSolve-1.10-6,odesolve-0.9-9,tseriesChaos-0.1-11,tseries-0.10-31,neuRosim-0.2-10,fastICA-1.1-16,R.methodsS3-1.4.2,R.oo-1.13.0,R.matlab-1.7.0,Rniftilib-0.0-32" + +# built with EasyBuild version 1.8.2 diff --git a/rt/tabcompl/mf/math/R/2.15.2-goolf-1.4.10-bare b/rt/tabcompl/mf/math/R/2.15.2-goolf-1.4.10-bare deleted file mode 120000 index 40d5b5df7..000000000 --- a/rt/tabcompl/mf/math/R/2.15.2-goolf-1.4.10-bare +++ /dev/null @@ -1 +0,0 @@ -../../all/R/2.15.2-goolf-1.4.10-bare \ No newline at end of file diff --git a/rt/tabcompl/mf/math/R/2.15.2-goolf-1.4.10-bare b/rt/tabcompl/mf/math/R/2.15.2-goolf-1.4.10-bare new file mode 100644 index 000000000..537617a2e --- /dev/null +++ b/rt/tabcompl/mf/math/R/2.15.2-goolf-1.4.10-bare @@ -0,0 +1,43 @@ +#%Module + +proc ModulesHelp { } { + puts stderr { R is a free software environment for statistical computing and graphics. - Homepage: http://www.r-project.org/ + } +} + +module-whatis {R is a free software environment for statistical computing and graphics. - Homepage: http://www.r-project.org/} + +set root /net/gmi.oeaw.ac.at/software/mendel/29_04_2013/software/R/2.15.2-goolf-1.4.10-bare + +conflict R + +if { ![is-loaded goolf/1.4.10] } { + module load goolf/1.4.10 +} + +if { ![is-loaded libreadline/6.2-goolf-1.4.10] } { + module load libreadline/6.2-goolf-1.4.10 +} + +if { ![is-loaded ncurses/5.9-goolf-1.4.10] } { + module load ncurses/5.9-goolf-1.4.10 +} + +if { ![is-loaded libpng/1.5.13-goolf-1.4.10] } { + module load libpng/1.5.13-goolf-1.4.10 +} + +if { ![is-loaded Java/1.7.0_10] } { + module load Java/1.7.0_10 +} + +prepend-path LD_LIBRARY_PATH $root/lib64 +prepend-path MANPATH $root/share/man +prepend-path PATH $root/bin + +setenv EBROOTR "$root" +setenv EBVERSIONR "2.15.2" +setenv EBDEVELR "$root/easybuild/R-2.15.2-goolf-1.4.10-bare-easybuild-devel" + + +# built with EasyBuild version 1.8.2 diff --git a/rt/tabcompl/mf/math/R/2.15.2-ictce-5.3.0-bare b/rt/tabcompl/mf/math/R/2.15.2-ictce-5.3.0-bare deleted file mode 120000 index 75be93ebe..000000000 --- a/rt/tabcompl/mf/math/R/2.15.2-ictce-5.3.0-bare +++ /dev/null @@ -1 +0,0 @@ -../../all/R/2.15.2-ictce-5.3.0-bare \ No newline at end of file diff --git a/rt/tabcompl/mf/math/R/2.15.2-ictce-5.3.0-bare b/rt/tabcompl/mf/math/R/2.15.2-ictce-5.3.0-bare new file mode 100644 index 000000000..fc058fc82 --- /dev/null +++ b/rt/tabcompl/mf/math/R/2.15.2-ictce-5.3.0-bare @@ -0,0 +1,43 @@ +#%Module + +proc ModulesHelp { } { + puts stderr { R is a free software environment for statistical computing and graphics. - Homepage: http://www.r-project.org/ +} +} + +module-whatis {R is a free software environment for statistical computing and graphics. - Homepage: http://www.r-project.org/} + +set root /net/gmi.oeaw.ac.at/software/mendel/29_04_2013/software/R/2.15.2-ictce-5.3.0-bare + +conflict R + +if { ![is-loaded ictce/5.3.0] } { + module load ictce/5.3.0 +} + +if { ![is-loaded libreadline/6.2-ictce-5.3.0] } { + module load libreadline/6.2-ictce-5.3.0 +} + +if { ![is-loaded ncurses/5.9-ictce-5.3.0] } { + module load ncurses/5.9-ictce-5.3.0 +} + +if { ![is-loaded libpng/1.5.13-ictce-5.3.0] } { + module load libpng/1.5.13-ictce-5.3.0 +} + +if { ![is-loaded Java/1.7.0_10] } { + module load Java/1.7.0_10 +} + +prepend-path LD_LIBRARY_PATH $root/lib64 +prepend-path MANPATH $root/share/man +prepend-path PATH $root/bin + +setenv EBROOTR "$root" +setenv EBVERSIONR "2.15.2" +setenv EBDEVELR "$root/easybuild/R-2.15.2-ictce-5.3.0-bare-easybuild-devel" + + +# built with EasyBuild version 1.4.0 diff --git a/rt/tabcompl/mf/math/R/2.15.3-ictce-5.3.0-bare b/rt/tabcompl/mf/math/R/2.15.3-ictce-5.3.0-bare deleted file mode 120000 index ed1407aa9..000000000 --- a/rt/tabcompl/mf/math/R/2.15.3-ictce-5.3.0-bare +++ /dev/null @@ -1 +0,0 @@ -../../all/R/2.15.3-ictce-5.3.0-bare \ No newline at end of file diff --git a/rt/tabcompl/mf/math/R/2.15.3-ictce-5.3.0-bare b/rt/tabcompl/mf/math/R/2.15.3-ictce-5.3.0-bare new file mode 100644 index 000000000..608e16b52 --- /dev/null +++ b/rt/tabcompl/mf/math/R/2.15.3-ictce-5.3.0-bare @@ -0,0 +1,43 @@ +#%Module + +proc ModulesHelp { } { + puts stderr { R is a free software environment for statistical computing and graphics. - Homepage: http://www.r-project.org/ +} +} + +module-whatis {R is a free software environment for statistical computing and graphics. - Homepage: http://www.r-project.org/} + +set root /net/gmi.oeaw.ac.at/software/mendel/29_04_2013/software/R/2.15.3-ictce-5.3.0-bare + +conflict R + +if { ![is-loaded ictce/5.3.0] } { + module load ictce/5.3.0 +} + +if { ![is-loaded libreadline/6.2-ictce-5.3.0] } { + module load libreadline/6.2-ictce-5.3.0 +} + +if { ![is-loaded ncurses/5.9-ictce-5.3.0] } { + module load ncurses/5.9-ictce-5.3.0 +} + +if { ![is-loaded libpng/1.5.13-ictce-5.3.0] } { + module load libpng/1.5.13-ictce-5.3.0 +} + +if { ![is-loaded Java/1.7.0_10] } { + module load Java/1.7.0_10 +} + +prepend-path LD_LIBRARY_PATH $root/lib64 +prepend-path MANPATH $root/share/man +prepend-path PATH $root/bin + +setenv EBROOTR "$root" +setenv EBVERSIONR "2.15.3" +setenv EBDEVELR "$root/easybuild/R-2.15.3-ictce-5.3.0-bare-easybuild-devel" + + +# built with EasyBuild version 1.4.0 diff --git a/rt/tabcompl/mf/math/R/3.0.0-goolf-1.4.10-bare b/rt/tabcompl/mf/math/R/3.0.0-goolf-1.4.10-bare deleted file mode 120000 index fb46a28ec..000000000 --- a/rt/tabcompl/mf/math/R/3.0.0-goolf-1.4.10-bare +++ /dev/null @@ -1 +0,0 @@ -../../all/R/3.0.0-goolf-1.4.10-bare \ No newline at end of file diff --git a/rt/tabcompl/mf/math/R/3.0.0-goolf-1.4.10-bare b/rt/tabcompl/mf/math/R/3.0.0-goolf-1.4.10-bare new file mode 100644 index 000000000..841c6601a --- /dev/null +++ b/rt/tabcompl/mf/math/R/3.0.0-goolf-1.4.10-bare @@ -0,0 +1,43 @@ +#%Module + +proc ModulesHelp { } { + puts stderr { R is a free software environment for statistical computing and graphics. - Homepage: http://www.r-project.org/ +} +} + +module-whatis {R is a free software environment for statistical computing and graphics. - Homepage: http://www.r-project.org/} + +set root /net/gmi.oeaw.ac.at/software/mendel/29_04_2013/software/R/3.0.0-goolf-1.4.10-bare + +conflict R + +if { ![is-loaded goolf/1.4.10] } { + module load goolf/1.4.10 +} + +if { ![is-loaded libreadline/6.2-goolf-1.4.10] } { + module load libreadline/6.2-goolf-1.4.10 +} + +if { ![is-loaded ncurses/5.9-goolf-1.4.10] } { + module load ncurses/5.9-goolf-1.4.10 +} + +if { ![is-loaded libpng/1.5.13-goolf-1.4.10] } { + module load libpng/1.5.13-goolf-1.4.10 +} + +if { ![is-loaded Java/1.7.0_10] } { + module load Java/1.7.0_10 +} + +prepend-path LD_LIBRARY_PATH $root/lib64 +prepend-path MANPATH $root/share/man +prepend-path PATH $root/bin + +setenv EBROOTR "$root" +setenv EBVERSIONR "3.0.0" +setenv EBDEVELR "$root/easybuild/R-3.0.0-goolf-1.4.10-bare-easybuild-devel" + + +# built with EasyBuild version 1.3.0 diff --git a/rt/tabcompl/mf/math/R/3.0.1-goolf-1.4.10-bare b/rt/tabcompl/mf/math/R/3.0.1-goolf-1.4.10-bare deleted file mode 120000 index 33536f58a..000000000 --- a/rt/tabcompl/mf/math/R/3.0.1-goolf-1.4.10-bare +++ /dev/null @@ -1 +0,0 @@ -../../all/R/3.0.1-goolf-1.4.10-bare \ No newline at end of file diff --git a/rt/tabcompl/mf/math/R/3.0.1-goolf-1.4.10-bare b/rt/tabcompl/mf/math/R/3.0.1-goolf-1.4.10-bare new file mode 100644 index 000000000..a3025fa60 --- /dev/null +++ b/rt/tabcompl/mf/math/R/3.0.1-goolf-1.4.10-bare @@ -0,0 +1,43 @@ +#%Module + +proc ModulesHelp { } { + puts stderr { R is a free software environment for statistical computing and graphics. - Homepage: http://www.r-project.org/ + } +} + +module-whatis {R is a free software environment for statistical computing and graphics. - Homepage: http://www.r-project.org/} + +set root /net/gmi.oeaw.ac.at/software/mendel/29_04_2013/software/R/3.0.1-goolf-1.4.10-bare + +conflict R + +if { ![is-loaded goolf/1.4.10] } { + module load goolf/1.4.10 +} + +if { ![is-loaded libreadline/6.2-goolf-1.4.10] } { + module load libreadline/6.2-goolf-1.4.10 +} + +if { ![is-loaded ncurses/5.9-goolf-1.4.10] } { + module load ncurses/5.9-goolf-1.4.10 +} + +if { ![is-loaded libpng/1.6.2-goolf-1.4.10] } { + module load libpng/1.6.2-goolf-1.4.10 +} + +if { ![is-loaded Java/1.7.0_21] } { + module load Java/1.7.0_21 +} + +prepend-path LD_LIBRARY_PATH $root/lib64 +prepend-path MANPATH $root/share/man +prepend-path PATH $root/bin + +setenv EBROOTR "$root" +setenv EBVERSIONR "3.0.1" +setenv EBDEVELR "$root/easybuild/R-3.0.1-goolf-1.4.10-bare-easybuild-devel" + + +# built with EasyBuild version 1.8.2 diff --git a/rt/tabcompl/mf/math/R/3.0.1-ictce-5.3.0-bare b/rt/tabcompl/mf/math/R/3.0.1-ictce-5.3.0-bare deleted file mode 120000 index 695b87457..000000000 --- a/rt/tabcompl/mf/math/R/3.0.1-ictce-5.3.0-bare +++ /dev/null @@ -1 +0,0 @@ -../../all/R/3.0.1-ictce-5.3.0-bare \ No newline at end of file diff --git a/rt/tabcompl/mf/math/R/3.0.1-ictce-5.3.0-bare b/rt/tabcompl/mf/math/R/3.0.1-ictce-5.3.0-bare new file mode 100644 index 000000000..dbf044250 --- /dev/null +++ b/rt/tabcompl/mf/math/R/3.0.1-ictce-5.3.0-bare @@ -0,0 +1,43 @@ +#%Module + +proc ModulesHelp { } { + puts stderr { R is a free software environment for statistical computing and graphics. - Homepage: http://www.r-project.org/ +} +} + +module-whatis {R is a free software environment for statistical computing and graphics. - Homepage: http://www.r-project.org/} + +set root /net/gmi.oeaw.ac.at/software/mendel/29_04_2013/software/R/3.0.1-ictce-5.3.0-bare + +conflict R + +if { ![is-loaded ictce/5.3.0] } { + module load ictce/5.3.0 +} + +if { ![is-loaded libreadline/6.2-ictce-5.3.0] } { + module load libreadline/6.2-ictce-5.3.0 +} + +if { ![is-loaded ncurses/5.9-ictce-5.3.0] } { + module load ncurses/5.9-ictce-5.3.0 +} + +if { ![is-loaded libpng/1.5.13-ictce-5.3.0] } { + module load libpng/1.5.13-ictce-5.3.0 +} + +if { ![is-loaded Java/1.7.0_10] } { + module load Java/1.7.0_10 +} + +prepend-path LD_LIBRARY_PATH $root/lib64 +prepend-path MANPATH $root/share/man +prepend-path PATH $root/bin + +setenv EBROOTR "$root" +setenv EBVERSIONR "3.0.1" +setenv EBDEVELR "$root/easybuild/R-3.0.1-ictce-5.3.0-bare-easybuild-devel" + + +# built with EasyBuild version 1.4.0 diff --git a/rt/tabcompl/mf/math/SCOTCH/5.1.12b_esmumps-ictce-5.3.0 b/rt/tabcompl/mf/math/SCOTCH/5.1.12b_esmumps-ictce-5.3.0 deleted file mode 120000 index 021ca37d3..000000000 --- a/rt/tabcompl/mf/math/SCOTCH/5.1.12b_esmumps-ictce-5.3.0 +++ /dev/null @@ -1 +0,0 @@ -../../all/SCOTCH/5.1.12b_esmumps-ictce-5.3.0 \ No newline at end of file diff --git a/rt/tabcompl/mf/math/SCOTCH/5.1.12b_esmumps-ictce-5.3.0 b/rt/tabcompl/mf/math/SCOTCH/5.1.12b_esmumps-ictce-5.3.0 new file mode 100644 index 000000000..fde13e652 --- /dev/null +++ b/rt/tabcompl/mf/math/SCOTCH/5.1.12b_esmumps-ictce-5.3.0 @@ -0,0 +1,30 @@ +#%Module + +proc ModulesHelp { } { + puts stderr { Software package and libraries for sequential and parallel graph partitioning, + static mapping, and sparse matrix block ordering, and sequential mesh and hypergraph partitioning. - Homepage: http://www.labri.fr/perso/pelegrin/scotch/ +} +} + +module-whatis {Software package and libraries for sequential and parallel graph partitioning, + static mapping, and sparse matrix block ordering, and sequential mesh and hypergraph partitioning. - Homepage: http://www.labri.fr/perso/pelegrin/scotch/} + +set root /net/gmi.oeaw.ac.at/software/mendel/29_04_2013/software/SCOTCH/5.1.12b_esmumps-ictce-5.3.0 + +conflict SCOTCH + +if { ![is-loaded ictce/5.3.0] } { + module load ictce/5.3.0 +} + +prepend-path CPATH $root/include +prepend-path LD_LIBRARY_PATH $root/lib +prepend-path MANPATH $root/man +prepend-path PATH $root/bin + +setenv EBROOTSCOTCH "$root" +setenv EBVERSIONSCOTCH "5.1.12b_esmumps" +setenv EBDEVELSCOTCH "$root/easybuild/SCOTCH-5.1.12b_esmumps-ictce-5.3.0-easybuild-devel" + + +# built with EasyBuild version 1.4.0 diff --git a/rt/tabcompl/mf/math/numpy/1.6.2-goalf-1.1.0-no-OFED-Python-2.7.3 b/rt/tabcompl/mf/math/numpy/1.6.2-goalf-1.1.0-no-OFED-Python-2.7.3 deleted file mode 120000 index f9e1e08b1..000000000 --- a/rt/tabcompl/mf/math/numpy/1.6.2-goalf-1.1.0-no-OFED-Python-2.7.3 +++ /dev/null @@ -1 +0,0 @@ -../../all/numpy/1.6.2-goalf-1.1.0-no-OFED-Python-2.7.3 \ No newline at end of file diff --git a/rt/tabcompl/mf/math/numpy/1.6.2-goalf-1.1.0-no-OFED-Python-2.7.3 b/rt/tabcompl/mf/math/numpy/1.6.2-goalf-1.1.0-no-OFED-Python-2.7.3 new file mode 100644 index 000000000..9ef8ec9dd --- /dev/null +++ b/rt/tabcompl/mf/math/numpy/1.6.2-goalf-1.1.0-no-OFED-Python-2.7.3 @@ -0,0 +1,39 @@ +#%Module + +proc ModulesHelp { } { + puts stderr { NumPy is the fundamental package for scientific computing with Python. It contains among other things: + a powerful N-dimensional array object, sophisticated (broadcasting) functions, tools for integrating C/C++ and Fortran + code, useful linear algebra, Fourier transform, and random number capabilities. Besides its obvious scientific uses, + NumPy can also be used as an efficient multi-dimensional container of generic data. Arbitrary data-types can be + defined. This allows NumPy to seamlessly and speedily integrate with a wide variety of databases. - Homepage: http://www.numpy.org +} +} + +module-whatis {NumPy is the fundamental package for scientific computing with Python. It contains among other things: + a powerful N-dimensional array object, sophisticated (broadcasting) functions, tools for integrating C/C++ and Fortran + code, useful linear algebra, Fourier transform, and random number capabilities. Besides its obvious scientific uses, + NumPy can also be used as an efficient multi-dimensional container of generic data. Arbitrary data-types can be + defined. This allows NumPy to seamlessly and speedily integrate with a wide variety of databases. - Homepage: http://www.numpy.org} + +set root /net/gmi.oeaw.ac.at/software/mendel/29_04_2013/software/numpy/1.6.2-goalf-1.1.0-no-OFED-Python-2.7.3 + +conflict numpy + +if { ![is-loaded goalf/1.1.0-no-OFED] } { + module load goalf/1.1.0-no-OFED +} + +if { ![is-loaded Python/2.7.3-goalf-1.1.0-no-OFED] } { + module load Python/2.7.3-goalf-1.1.0-no-OFED +} + +prepend-path LD_LIBRARY_PATH $root/lib +prepend-path PATH $root/bin + +setenv EBROOTNUMPY "$root" +setenv EBVERSIONNUMPY "1.6.2" +setenv EBDEVELNUMPY "$root/easybuild/numpy-1.6.2-goalf-1.1.0-no-OFED-Python-2.7.3-easybuild-devel" + +prepend-path PYTHONPATH $root/lib/python2.7/site-packages + +# built with EasyBuild version 1.3.0 diff --git a/rt/tabcompl/mf/math/numpy/1.6.2-goolf-1.4.10-Python-2.7.3 b/rt/tabcompl/mf/math/numpy/1.6.2-goolf-1.4.10-Python-2.7.3 deleted file mode 120000 index 0b5289d8c..000000000 --- a/rt/tabcompl/mf/math/numpy/1.6.2-goolf-1.4.10-Python-2.7.3 +++ /dev/null @@ -1 +0,0 @@ -../../all/numpy/1.6.2-goolf-1.4.10-Python-2.7.3 \ No newline at end of file diff --git a/rt/tabcompl/mf/math/numpy/1.6.2-goolf-1.4.10-Python-2.7.3 b/rt/tabcompl/mf/math/numpy/1.6.2-goolf-1.4.10-Python-2.7.3 new file mode 100644 index 000000000..663a215b4 --- /dev/null +++ b/rt/tabcompl/mf/math/numpy/1.6.2-goolf-1.4.10-Python-2.7.3 @@ -0,0 +1,39 @@ +#%Module + +proc ModulesHelp { } { + puts stderr { NumPy is the fundamental package for scientific computing with Python. It contains among other things: +a powerful N-dimensional array object, sophisticated (broadcasting) functions, tools for integrating C/C++ and Fortran +code, useful linear algebra, Fourier transform, and random number capabilities. Besides its obvious scientific uses, +NumPy can also be used as an efficient multi-dimensional container of generic data. Arbitrary data-types can be +defined. This allows NumPy to seamlessly and speedily integrate with a wide variety of databases. - Homepage: http://www.numpy.org +} +} + +module-whatis {NumPy is the fundamental package for scientific computing with Python. It contains among other things: +a powerful N-dimensional array object, sophisticated (broadcasting) functions, tools for integrating C/C++ and Fortran +code, useful linear algebra, Fourier transform, and random number capabilities. Besides its obvious scientific uses, +NumPy can also be used as an efficient multi-dimensional container of generic data. Arbitrary data-types can be +defined. This allows NumPy to seamlessly and speedily integrate with a wide variety of databases. - Homepage: http://www.numpy.org} + +set root /net/gmi.oeaw.ac.at/software/mendel/29_04_2013/software/numpy/1.6.2-goolf-1.4.10-Python-2.7.3 + +conflict numpy + +if { ![is-loaded goolf/1.4.10] } { + module load goolf/1.4.10 +} + +if { ![is-loaded Python/2.7.3-goolf-1.4.10] } { + module load Python/2.7.3-goolf-1.4.10 +} + +prepend-path LD_LIBRARY_PATH $root/lib +prepend-path PATH $root/bin + +setenv EBROOTNUMPY "$root" +setenv EBVERSIONNUMPY "1.6.2" +setenv EBDEVELNUMPY "$root/easybuild/numpy-1.6.2-goolf-1.4.10-Python-2.7.3-easybuild-devel" + +prepend-path PYTHONPATH $root/lib/python2.7/site-packages + +# built with EasyBuild version 1.3.0 diff --git a/rt/tabcompl/mf/math/numpy/1.6.2-ictce-5.2.0-Python-2.7.3 b/rt/tabcompl/mf/math/numpy/1.6.2-ictce-5.2.0-Python-2.7.3 deleted file mode 120000 index f0671273a..000000000 --- a/rt/tabcompl/mf/math/numpy/1.6.2-ictce-5.2.0-Python-2.7.3 +++ /dev/null @@ -1 +0,0 @@ -../../all/numpy/1.6.2-ictce-5.2.0-Python-2.7.3 \ No newline at end of file diff --git a/rt/tabcompl/mf/math/numpy/1.6.2-ictce-5.2.0-Python-2.7.3 b/rt/tabcompl/mf/math/numpy/1.6.2-ictce-5.2.0-Python-2.7.3 new file mode 100644 index 000000000..3869d5127 --- /dev/null +++ b/rt/tabcompl/mf/math/numpy/1.6.2-ictce-5.2.0-Python-2.7.3 @@ -0,0 +1,39 @@ +#%Module + +proc ModulesHelp { } { + puts stderr { NumPy is the fundamental package for scientific computing with Python. It contains among other things: + a powerful N-dimensional array object, sophisticated (broadcasting) functions, tools for integrating C/C++ and Fortran + code, useful linear algebra, Fourier transform, and random number capabilities. Besides its obvious scientific uses, + NumPy can also be used as an efficient multi-dimensional container of generic data. Arbitrary data-types can be + defined. This allows NumPy to seamlessly and speedily integrate with a wide variety of databases. - Homepage: http://www.numpy.org +} +} + +module-whatis {NumPy is the fundamental package for scientific computing with Python. It contains among other things: + a powerful N-dimensional array object, sophisticated (broadcasting) functions, tools for integrating C/C++ and Fortran + code, useful linear algebra, Fourier transform, and random number capabilities. Besides its obvious scientific uses, + NumPy can also be used as an efficient multi-dimensional container of generic data. Arbitrary data-types can be + defined. This allows NumPy to seamlessly and speedily integrate with a wide variety of databases. - Homepage: http://www.numpy.org} + +set root /net/gmi.oeaw.ac.at/software/mendel/29_04_2013/software/numpy/1.6.2-ictce-5.2.0-Python-2.7.3 + +conflict numpy + +if { ![is-loaded ictce/5.2.0] } { + module load ictce/5.2.0 +} + +if { ![is-loaded Python/2.7.3-ictce-5.2.0] } { + module load Python/2.7.3-ictce-5.2.0 +} + +prepend-path LD_LIBRARY_PATH $root/lib +prepend-path PATH $root/bin + +setenv EBROOTNUMPY "$root" +setenv EBVERSIONNUMPY "1.6.2" +setenv EBDEVELNUMPY "$root/easybuild/numpy-1.6.2-ictce-5.2.0-Python-2.7.3-easybuild-devel" + +prepend-path PYTHONPATH $root/lib/python2.7/site-packages + +# built with EasyBuild version 1.3.0 diff --git a/rt/tabcompl/mf/math/numpy/1.6.2-ictce-5.3.0-Python-2.7.3 b/rt/tabcompl/mf/math/numpy/1.6.2-ictce-5.3.0-Python-2.7.3 deleted file mode 120000 index 2026ee3e8..000000000 --- a/rt/tabcompl/mf/math/numpy/1.6.2-ictce-5.3.0-Python-2.7.3 +++ /dev/null @@ -1 +0,0 @@ -../../all/numpy/1.6.2-ictce-5.3.0-Python-2.7.3 \ No newline at end of file diff --git a/rt/tabcompl/mf/math/numpy/1.6.2-ictce-5.3.0-Python-2.7.3 b/rt/tabcompl/mf/math/numpy/1.6.2-ictce-5.3.0-Python-2.7.3 new file mode 100644 index 000000000..6fc8152b7 --- /dev/null +++ b/rt/tabcompl/mf/math/numpy/1.6.2-ictce-5.3.0-Python-2.7.3 @@ -0,0 +1,39 @@ +#%Module + +proc ModulesHelp { } { + puts stderr { NumPy is the fundamental package for scientific computing with Python. It contains among other things: + a powerful N-dimensional array object, sophisticated (broadcasting) functions, tools for integrating C/C++ and Fortran + code, useful linear algebra, Fourier transform, and random number capabilities. Besides its obvious scientific uses, + NumPy can also be used as an efficient multi-dimensional container of generic data. Arbitrary data-types can be + defined. This allows NumPy to seamlessly and speedily integrate with a wide variety of databases. - Homepage: http://www.numpy.org +} +} + +module-whatis {NumPy is the fundamental package for scientific computing with Python. It contains among other things: + a powerful N-dimensional array object, sophisticated (broadcasting) functions, tools for integrating C/C++ and Fortran + code, useful linear algebra, Fourier transform, and random number capabilities. Besides its obvious scientific uses, + NumPy can also be used as an efficient multi-dimensional container of generic data. Arbitrary data-types can be + defined. This allows NumPy to seamlessly and speedily integrate with a wide variety of databases. - Homepage: http://www.numpy.org} + +set root /net/gmi.oeaw.ac.at/software/mendel/29_04_2013/software/numpy/1.6.2-ictce-5.3.0-Python-2.7.3 + +conflict numpy + +if { ![is-loaded ictce/5.3.0] } { + module load ictce/5.3.0 +} + +if { ![is-loaded Python/2.7.3-ictce-5.3.0] } { + module load Python/2.7.3-ictce-5.3.0 +} + +prepend-path LD_LIBRARY_PATH $root/lib +prepend-path PATH $root/bin + +setenv EBROOTNUMPY "$root" +setenv EBVERSIONNUMPY "1.6.2" +setenv EBDEVELNUMPY "$root/easybuild/numpy-1.6.2-ictce-5.3.0-Python-2.7.3-easybuild-devel" + +prepend-path PYTHONPATH $root/lib/python2.7/site-packages + +# built with EasyBuild version 1.6.0dev diff --git a/rt/tabcompl/mf/math/scipy/0.11.0-goalf-1.1.0-no-OFED-Python-2.7.3 b/rt/tabcompl/mf/math/scipy/0.11.0-goalf-1.1.0-no-OFED-Python-2.7.3 deleted file mode 120000 index e515bbd2e..000000000 --- a/rt/tabcompl/mf/math/scipy/0.11.0-goalf-1.1.0-no-OFED-Python-2.7.3 +++ /dev/null @@ -1 +0,0 @@ -../../all/scipy/0.11.0-goalf-1.1.0-no-OFED-Python-2.7.3 \ No newline at end of file diff --git a/rt/tabcompl/mf/math/scipy/0.11.0-goalf-1.1.0-no-OFED-Python-2.7.3 b/rt/tabcompl/mf/math/scipy/0.11.0-goalf-1.1.0-no-OFED-Python-2.7.3 new file mode 100644 index 000000000..74e7f1084 --- /dev/null +++ b/rt/tabcompl/mf/math/scipy/0.11.0-goalf-1.1.0-no-OFED-Python-2.7.3 @@ -0,0 +1,38 @@ +#%Module + +proc ModulesHelp { } { + puts stderr { SciPy is the fundamental package for scientific computing with Python. It contains among other things: + a powerful N-dimensional array object, sophisticated (broadcasting) functions, tools for integrating C/C++ and Fortran + code, useful linear algebra, Fourier transform, and random number capabilities. Besides its obvious scientific uses, + SciPy can also be used as an efficient multi-dimensional container of generic data. Arbitrary data-types can be + defined. This allows SciPy to seamlessly and speedily integrate with a wide variety of databases. - Homepage: http://www.numpy.org +} +} + +module-whatis {SciPy is the fundamental package for scientific computing with Python. It contains among other things: + a powerful N-dimensional array object, sophisticated (broadcasting) functions, tools for integrating C/C++ and Fortran + code, useful linear algebra, Fourier transform, and random number capabilities. Besides its obvious scientific uses, + SciPy can also be used as an efficient multi-dimensional container of generic data. Arbitrary data-types can be + defined. This allows SciPy to seamlessly and speedily integrate with a wide variety of databases. - Homepage: http://www.numpy.org} + +set root /net/gmi.oeaw.ac.at/software/mendel/29_04_2013/software/scipy/0.11.0-goalf-1.1.0-no-OFED-Python-2.7.3 + +conflict scipy + +if { ![is-loaded goalf/1.1.0-no-OFED] } { + module load goalf/1.1.0-no-OFED +} + +if { ![is-loaded numpy/1.6.2-goalf-1.1.0-no-OFED-Python-2.7.3] } { + module load numpy/1.6.2-goalf-1.1.0-no-OFED-Python-2.7.3 +} + +prepend-path LD_LIBRARY_PATH $root/lib + +setenv EBROOTSCIPY "$root" +setenv EBVERSIONSCIPY "0.11.0" +setenv EBDEVELSCIPY "$root/easybuild/scipy-0.11.0-goalf-1.1.0-no-OFED-Python-2.7.3-easybuild-devel" + +prepend-path PYTHONPATH $root/lib/python2.7/site-packages + +# built with EasyBuild version 1.3.0 diff --git a/rt/tabcompl/mf/math/scipy/0.11.0-goolf-1.4.10-Python-2.7.3 b/rt/tabcompl/mf/math/scipy/0.11.0-goolf-1.4.10-Python-2.7.3 deleted file mode 120000 index 075a72d5e..000000000 --- a/rt/tabcompl/mf/math/scipy/0.11.0-goolf-1.4.10-Python-2.7.3 +++ /dev/null @@ -1 +0,0 @@ -../../all/scipy/0.11.0-goolf-1.4.10-Python-2.7.3 \ No newline at end of file diff --git a/rt/tabcompl/mf/math/scipy/0.11.0-goolf-1.4.10-Python-2.7.3 b/rt/tabcompl/mf/math/scipy/0.11.0-goolf-1.4.10-Python-2.7.3 new file mode 100644 index 000000000..9e66d310c --- /dev/null +++ b/rt/tabcompl/mf/math/scipy/0.11.0-goolf-1.4.10-Python-2.7.3 @@ -0,0 +1,38 @@ +#%Module + +proc ModulesHelp { } { + puts stderr { NumPy is the fundamental package for scientific computing with Python. It contains among other things: +a powerful N-dimensional array object, sophisticated (broadcasting) functions, tools for integrating C/C++ and Fortran +code, useful linear algebra, Fourier transform, and random number capabilities. Besides its obvious scientific uses, +NumPy can also be used as an efficient multi-dimensional container of generic data. Arbitrary data-types can be +defined. This allows NumPy to seamlessly and speedily integrate with a wide variety of databases. - Homepage: http://www.numpy.org +} +} + +module-whatis {NumPy is the fundamental package for scientific computing with Python. It contains among other things: +a powerful N-dimensional array object, sophisticated (broadcasting) functions, tools for integrating C/C++ and Fortran +code, useful linear algebra, Fourier transform, and random number capabilities. Besides its obvious scientific uses, +NumPy can also be used as an efficient multi-dimensional container of generic data. Arbitrary data-types can be +defined. This allows NumPy to seamlessly and speedily integrate with a wide variety of databases. - Homepage: http://www.numpy.org} + +set root /net/gmi.oeaw.ac.at/software/mendel/29_04_2013/software/scipy/0.11.0-goolf-1.4.10-Python-2.7.3 + +conflict scipy + +if { ![is-loaded goolf/1.4.10] } { + module load goolf/1.4.10 +} + +if { ![is-loaded numpy/1.6.2-goolf-1.4.10-Python-2.7.3] } { + module load numpy/1.6.2-goolf-1.4.10-Python-2.7.3 +} + +prepend-path LD_LIBRARY_PATH $root/lib + +setenv EBROOTSCIPY "$root" +setenv EBVERSIONSCIPY "0.11.0" +setenv EBDEVELSCIPY "$root/easybuild/scipy-0.11.0-goolf-1.4.10-Python-2.7.3-easybuild-devel" + +prepend-path PYTHONPATH $root/lib/python2.7/site-packages + +# built with EasyBuild version 1.3.0 diff --git a/rt/tabcompl/mf/math/scipy/0.11.0-ictce-5.3.0-Python-2.7.3 b/rt/tabcompl/mf/math/scipy/0.11.0-ictce-5.3.0-Python-2.7.3 deleted file mode 120000 index 29a96bbe2..000000000 --- a/rt/tabcompl/mf/math/scipy/0.11.0-ictce-5.3.0-Python-2.7.3 +++ /dev/null @@ -1 +0,0 @@ -../../all/scipy/0.11.0-ictce-5.3.0-Python-2.7.3 \ No newline at end of file diff --git a/rt/tabcompl/mf/math/scipy/0.11.0-ictce-5.3.0-Python-2.7.3 b/rt/tabcompl/mf/math/scipy/0.11.0-ictce-5.3.0-Python-2.7.3 new file mode 100644 index 000000000..6d29bc3cb --- /dev/null +++ b/rt/tabcompl/mf/math/scipy/0.11.0-ictce-5.3.0-Python-2.7.3 @@ -0,0 +1,38 @@ +#%Module + +proc ModulesHelp { } { + puts stderr { SciPy is the fundamental package for scientific computing with Python. It contains among other things: + a powerful N-dimensional array object, sophisticated (broadcasting) functions, tools for integrating C/C++ and Fortran + code, useful linear algebra, Fourier transform, and random number capabilities. Besides its obvious scientific uses, + SciPy can also be used as an efficient multi-dimensional container of generic data. Arbitrary data-types can be + defined. This allows SciPy to seamlessly and speedily integrate with a wide variety of databases. - Homepage: http://www.numpy.org +} +} + +module-whatis {SciPy is the fundamental package for scientific computing with Python. It contains among other things: + a powerful N-dimensional array object, sophisticated (broadcasting) functions, tools for integrating C/C++ and Fortran + code, useful linear algebra, Fourier transform, and random number capabilities. Besides its obvious scientific uses, + SciPy can also be used as an efficient multi-dimensional container of generic data. Arbitrary data-types can be + defined. This allows SciPy to seamlessly and speedily integrate with a wide variety of databases. - Homepage: http://www.numpy.org} + +set root /net/gmi.oeaw.ac.at/software/mendel/29_04_2013/software/scipy/0.11.0-ictce-5.3.0-Python-2.7.3 + +conflict scipy + +if { ![is-loaded ictce/5.3.0] } { + module load ictce/5.3.0 +} + +if { ![is-loaded numpy/1.6.2-ictce-5.3.0-Python-2.7.3] } { + module load numpy/1.6.2-ictce-5.3.0-Python-2.7.3 +} + +prepend-path LD_LIBRARY_PATH $root/lib + +setenv EBROOTSCIPY "$root" +setenv EBVERSIONSCIPY "0.11.0" +setenv EBDEVELSCIPY "$root/easybuild/scipy-0.11.0-ictce-5.3.0-Python-2.7.3-easybuild-devel" + +prepend-path PYTHONPATH $root/lib/python2.7/site-packages + +# built with EasyBuild version 1.6.0dev diff --git a/rt/tabcompl/mf/mpi/MVAPICH2/1.9-GCC-4.7.2 b/rt/tabcompl/mf/mpi/MVAPICH2/1.9-GCC-4.7.2 deleted file mode 120000 index 8b6ace47f..000000000 --- a/rt/tabcompl/mf/mpi/MVAPICH2/1.9-GCC-4.7.2 +++ /dev/null @@ -1 +0,0 @@ -../../all/MVAPICH2/1.9-GCC-4.7.2 \ No newline at end of file diff --git a/rt/tabcompl/mf/mpi/MVAPICH2/1.9-GCC-4.7.2 b/rt/tabcompl/mf/mpi/MVAPICH2/1.9-GCC-4.7.2 new file mode 100644 index 000000000..77399c1e6 --- /dev/null +++ b/rt/tabcompl/mf/mpi/MVAPICH2/1.9-GCC-4.7.2 @@ -0,0 +1,29 @@ +#%Module + +proc ModulesHelp { } { + puts stderr { This is an MPI 3.0 implementation. It is based on MPICH2 and MVICH. - Homepage: http://mvapich.cse.ohio-state.edu/overview/mvapich2/ +} +} + +module-whatis {This is an MPI 3.0 implementation. It is based on MPICH2 and MVICH. - Homepage: http://mvapich.cse.ohio-state.edu/overview/mvapich2/} + +set root /net/gmi.oeaw.ac.at/software/mendel/29_04_2013/software/MVAPICH2/1.9-GCC-4.7.2 + +conflict MVAPICH2 + +if { ![is-loaded GCC/4.7.2] } { + module load GCC/4.7.2 +} + +prepend-path CPATH $root/include +prepend-path LD_LIBRARY_PATH $root/lib +prepend-path MANPATH $root/share/man +prepend-path PATH $root/bin +prepend-path PKG_CONFIG_PATH $root/lib/pkgconfig + +setenv EBROOTMVAPICH2 "$root" +setenv EBVERSIONMVAPICH2 "1.9" +setenv EBDEVELMVAPICH2 "$root/easybuild/MVAPICH2-1.9-GCC-4.7.2-easybuild-devel" + + +# built with EasyBuild version 1.3.0 diff --git a/rt/tabcompl/mf/mpi/OpenMPI/1.4.5-GCC-4.6.3-no-OFED b/rt/tabcompl/mf/mpi/OpenMPI/1.4.5-GCC-4.6.3-no-OFED deleted file mode 120000 index 1e415ec16..000000000 --- a/rt/tabcompl/mf/mpi/OpenMPI/1.4.5-GCC-4.6.3-no-OFED +++ /dev/null @@ -1 +0,0 @@ -../../all/OpenMPI/1.4.5-GCC-4.6.3-no-OFED \ No newline at end of file diff --git a/rt/tabcompl/mf/mpi/OpenMPI/1.4.5-GCC-4.6.3-no-OFED b/rt/tabcompl/mf/mpi/OpenMPI/1.4.5-GCC-4.6.3-no-OFED new file mode 100644 index 000000000..961d9dead --- /dev/null +++ b/rt/tabcompl/mf/mpi/OpenMPI/1.4.5-GCC-4.6.3-no-OFED @@ -0,0 +1,28 @@ +#%Module + +proc ModulesHelp { } { + puts stderr { The Open MPI Project is an open source MPI-2 implementation. - Homepage: http://www.open-mpi.org/ +} +} + +module-whatis {The Open MPI Project is an open source MPI-2 implementation. - Homepage: http://www.open-mpi.org/} + +set root /net/gmi.oeaw.ac.at/software/mendel/29_04_2013/software/OpenMPI/1.4.5-GCC-4.6.3-no-OFED + +conflict OpenMPI + +if { ![is-loaded GCC/4.6.3] } { + module load GCC/4.6.3 +} + +prepend-path CPATH $root/include +prepend-path LD_LIBRARY_PATH $root/lib +prepend-path MANPATH $root/share/man +prepend-path PATH $root/bin + +setenv EBROOTOPENMPI "$root" +setenv EBVERSIONOPENMPI "1.4.5" +setenv EBDEVELOPENMPI "$root/easybuild/OpenMPI-1.4.5-GCC-4.6.3-no-OFED-easybuild-devel" + + +# built with EasyBuild version 1.3.0 diff --git a/rt/tabcompl/mf/mpi/OpenMPI/1.6.4-GCC-4.7.2 b/rt/tabcompl/mf/mpi/OpenMPI/1.6.4-GCC-4.7.2 deleted file mode 120000 index 645357e49..000000000 --- a/rt/tabcompl/mf/mpi/OpenMPI/1.6.4-GCC-4.7.2 +++ /dev/null @@ -1 +0,0 @@ -../../all/OpenMPI/1.6.4-GCC-4.7.2 \ No newline at end of file diff --git a/rt/tabcompl/mf/mpi/OpenMPI/1.6.4-GCC-4.7.2 b/rt/tabcompl/mf/mpi/OpenMPI/1.6.4-GCC-4.7.2 new file mode 100644 index 000000000..09302547c --- /dev/null +++ b/rt/tabcompl/mf/mpi/OpenMPI/1.6.4-GCC-4.7.2 @@ -0,0 +1,33 @@ +#%Module + +proc ModulesHelp { } { + puts stderr { The Open MPI Project is an open source MPI-2 implementation. - Homepage: http://www.open-mpi.org/ +} +} + +module-whatis {The Open MPI Project is an open source MPI-2 implementation. - Homepage: http://www.open-mpi.org/} + +set root /net/gmi.oeaw.ac.at/software/mendel/29_04_2013/software/OpenMPI/1.6.4-GCC-4.7.2 + +conflict OpenMPI + +if { ![is-loaded GCC/4.7.2] } { + module load GCC/4.7.2 +} + +if { ![is-loaded hwloc/1.6.2-GCC-4.7.2] } { + module load hwloc/1.6.2-GCC-4.7.2 +} + +prepend-path CPATH $root/include +prepend-path LD_LIBRARY_PATH $root/lib +prepend-path MANPATH $root/share/man +prepend-path PATH $root/bin +prepend-path PKG_CONFIG_PATH $root/lib/pkgconfig + +setenv EBROOTOPENMPI "$root" +setenv EBVERSIONOPENMPI "1.6.4" +setenv EBDEVELOPENMPI "$root/easybuild/OpenMPI-1.6.4-GCC-4.7.2-easybuild-devel" + + +# built with EasyBuild version 1.6.0dev diff --git a/rt/tabcompl/mf/mpi/impi/4.1.0.030 b/rt/tabcompl/mf/mpi/impi/4.1.0.030 deleted file mode 120000 index c47d7ea15..000000000 --- a/rt/tabcompl/mf/mpi/impi/4.1.0.030 +++ /dev/null @@ -1 +0,0 @@ -../../all/impi/4.1.0.030 \ No newline at end of file diff --git a/rt/tabcompl/mf/mpi/impi/4.1.0.030 b/rt/tabcompl/mf/mpi/impi/4.1.0.030 new file mode 100644 index 000000000..aebc8512f --- /dev/null +++ b/rt/tabcompl/mf/mpi/impi/4.1.0.030 @@ -0,0 +1,30 @@ +#%Module + +proc ModulesHelp { } { + puts stderr { The Intel(R) MPI Library for Linux* OS is a multi-fabric message + passing library based on ANL MPICH2 and OSU MVAPICH2. The Intel MPI Library for + Linux OS implements the Message Passing Interface, version 2 (MPI-2) specification. - Homepage: http://software.intel.com/en-us/intel-mpi-library/ +} +} + +module-whatis {The Intel(R) MPI Library for Linux* OS is a multi-fabric message + passing library based on ANL MPICH2 and OSU MVAPICH2. The Intel MPI Library for + Linux OS implements the Message Passing Interface, version 2 (MPI-2) specification. - Homepage: http://software.intel.com/en-us/intel-mpi-library/} + +set root /net/gmi.oeaw.ac.at/software/mendel/29_04_2013/software/impi/4.1.0.030 + +conflict impi + +prepend-path LD_LIBRARY_PATH $root/lib +prepend-path LD_LIBRARY_PATH $root/lib64 +prepend-path PATH $root/bin +prepend-path PATH $root/bin64 + +setenv EBROOTIMPI "$root" +setenv EBVERSIONIMPI "4.1.0.030" +setenv EBDEVELIMPI "$root/easybuild/impi-4.1.0.030-easybuild-devel" + +prepend-path INTEL_LICENSE_FILE /net/gmi.oeaw.ac.at/software/mendel/easybuild-home/licenses/intel/license.lic +setenv I_MPI_ROOT $root + +# built with EasyBuild version 1.3.0 diff --git a/rt/tabcompl/mf/numlib/ATLAS/3.8.4-gompi-1.1.0-no-OFED b/rt/tabcompl/mf/numlib/ATLAS/3.8.4-gompi-1.1.0-no-OFED deleted file mode 120000 index 22733c543..000000000 --- a/rt/tabcompl/mf/numlib/ATLAS/3.8.4-gompi-1.1.0-no-OFED +++ /dev/null @@ -1 +0,0 @@ -../../all/ATLAS/3.8.4-gompi-1.1.0-no-OFED \ No newline at end of file diff --git a/rt/tabcompl/mf/numlib/ATLAS/3.8.4-gompi-1.1.0-no-OFED b/rt/tabcompl/mf/numlib/ATLAS/3.8.4-gompi-1.1.0-no-OFED new file mode 100644 index 000000000..02d49eb8f --- /dev/null +++ b/rt/tabcompl/mf/numlib/ATLAS/3.8.4-gompi-1.1.0-no-OFED @@ -0,0 +1,32 @@ +#%Module + +proc ModulesHelp { } { + puts stderr { ATLAS (Automatically Tuned Linear Algebra Software) is the application of + the AEOS (Automated Empirical Optimization of Software) paradigm, with the present emphasis + on the Basic Linear Algebra Subprograms (BLAS), a widely used, performance-critical, linear + algebra kernel library. - Homepage: http://math-atlas.sourceforge.net +} +} + +module-whatis {ATLAS (Automatically Tuned Linear Algebra Software) is the application of + the AEOS (Automated Empirical Optimization of Software) paradigm, with the present emphasis + on the Basic Linear Algebra Subprograms (BLAS), a widely used, performance-critical, linear + algebra kernel library. - Homepage: http://math-atlas.sourceforge.net} + +set root /net/gmi.oeaw.ac.at/software/mendel/29_04_2013/software/ATLAS/3.8.4-gompi-1.1.0-no-OFED + +conflict ATLAS + +if { ![is-loaded gompi/1.1.0-no-OFED] } { + module load gompi/1.1.0-no-OFED +} + +prepend-path CPATH $root/include +prepend-path LD_LIBRARY_PATH $root/lib + +setenv EBROOTATLAS "$root" +setenv EBVERSIONATLAS "3.8.4" +setenv EBDEVELATLAS "$root/easybuild/ATLAS-3.8.4-gompi-1.1.0-no-OFED-easybuild-devel" + + +# built with EasyBuild version 1.3.0 diff --git a/rt/tabcompl/mf/numlib/ATLAS/3.8.4-gompi-1.1.0-no-OFED-LAPACK-3.4.0 b/rt/tabcompl/mf/numlib/ATLAS/3.8.4-gompi-1.1.0-no-OFED-LAPACK-3.4.0 deleted file mode 120000 index a20254995..000000000 --- a/rt/tabcompl/mf/numlib/ATLAS/3.8.4-gompi-1.1.0-no-OFED-LAPACK-3.4.0 +++ /dev/null @@ -1 +0,0 @@ -../../all/ATLAS/3.8.4-gompi-1.1.0-no-OFED-LAPACK-3.4.0 \ No newline at end of file diff --git a/rt/tabcompl/mf/numlib/ATLAS/3.8.4-gompi-1.1.0-no-OFED-LAPACK-3.4.0 b/rt/tabcompl/mf/numlib/ATLAS/3.8.4-gompi-1.1.0-no-OFED-LAPACK-3.4.0 new file mode 100644 index 000000000..38ba1b994 --- /dev/null +++ b/rt/tabcompl/mf/numlib/ATLAS/3.8.4-gompi-1.1.0-no-OFED-LAPACK-3.4.0 @@ -0,0 +1,32 @@ +#%Module + +proc ModulesHelp { } { + puts stderr { ATLAS (Automatically Tuned Linear Algebra Software) is the application of + the AEOS (Automated Empirical Optimization of Software) paradigm, with the present emphasis + on the Basic Linear Algebra Subprograms (BLAS), a widely used, performance-critical, linear + algebra kernel library. - Homepage: http://math-atlas.sourceforge.net +} +} + +module-whatis {ATLAS (Automatically Tuned Linear Algebra Software) is the application of + the AEOS (Automated Empirical Optimization of Software) paradigm, with the present emphasis + on the Basic Linear Algebra Subprograms (BLAS), a widely used, performance-critical, linear + algebra kernel library. - Homepage: http://math-atlas.sourceforge.net} + +set root /net/gmi.oeaw.ac.at/software/mendel/29_04_2013/software/ATLAS/3.8.4-gompi-1.1.0-no-OFED-LAPACK-3.4.0 + +conflict ATLAS + +if { ![is-loaded gompi/1.1.0-no-OFED] } { + module load gompi/1.1.0-no-OFED +} + +prepend-path CPATH $root/include +prepend-path LD_LIBRARY_PATH $root/lib + +setenv EBROOTATLAS "$root" +setenv EBVERSIONATLAS "3.8.4" +setenv EBDEVELATLAS "$root/easybuild/ATLAS-3.8.4-gompi-1.1.0-no-OFED-LAPACK-3.4.0-easybuild-devel" + + +# built with EasyBuild version 1.3.0 diff --git a/rt/tabcompl/mf/numlib/FFTW/3.3.1-gompi-1.1.0-no-OFED b/rt/tabcompl/mf/numlib/FFTW/3.3.1-gompi-1.1.0-no-OFED deleted file mode 120000 index 46034abf1..000000000 --- a/rt/tabcompl/mf/numlib/FFTW/3.3.1-gompi-1.1.0-no-OFED +++ /dev/null @@ -1 +0,0 @@ -../../all/FFTW/3.3.1-gompi-1.1.0-no-OFED \ No newline at end of file diff --git a/rt/tabcompl/mf/numlib/FFTW/3.3.1-gompi-1.1.0-no-OFED b/rt/tabcompl/mf/numlib/FFTW/3.3.1-gompi-1.1.0-no-OFED new file mode 100644 index 000000000..d70ae51e6 --- /dev/null +++ b/rt/tabcompl/mf/numlib/FFTW/3.3.1-gompi-1.1.0-no-OFED @@ -0,0 +1,31 @@ +#%Module + +proc ModulesHelp { } { + puts stderr { FFTW is a C subroutine library for computing the discrete Fourier transform (DFT) + in one or more dimensions, of arbitrary input size, and of both real and complex data. - Homepage: http://www.fftw.org +} +} + +module-whatis {FFTW is a C subroutine library for computing the discrete Fourier transform (DFT) + in one or more dimensions, of arbitrary input size, and of both real and complex data. - Homepage: http://www.fftw.org} + +set root /net/gmi.oeaw.ac.at/software/mendel/29_04_2013/software/FFTW/3.3.1-gompi-1.1.0-no-OFED + +conflict FFTW + +if { ![is-loaded gompi/1.1.0-no-OFED] } { + module load gompi/1.1.0-no-OFED +} + +prepend-path CPATH $root/include +prepend-path LD_LIBRARY_PATH $root/lib +prepend-path MANPATH $root/share/man +prepend-path PATH $root/bin +prepend-path PKG_CONFIG_PATH $root/lib/pkgconfig + +setenv EBROOTFFTW "$root" +setenv EBVERSIONFFTW "3.3.1" +setenv EBDEVELFFTW "$root/easybuild/FFTW-3.3.1-gompi-1.1.0-no-OFED-easybuild-devel" + + +# built with EasyBuild version 1.3.0 diff --git a/rt/tabcompl/mf/numlib/FFTW/3.3.3-gompi-1.4.10 b/rt/tabcompl/mf/numlib/FFTW/3.3.3-gompi-1.4.10 deleted file mode 120000 index 302f6713a..000000000 --- a/rt/tabcompl/mf/numlib/FFTW/3.3.3-gompi-1.4.10 +++ /dev/null @@ -1 +0,0 @@ -../../all/FFTW/3.3.3-gompi-1.4.10 \ No newline at end of file diff --git a/rt/tabcompl/mf/numlib/FFTW/3.3.3-gompi-1.4.10 b/rt/tabcompl/mf/numlib/FFTW/3.3.3-gompi-1.4.10 new file mode 100644 index 000000000..094e54160 --- /dev/null +++ b/rt/tabcompl/mf/numlib/FFTW/3.3.3-gompi-1.4.10 @@ -0,0 +1,31 @@ +#%Module + +proc ModulesHelp { } { + puts stderr { FFTW is a C subroutine library for computing the discrete Fourier transform (DFT) +in one or more dimensions, of arbitrary input size, and of both real and complex data. - Homepage: http://www.fftw.org +} +} + +module-whatis {FFTW is a C subroutine library for computing the discrete Fourier transform (DFT) +in one or more dimensions, of arbitrary input size, and of both real and complex data. - Homepage: http://www.fftw.org} + +set root /net/gmi.oeaw.ac.at/software/mendel/29_04_2013/software/FFTW/3.3.3-gompi-1.4.10 + +conflict FFTW + +if { ![is-loaded gompi/1.4.10] } { + module load gompi/1.4.10 +} + +prepend-path CPATH $root/include +prepend-path LD_LIBRARY_PATH $root/lib +prepend-path MANPATH $root/share/man +prepend-path PATH $root/bin +prepend-path PKG_CONFIG_PATH $root/lib/pkgconfig + +setenv EBROOTFFTW "$root" +setenv EBVERSIONFFTW "3.3.3" +setenv EBDEVELFFTW "$root/easybuild/FFTW-3.3.3-gompi-1.4.10-easybuild-devel" + + +# built with EasyBuild version 1.3.0 diff --git a/rt/tabcompl/mf/numlib/LAPACK/3.4.0-gompi-1.1.0-no-OFED b/rt/tabcompl/mf/numlib/LAPACK/3.4.0-gompi-1.1.0-no-OFED deleted file mode 120000 index 215d80309..000000000 --- a/rt/tabcompl/mf/numlib/LAPACK/3.4.0-gompi-1.1.0-no-OFED +++ /dev/null @@ -1 +0,0 @@ -../../all/LAPACK/3.4.0-gompi-1.1.0-no-OFED \ No newline at end of file diff --git a/rt/tabcompl/mf/numlib/LAPACK/3.4.0-gompi-1.1.0-no-OFED b/rt/tabcompl/mf/numlib/LAPACK/3.4.0-gompi-1.1.0-no-OFED new file mode 100644 index 000000000..5866d1b9f --- /dev/null +++ b/rt/tabcompl/mf/numlib/LAPACK/3.4.0-gompi-1.1.0-no-OFED @@ -0,0 +1,29 @@ +#%Module + +proc ModulesHelp { } { + puts stderr { LAPACK is written in Fortran90 and provides routines for solving systems of + simultaneous linear equations, least-squares solutions of linear systems of equations, eigenvalue + problems, and singular value problems. - Homepage: http://www.netlib.org/lapack/ +} +} + +module-whatis {LAPACK is written in Fortran90 and provides routines for solving systems of + simultaneous linear equations, least-squares solutions of linear systems of equations, eigenvalue + problems, and singular value problems. - Homepage: http://www.netlib.org/lapack/} + +set root /net/gmi.oeaw.ac.at/software/mendel/29_04_2013/software/LAPACK/3.4.0-gompi-1.1.0-no-OFED + +conflict LAPACK + +if { ![is-loaded gompi/1.1.0-no-OFED] } { + module load gompi/1.1.0-no-OFED +} + +prepend-path LD_LIBRARY_PATH $root/lib + +setenv EBROOTLAPACK "$root" +setenv EBVERSIONLAPACK "3.4.0" +setenv EBDEVELLAPACK "$root/easybuild/LAPACK-3.4.0-gompi-1.1.0-no-OFED-easybuild-devel" + + +# built with EasyBuild version 1.3.0 diff --git a/rt/tabcompl/mf/numlib/ScaLAPACK/1.8.0-gompi-1.1.0-no-OFED-ATLAS-3.8.4-LAPACK-3.4.0-BLACS-1.1 b/rt/tabcompl/mf/numlib/ScaLAPACK/1.8.0-gompi-1.1.0-no-OFED-ATLAS-3.8.4-LAPACK-3.4.0-BLACS-1.1 deleted file mode 120000 index 224e0da2d..000000000 --- a/rt/tabcompl/mf/numlib/ScaLAPACK/1.8.0-gompi-1.1.0-no-OFED-ATLAS-3.8.4-LAPACK-3.4.0-BLACS-1.1 +++ /dev/null @@ -1 +0,0 @@ -../../all/ScaLAPACK/1.8.0-gompi-1.1.0-no-OFED-ATLAS-3.8.4-LAPACK-3.4.0-BLACS-1.1 \ No newline at end of file diff --git a/rt/tabcompl/mf/numlib/ScaLAPACK/1.8.0-gompi-1.1.0-no-OFED-ATLAS-3.8.4-LAPACK-3.4.0-BLACS-1.1 b/rt/tabcompl/mf/numlib/ScaLAPACK/1.8.0-gompi-1.1.0-no-OFED-ATLAS-3.8.4-LAPACK-3.4.0-BLACS-1.1 new file mode 100644 index 000000000..645d085eb --- /dev/null +++ b/rt/tabcompl/mf/numlib/ScaLAPACK/1.8.0-gompi-1.1.0-no-OFED-ATLAS-3.8.4-LAPACK-3.4.0-BLACS-1.1 @@ -0,0 +1,40 @@ +#%Module + +proc ModulesHelp { } { + puts stderr { The ScaLAPACK (or Scalable LAPACK) library includes a subset of LAPACK routines + redesigned for distributed memory MIMD parallel computers. - Homepage: http://www.netlib.org/scalapack/ +} +} + +module-whatis {The ScaLAPACK (or Scalable LAPACK) library includes a subset of LAPACK routines + redesigned for distributed memory MIMD parallel computers. - Homepage: http://www.netlib.org/scalapack/} + +set root /net/gmi.oeaw.ac.at/software/mendel/29_04_2013/software/ScaLAPACK/1.8.0-gompi-1.1.0-no-OFED-ATLAS-3.8.4-LAPACK-3.4.0-BLACS-1.1 + +conflict ScaLAPACK + +if { ![is-loaded gompi/1.1.0-no-OFED] } { + module load gompi/1.1.0-no-OFED +} + +if { ![is-loaded ATLAS/3.8.4-gompi-1.1.0-no-OFED-LAPACK-3.4.0] } { + module load ATLAS/3.8.4-gompi-1.1.0-no-OFED-LAPACK-3.4.0 +} + +if { ![is-loaded LAPACK/3.4.0-gompi-1.1.0-no-OFED] } { + module load LAPACK/3.4.0-gompi-1.1.0-no-OFED +} + +if { ![is-loaded BLACS/1.1-gompi-1.1.0-no-OFED] } { + module load BLACS/1.1-gompi-1.1.0-no-OFED +} + +prepend-path CPATH $root/include +prepend-path LD_LIBRARY_PATH $root/lib + +setenv EBROOTSCALAPACK "$root" +setenv EBVERSIONSCALAPACK "1.8.0" +setenv EBDEVELSCALAPACK "$root/easybuild/ScaLAPACK-1.8.0-gompi-1.1.0-no-OFED-ATLAS-3.8.4-LAPACK-3.4.0-BLACS-1.1-easybuild-devel" + + +# built with EasyBuild version 1.3.0 diff --git a/rt/tabcompl/mf/numlib/ScaLAPACK/2.0.2-gompi-1.4.10-OpenBLAS-0.2.6-LAPACK-3.4.2 b/rt/tabcompl/mf/numlib/ScaLAPACK/2.0.2-gompi-1.4.10-OpenBLAS-0.2.6-LAPACK-3.4.2 deleted file mode 120000 index 4b785982c..000000000 --- a/rt/tabcompl/mf/numlib/ScaLAPACK/2.0.2-gompi-1.4.10-OpenBLAS-0.2.6-LAPACK-3.4.2 +++ /dev/null @@ -1 +0,0 @@ -../../all/ScaLAPACK/2.0.2-gompi-1.4.10-OpenBLAS-0.2.6-LAPACK-3.4.2 \ No newline at end of file diff --git a/rt/tabcompl/mf/numlib/ScaLAPACK/2.0.2-gompi-1.4.10-OpenBLAS-0.2.6-LAPACK-3.4.2 b/rt/tabcompl/mf/numlib/ScaLAPACK/2.0.2-gompi-1.4.10-OpenBLAS-0.2.6-LAPACK-3.4.2 new file mode 100644 index 000000000..8d5a8ca58 --- /dev/null +++ b/rt/tabcompl/mf/numlib/ScaLAPACK/2.0.2-gompi-1.4.10-OpenBLAS-0.2.6-LAPACK-3.4.2 @@ -0,0 +1,32 @@ +#%Module + +proc ModulesHelp { } { + puts stderr { The ScaLAPACK (or Scalable LAPACK) library includes a subset of LAPACK routines +redesigned for distributed memory MIMD parallel computers. - Homepage: http://www.netlib.org/scalapack/ +} +} + +module-whatis {The ScaLAPACK (or Scalable LAPACK) library includes a subset of LAPACK routines +redesigned for distributed memory MIMD parallel computers. - Homepage: http://www.netlib.org/scalapack/} + +set root /net/gmi.oeaw.ac.at/software/mendel/29_04_2013/software/ScaLAPACK/2.0.2-gompi-1.4.10-OpenBLAS-0.2.6-LAPACK-3.4.2 + +conflict ScaLAPACK + +if { ![is-loaded gompi/1.4.10] } { + module load gompi/1.4.10 +} + +if { ![is-loaded OpenBLAS/0.2.6-gompi-1.4.10-LAPACK-3.4.2] } { + module load OpenBLAS/0.2.6-gompi-1.4.10-LAPACK-3.4.2 +} + +prepend-path CPATH $root/include +prepend-path LD_LIBRARY_PATH $root/lib + +setenv EBROOTSCALAPACK "$root" +setenv EBVERSIONSCALAPACK "2.0.2" +setenv EBDEVELSCALAPACK "$root/easybuild/ScaLAPACK-2.0.2-gompi-1.4.10-OpenBLAS-0.2.6-LAPACK-3.4.2-easybuild-devel" + + +# built with EasyBuild version 1.3.0 diff --git a/rt/tabcompl/mf/perf/PAPI/5.0.1-goolf-1.4.10 b/rt/tabcompl/mf/perf/PAPI/5.0.1-goolf-1.4.10 deleted file mode 120000 index e3ba86df4..000000000 --- a/rt/tabcompl/mf/perf/PAPI/5.0.1-goolf-1.4.10 +++ /dev/null @@ -1 +0,0 @@ -../../all/PAPI/5.0.1-goolf-1.4.10 \ No newline at end of file diff --git a/rt/tabcompl/mf/perf/PAPI/5.0.1-goolf-1.4.10 b/rt/tabcompl/mf/perf/PAPI/5.0.1-goolf-1.4.10 new file mode 100644 index 000000000..421218da8 --- /dev/null +++ b/rt/tabcompl/mf/perf/PAPI/5.0.1-goolf-1.4.10 @@ -0,0 +1,38 @@ +#%Module + +proc ModulesHelp { } { + puts stderr { PAPI provides the tool designer and application engineer with a consistent interface and +methodology for use of the performance counter hardware found in most major microprocessors. PAPI enables +software engineers to see, in near real time, the relation between software performance and processor events. + +In addition Component PAPI provides access to a collection of components +that expose performance measurement opportunites across the hardware and software stack. - Homepage: http://icl.cs.utk.edu/projects/papi/ +} +} + +module-whatis {PAPI provides the tool designer and application engineer with a consistent interface and +methodology for use of the performance counter hardware found in most major microprocessors. PAPI enables +software engineers to see, in near real time, the relation between software performance and processor events. + +In addition Component PAPI provides access to a collection of components +that expose performance measurement opportunites across the hardware and software stack. - Homepage: http://icl.cs.utk.edu/projects/papi/} + +set root /net/gmi.oeaw.ac.at/software/mendel/29_04_2013/software/PAPI/5.0.1-goolf-1.4.10 + +conflict PAPI + +if { ![is-loaded goolf/1.4.10] } { + module load goolf/1.4.10 +} + +prepend-path CPATH $root/include +prepend-path LD_LIBRARY_PATH $root/lib +prepend-path MANPATH $root/man +prepend-path PATH $root/bin + +setenv EBROOTPAPI "$root" +setenv EBVERSIONPAPI "5.0.1" +setenv EBDEVELPAPI "$root/easybuild/PAPI-5.0.1-goolf-1.4.10-easybuild-devel" + + +# built with EasyBuild version 1.3.0 diff --git a/rt/tabcompl/mf/system/hwloc/1.6.2-GCC-4.7.2 b/rt/tabcompl/mf/system/hwloc/1.6.2-GCC-4.7.2 deleted file mode 120000 index 705923241..000000000 --- a/rt/tabcompl/mf/system/hwloc/1.6.2-GCC-4.7.2 +++ /dev/null @@ -1 +0,0 @@ -../../all/hwloc/1.6.2-GCC-4.7.2 \ No newline at end of file diff --git a/rt/tabcompl/mf/system/hwloc/1.6.2-GCC-4.7.2 b/rt/tabcompl/mf/system/hwloc/1.6.2-GCC-4.7.2 new file mode 100644 index 000000000..045e42af8 --- /dev/null +++ b/rt/tabcompl/mf/system/hwloc/1.6.2-GCC-4.7.2 @@ -0,0 +1,39 @@ +#%Module + +proc ModulesHelp { } { + puts stderr { The Portable Hardware Locality (hwloc) software package provides a portable abstraction + (across OS, versions, architectures, ...) of the hierarchical topology of modern architectures, including + NUMA memory nodes, sockets, shared caches, cores and simultaneous multithreading. It also gathers various + system attributes such as cache and memory information as well as the locality of I/O devices such as + network interfaces, InfiniBand HCAs or GPUs. It primarily aims at helping applications with gathering + information about modern computing hardware so as to exploit it accordingly and efficiently. - Homepage: http://www.open-mpi.org/projects/hwloc/ +} +} + +module-whatis {The Portable Hardware Locality (hwloc) software package provides a portable abstraction + (across OS, versions, architectures, ...) of the hierarchical topology of modern architectures, including + NUMA memory nodes, sockets, shared caches, cores and simultaneous multithreading. It also gathers various + system attributes such as cache and memory information as well as the locality of I/O devices such as + network interfaces, InfiniBand HCAs or GPUs. It primarily aims at helping applications with gathering + information about modern computing hardware so as to exploit it accordingly and efficiently. - Homepage: http://www.open-mpi.org/projects/hwloc/} + +set root /net/gmi.oeaw.ac.at/software/mendel/29_04_2013/software/hwloc/1.6.2-GCC-4.7.2 + +conflict hwloc + +if { ![is-loaded GCC/4.7.2] } { + module load GCC/4.7.2 +} + +prepend-path CPATH $root/include +prepend-path LD_LIBRARY_PATH $root/lib +prepend-path MANPATH $root/share/man +prepend-path PATH $root/bin +prepend-path PKG_CONFIG_PATH $root/lib/pkgconfig + +setenv EBROOTHWLOC "$root" +setenv EBVERSIONHWLOC "1.6.2" +setenv EBDEVELHWLOC "$root/easybuild/hwloc-1.6.2-GCC-4.7.2-easybuild-devel" + + +# built with EasyBuild version 1.3.0 diff --git a/rt/tabcompl/mf/toolchain/goalf/1.1.0-no-OFED b/rt/tabcompl/mf/toolchain/goalf/1.1.0-no-OFED deleted file mode 120000 index de0fa0db0..000000000 --- a/rt/tabcompl/mf/toolchain/goalf/1.1.0-no-OFED +++ /dev/null @@ -1 +0,0 @@ -../../all/goalf/1.1.0-no-OFED \ No newline at end of file diff --git a/rt/tabcompl/mf/toolchain/goalf/1.1.0-no-OFED b/rt/tabcompl/mf/toolchain/goalf/1.1.0-no-OFED new file mode 100644 index 000000000..bd20d11e1 --- /dev/null +++ b/rt/tabcompl/mf/toolchain/goalf/1.1.0-no-OFED @@ -0,0 +1,46 @@ +#%Module + +proc ModulesHelp { } { + puts stderr { GNU Compiler Collection (GCC) based compiler toolchain, including + OpenMPI for MPI support, ATLAS (BLAS and LAPACK support), FFTW and ScaLAPACK. - Homepage: (none) +} +} + +module-whatis {GNU Compiler Collection (GCC) based compiler toolchain, including + OpenMPI for MPI support, ATLAS (BLAS and LAPACK support), FFTW and ScaLAPACK. - Homepage: (none)} + +set root /net/gmi.oeaw.ac.at/software/mendel/29_04_2013/software/goalf/1.1.0-no-OFED + +conflict goalf + +if { ![is-loaded GCC/4.6.3] } { + module load GCC/4.6.3 +} + +if { ![is-loaded OpenMPI/1.4.5-GCC-4.6.3-no-OFED] } { + module load OpenMPI/1.4.5-GCC-4.6.3-no-OFED +} + +if { ![is-loaded ATLAS/3.8.4-gompi-1.1.0-no-OFED-LAPACK-3.4.0] } { + module load ATLAS/3.8.4-gompi-1.1.0-no-OFED-LAPACK-3.4.0 +} + +if { ![is-loaded FFTW/3.3.1-gompi-1.1.0-no-OFED] } { + module load FFTW/3.3.1-gompi-1.1.0-no-OFED +} + +if { ![is-loaded BLACS/1.1-gompi-1.1.0-no-OFED] } { + module load BLACS/1.1-gompi-1.1.0-no-OFED +} + +if { ![is-loaded ScaLAPACK/1.8.0-gompi-1.1.0-no-OFED-ATLAS-3.8.4-LAPACK-3.4.0-BLACS-1.1] } { + module load ScaLAPACK/1.8.0-gompi-1.1.0-no-OFED-ATLAS-3.8.4-LAPACK-3.4.0-BLACS-1.1 +} + + +setenv EBROOTGOALF "$root" +setenv EBVERSIONGOALF "1.1.0" +setenv EBDEVELGOALF "$root/easybuild/goalf-1.1.0-no-OFED-easybuild-devel" + + +# built with EasyBuild version 1.3.0 diff --git a/rt/tabcompl/mf/toolchain/gompi/1.1.0-no-OFED b/rt/tabcompl/mf/toolchain/gompi/1.1.0-no-OFED deleted file mode 120000 index f784acb80..000000000 --- a/rt/tabcompl/mf/toolchain/gompi/1.1.0-no-OFED +++ /dev/null @@ -1 +0,0 @@ -../../all/gompi/1.1.0-no-OFED \ No newline at end of file diff --git a/rt/tabcompl/mf/toolchain/gompi/1.1.0-no-OFED b/rt/tabcompl/mf/toolchain/gompi/1.1.0-no-OFED new file mode 100644 index 000000000..436ae2855 --- /dev/null +++ b/rt/tabcompl/mf/toolchain/gompi/1.1.0-no-OFED @@ -0,0 +1,30 @@ +#%Module + +proc ModulesHelp { } { + puts stderr { GNU Compiler Collection (GCC) based compiler toolchain, + including OpenMPI for MPI support. - Homepage: (none) +} +} + +module-whatis {GNU Compiler Collection (GCC) based compiler toolchain, + including OpenMPI for MPI support. - Homepage: (none)} + +set root /net/gmi.oeaw.ac.at/software/mendel/29_04_2013/software/gompi/1.1.0-no-OFED + +conflict gompi + +if { ![is-loaded GCC/4.6.3] } { + module load GCC/4.6.3 +} + +if { ![is-loaded OpenMPI/1.4.5-GCC-4.6.3-no-OFED] } { + module load OpenMPI/1.4.5-GCC-4.6.3-no-OFED +} + + +setenv EBROOTGOMPI "$root" +setenv EBVERSIONGOMPI "1.1.0" +setenv EBDEVELGOMPI "$root/easybuild/gompi-1.1.0-no-OFED-easybuild-devel" + + +# built with EasyBuild version 1.3.0 diff --git a/rt/tabcompl/mf/toolchain/gompi/1.4.10 b/rt/tabcompl/mf/toolchain/gompi/1.4.10 deleted file mode 120000 index 20f83c4af..000000000 --- a/rt/tabcompl/mf/toolchain/gompi/1.4.10 +++ /dev/null @@ -1 +0,0 @@ -../../all/gompi/1.4.10 \ No newline at end of file diff --git a/rt/tabcompl/mf/toolchain/gompi/1.4.10 b/rt/tabcompl/mf/toolchain/gompi/1.4.10 new file mode 100644 index 000000000..413156954 --- /dev/null +++ b/rt/tabcompl/mf/toolchain/gompi/1.4.10 @@ -0,0 +1,30 @@ +#%Module + +proc ModulesHelp { } { + puts stderr { GNU Compiler Collection (GCC) based compiler toolchain, + including OpenMPI for MPI support. - Homepage: (none) +} +} + +module-whatis {GNU Compiler Collection (GCC) based compiler toolchain, + including OpenMPI for MPI support. - Homepage: (none)} + +set root /net/gmi.oeaw.ac.at/software/mendel/29_04_2013/software/gompi/1.4.10 + +conflict gompi + +if { ![is-loaded GCC/4.7.2] } { + module load GCC/4.7.2 +} + +if { ![is-loaded OpenMPI/1.6.4-GCC-4.7.2] } { + module load OpenMPI/1.6.4-GCC-4.7.2 +} + + +setenv EBROOTGOMPI "$root" +setenv EBVERSIONGOMPI "1.4.10" +setenv EBDEVELGOMPI "$root/easybuild/gompi-1.4.10-easybuild-devel" + + +# built with EasyBuild version 1.3.0 diff --git a/rt/tabcompl/mf/toolchain/goolf/1.4.10 b/rt/tabcompl/mf/toolchain/goolf/1.4.10 deleted file mode 120000 index 29c4c94fb..000000000 --- a/rt/tabcompl/mf/toolchain/goolf/1.4.10 +++ /dev/null @@ -1 +0,0 @@ -../../all/goolf/1.4.10 \ No newline at end of file diff --git a/rt/tabcompl/mf/toolchain/goolf/1.4.10 b/rt/tabcompl/mf/toolchain/goolf/1.4.10 new file mode 100644 index 000000000..9ead11c43 --- /dev/null +++ b/rt/tabcompl/mf/toolchain/goolf/1.4.10 @@ -0,0 +1,42 @@ +#%Module + +proc ModulesHelp { } { + puts stderr { GNU Compiler Collection (GCC) based compiler toolchain, including + OpenMPI for MPI support, OpenBLAS (BLAS and LAPACK support), FFTW and ScaLAPACK. - Homepage: (none) +} +} + +module-whatis {GNU Compiler Collection (GCC) based compiler toolchain, including + OpenMPI for MPI support, OpenBLAS (BLAS and LAPACK support), FFTW and ScaLAPACK. - Homepage: (none)} + +set root /net/gmi.oeaw.ac.at/software/mendel/29_04_2013/software/goolf/1.4.10 + +conflict goolf + +if { ![is-loaded GCC/4.7.2] } { + module load GCC/4.7.2 +} + +if { ![is-loaded OpenMPI/1.6.4-GCC-4.7.2] } { + module load OpenMPI/1.6.4-GCC-4.7.2 +} + +if { ![is-loaded OpenBLAS/0.2.6-gompi-1.4.10-LAPACK-3.4.2] } { + module load OpenBLAS/0.2.6-gompi-1.4.10-LAPACK-3.4.2 +} + +if { ![is-loaded FFTW/3.3.3-gompi-1.4.10] } { + module load FFTW/3.3.3-gompi-1.4.10 +} + +if { ![is-loaded ScaLAPACK/2.0.2-gompi-1.4.10-OpenBLAS-0.2.6-LAPACK-3.4.2] } { + module load ScaLAPACK/2.0.2-gompi-1.4.10-OpenBLAS-0.2.6-LAPACK-3.4.2 +} + + +setenv EBROOTGOOLF "$root" +setenv EBVERSIONGOOLF "1.4.10" +setenv EBDEVELGOOLF "$root/easybuild/goolf-1.4.10-easybuild-devel" + + +# built with EasyBuild version 1.3.0 diff --git a/rt/tabcompl/mf/toolchain/ictce/5.2.0 b/rt/tabcompl/mf/toolchain/ictce/5.2.0 deleted file mode 120000 index 31c1ac28f..000000000 --- a/rt/tabcompl/mf/toolchain/ictce/5.2.0 +++ /dev/null @@ -1 +0,0 @@ -../../all/ictce/5.2.0 \ No newline at end of file diff --git a/rt/tabcompl/mf/toolchain/ictce/5.2.0 b/rt/tabcompl/mf/toolchain/ictce/5.2.0 new file mode 100644 index 000000000..9957529a1 --- /dev/null +++ b/rt/tabcompl/mf/toolchain/ictce/5.2.0 @@ -0,0 +1,36 @@ +#%Module + +proc ModulesHelp { } { + puts stderr { Intel Cluster Toolkit Compiler Edition provides Intel C/C++ and Fortran compilers, Intel MPI & Intel MKL. - Homepage: http://software.intel.com/en-us/intel-cluster-toolkit-compiler/ +} +} + +module-whatis {Intel Cluster Toolkit Compiler Edition provides Intel C/C++ and Fortran compilers, Intel MPI & Intel MKL. - Homepage: http://software.intel.com/en-us/intel-cluster-toolkit-compiler/} + +set root /net/gmi.oeaw.ac.at/software/mendel/29_04_2013/software/ictce/5.2.0 + +conflict ictce + +if { ![is-loaded icc/2013.2.146] } { + module load icc/2013.2.146 +} + +if { ![is-loaded ifort/2013.2.146] } { + module load ifort/2013.2.146 +} + +if { ![is-loaded impi/4.1.0.030] } { + module load impi/4.1.0.030 +} + +if { ![is-loaded imkl/11.0.2.146] } { + module load imkl/11.0.2.146 +} + + +setenv EBROOTICTCE "$root" +setenv EBVERSIONICTCE "5.2.0" +setenv EBDEVELICTCE "$root/easybuild/ictce-5.2.0-easybuild-devel" + + +# built with EasyBuild version 1.3.0 diff --git a/rt/tabcompl/mf/toolchain/ictce/5.3.0 b/rt/tabcompl/mf/toolchain/ictce/5.3.0 deleted file mode 120000 index a61bb6110..000000000 --- a/rt/tabcompl/mf/toolchain/ictce/5.3.0 +++ /dev/null @@ -1 +0,0 @@ -../../all/ictce/5.3.0 \ No newline at end of file diff --git a/rt/tabcompl/mf/toolchain/ictce/5.3.0 b/rt/tabcompl/mf/toolchain/ictce/5.3.0 new file mode 100644 index 000000000..658d38106 --- /dev/null +++ b/rt/tabcompl/mf/toolchain/ictce/5.3.0 @@ -0,0 +1,36 @@ +#%Module + +proc ModulesHelp { } { + puts stderr { Intel Cluster Toolkit Compiler Edition provides Intel C/C++ and Fortran compilers, Intel MPI & Intel MKL. - Homepage: http://software.intel.com/en-us/intel-cluster-toolkit-compiler/ +} +} + +module-whatis {Intel Cluster Toolkit Compiler Edition provides Intel C/C++ and Fortran compilers, Intel MPI & Intel MKL. - Homepage: http://software.intel.com/en-us/intel-cluster-toolkit-compiler/} + +set root /net/gmi.oeaw.ac.at/software/mendel/29_04_2013/software/ictce/5.3.0 + +conflict ictce + +if { ![is-loaded icc/2013.3.163] } { + module load icc/2013.3.163 +} + +if { ![is-loaded ifort/2013.3.163] } { + module load ifort/2013.3.163 +} + +if { ![is-loaded impi/4.1.0.030] } { + module load impi/4.1.0.030 +} + +if { ![is-loaded imkl/11.0.3.163] } { + module load imkl/11.0.3.163 +} + + +setenv EBROOTICTCE "$root" +setenv EBVERSIONICTCE "5.3.0" +setenv EBDEVELICTCE "$root/easybuild/ictce-5.3.0-easybuild-devel" + + +# built with EasyBuild version 1.4.0 diff --git a/rt/tabcompl/mf/tools/HPL/2.0-goolf-1.4.10 b/rt/tabcompl/mf/tools/HPL/2.0-goolf-1.4.10 deleted file mode 120000 index 4601ef120..000000000 --- a/rt/tabcompl/mf/tools/HPL/2.0-goolf-1.4.10 +++ /dev/null @@ -1 +0,0 @@ -../../all/HPL/2.0-goolf-1.4.10 \ No newline at end of file diff --git a/rt/tabcompl/mf/tools/HPL/2.0-goolf-1.4.10 b/rt/tabcompl/mf/tools/HPL/2.0-goolf-1.4.10 new file mode 100644 index 000000000..1ca20adc5 --- /dev/null +++ b/rt/tabcompl/mf/tools/HPL/2.0-goolf-1.4.10 @@ -0,0 +1,29 @@ +#%Module + +proc ModulesHelp { } { + puts stderr { HPL is a software package that solves a (random) dense linear system in double precision (64 bits) arithmetic +on distributed-memory computers. It can thus be regarded as a portable as well as freely available implementation of the +High Performance Computing Linpack Benchmark. - Homepage: http://www.netlib.org/benchmark/hpl/ +} +} + +module-whatis {HPL is a software package that solves a (random) dense linear system in double precision (64 bits) arithmetic +on distributed-memory computers. It can thus be regarded as a portable as well as freely available implementation of the +High Performance Computing Linpack Benchmark. - Homepage: http://www.netlib.org/benchmark/hpl/} + +set root /net/gmi.oeaw.ac.at/software/mendel/29_04_2013/software/HPL/2.0-goolf-1.4.10 + +conflict HPL + +if { ![is-loaded goolf/1.4.10] } { + module load goolf/1.4.10 +} + +prepend-path PATH $root/bin + +setenv EBROOTHPL "$root" +setenv EBVERSIONHPL "2.0" +setenv EBDEVELHPL "$root/easybuild/HPL-2.0-goolf-1.4.10-easybuild-devel" + + +# built with EasyBuild version 1.3.0 diff --git a/rt/tabcompl/mf/tools/HPL/2.0-ictce-5.3.0 b/rt/tabcompl/mf/tools/HPL/2.0-ictce-5.3.0 deleted file mode 120000 index 0fed6bb32..000000000 --- a/rt/tabcompl/mf/tools/HPL/2.0-ictce-5.3.0 +++ /dev/null @@ -1 +0,0 @@ -../../all/HPL/2.0-ictce-5.3.0 \ No newline at end of file diff --git a/rt/tabcompl/mf/tools/HPL/2.0-ictce-5.3.0 b/rt/tabcompl/mf/tools/HPL/2.0-ictce-5.3.0 new file mode 100644 index 000000000..bee507a8f --- /dev/null +++ b/rt/tabcompl/mf/tools/HPL/2.0-ictce-5.3.0 @@ -0,0 +1,29 @@ +#%Module + +proc ModulesHelp { } { + puts stderr { HPL is a software package that solves a (random) dense linear system in double precision (64 bits) arithmetic + on distributed-memory computers. It can thus be regarded as a portable as well as freely available implementation of the + High Performance Computing Linpack Benchmark. - Homepage: http://www.netlib.org/benchmark/hpl/ +} +} + +module-whatis {HPL is a software package that solves a (random) dense linear system in double precision (64 bits) arithmetic + on distributed-memory computers. It can thus be regarded as a portable as well as freely available implementation of the + High Performance Computing Linpack Benchmark. - Homepage: http://www.netlib.org/benchmark/hpl/} + +set root /net/gmi.oeaw.ac.at/software/mendel/29_04_2013/software/HPL/2.0-ictce-5.3.0 + +conflict HPL + +if { ![is-loaded ictce/5.3.0] } { + module load ictce/5.3.0 +} + +prepend-path PATH $root/bin + +setenv EBROOTHPL "$root" +setenv EBVERSIONHPL "2.0" +setenv EBDEVELHPL "$root/easybuild/HPL-2.0-ictce-5.3.0-easybuild-devel" + + +# built with EasyBuild version 1.4.0 diff --git a/rt/tabcompl/mf/tools/Iperf/2.0.5-goolf-1.4.10 b/rt/tabcompl/mf/tools/Iperf/2.0.5-goolf-1.4.10 deleted file mode 120000 index ed423421d..000000000 --- a/rt/tabcompl/mf/tools/Iperf/2.0.5-goolf-1.4.10 +++ /dev/null @@ -1 +0,0 @@ -../../all/Iperf/2.0.5-goolf-1.4.10 \ No newline at end of file diff --git a/rt/tabcompl/mf/tools/Iperf/2.0.5-goolf-1.4.10 b/rt/tabcompl/mf/tools/Iperf/2.0.5-goolf-1.4.10 new file mode 100644 index 000000000..264bcddfe --- /dev/null +++ b/rt/tabcompl/mf/tools/Iperf/2.0.5-goolf-1.4.10 @@ -0,0 +1,26 @@ +#%Module + +proc ModulesHelp { } { + puts stderr { Iperf-2.0.5: TCP and UDP bandwidth performance measurement tool - Homepage: http://iperf.sourceforge.net/ +} +} + +module-whatis {Iperf-2.0.5: TCP and UDP bandwidth performance measurement tool - Homepage: http://iperf.sourceforge.net/} + +set root /net/gmi.oeaw.ac.at/software/mendel/29_04_2013/software/Iperf/2.0.5-goolf-1.4.10 + +conflict Iperf + +if { ![is-loaded goolf/1.4.10] } { + module load goolf/1.4.10 +} + +prepend-path MANPATH $root/share/man +prepend-path PATH $root/bin + +setenv EBROOTIPERF "$root" +setenv EBVERSIONIPERF "2.0.5" +setenv EBDEVELIPERF "$root/easybuild/Iperf-2.0.5-goolf-1.4.10-easybuild-devel" + + +# built with EasyBuild version 1.3.0 diff --git a/rt/tabcompl/mf/tools/SCOOP/0.5.3-goolf-1.4.10-Python-2.7.3 b/rt/tabcompl/mf/tools/SCOOP/0.5.3-goolf-1.4.10-Python-2.7.3 deleted file mode 120000 index 822b4f986..000000000 --- a/rt/tabcompl/mf/tools/SCOOP/0.5.3-goolf-1.4.10-Python-2.7.3 +++ /dev/null @@ -1 +0,0 @@ -../../all/SCOOP/0.5.3-goolf-1.4.10-Python-2.7.3 \ No newline at end of file diff --git a/rt/tabcompl/mf/tools/SCOOP/0.5.3-goolf-1.4.10-Python-2.7.3 b/rt/tabcompl/mf/tools/SCOOP/0.5.3-goolf-1.4.10-Python-2.7.3 new file mode 100644 index 000000000..b95caff61 --- /dev/null +++ b/rt/tabcompl/mf/tools/SCOOP/0.5.3-goolf-1.4.10-Python-2.7.3 @@ -0,0 +1,40 @@ +#%Module + +proc ModulesHelp { } { + puts stderr { SCOOP (Scalable COncurrent Operations in Python) is a distributed task module +allowing concurrent parallel programming on various environments, from heterogeneous grids to supercomputers. - Homepage: http://code.google.com/p/scoop/ + } +} + +module-whatis {SCOOP (Scalable COncurrent Operations in Python) is a distributed task module +allowing concurrent parallel programming on various environments, from heterogeneous grids to supercomputers. - Homepage: http://code.google.com/p/scoop/} + +set root /net/gmi.oeaw.ac.at/software/mendel/29_04_2013/software/SCOOP/0.5.3-goolf-1.4.10-Python-2.7.3 + +conflict SCOOP + +if { ![is-loaded goolf/1.4.10] } { + module load goolf/1.4.10 +} + +if { ![is-loaded Python/2.7.3-goolf-1.4.10] } { + module load Python/2.7.3-goolf-1.4.10 +} + +if { ![is-loaded Greenlet/0.4.1-goolf-1.4.10-Python-2.7.3] } { + module load Greenlet/0.4.1-goolf-1.4.10-Python-2.7.3 +} + +if { ![is-loaded PyZMQ/2.2.0.1-goolf-1.4.10-Python-2.7.3-zmq2] } { + module load PyZMQ/2.2.0.1-goolf-1.4.10-Python-2.7.3-zmq2 +} + +prepend-path LD_LIBRARY_PATH $root/lib + +setenv EBROOTSCOOP "$root" +setenv EBVERSIONSCOOP "0.5.3" +setenv EBDEVELSCOOP "$root/easybuild/SCOOP-0.5.3-goolf-1.4.10-Python-2.7.3-easybuild-devel" + +prepend-path PYTHONPATH $root/lib/python2.7/site-packages + +# built with EasyBuild version 1.8.2 diff --git a/rt/tabcompl/mf/tools/Szip/2.1-goolf-1.4.10 b/rt/tabcompl/mf/tools/Szip/2.1-goolf-1.4.10 deleted file mode 120000 index a0ced7434..000000000 --- a/rt/tabcompl/mf/tools/Szip/2.1-goolf-1.4.10 +++ /dev/null @@ -1 +0,0 @@ -../../all/Szip/2.1-goolf-1.4.10 \ No newline at end of file diff --git a/rt/tabcompl/mf/tools/Szip/2.1-goolf-1.4.10 b/rt/tabcompl/mf/tools/Szip/2.1-goolf-1.4.10 new file mode 100644 index 000000000..d967f721d --- /dev/null +++ b/rt/tabcompl/mf/tools/Szip/2.1-goolf-1.4.10 @@ -0,0 +1,26 @@ +#%Module + +proc ModulesHelp { } { + puts stderr { Szip compression software, providing lossless compression of scientific data - Homepage: http://www.hdfgroup.org/doc_resource/SZIP/ +} +} + +module-whatis {Szip compression software, providing lossless compression of scientific data - Homepage: http://www.hdfgroup.org/doc_resource/SZIP/} + +set root /net/gmi.oeaw.ac.at/software/mendel/29_04_2013/software/Szip/2.1-goolf-1.4.10 + +conflict Szip + +if { ![is-loaded goolf/1.4.10] } { + module load goolf/1.4.10 +} + +prepend-path CPATH $root/include +prepend-path LD_LIBRARY_PATH $root/lib + +setenv EBROOTSZIP "$root" +setenv EBVERSIONSZIP "2.1" +setenv EBDEVELSZIP "$root/easybuild/Szip-2.1-goolf-1.4.10-easybuild-devel" + + +# built with EasyBuild version 1.3.0 diff --git a/rt/tabcompl/mf/tools/Szip/2.1-ictce-5.2.0 b/rt/tabcompl/mf/tools/Szip/2.1-ictce-5.2.0 deleted file mode 120000 index ada098c58..000000000 --- a/rt/tabcompl/mf/tools/Szip/2.1-ictce-5.2.0 +++ /dev/null @@ -1 +0,0 @@ -../../all/Szip/2.1-ictce-5.2.0 \ No newline at end of file diff --git a/rt/tabcompl/mf/tools/Szip/2.1-ictce-5.2.0 b/rt/tabcompl/mf/tools/Szip/2.1-ictce-5.2.0 new file mode 100644 index 000000000..48449555e --- /dev/null +++ b/rt/tabcompl/mf/tools/Szip/2.1-ictce-5.2.0 @@ -0,0 +1,26 @@ +#%Module + +proc ModulesHelp { } { + puts stderr { Szip compression software, providing lossless compression of scientific data - Homepage: http://www.hdfgroup.org/doc_resource/SZIP/ +} +} + +module-whatis {Szip compression software, providing lossless compression of scientific data - Homepage: http://www.hdfgroup.org/doc_resource/SZIP/} + +set root /net/gmi.oeaw.ac.at/software/mendel/29_04_2013/software/Szip/2.1-ictce-5.2.0 + +conflict Szip + +if { ![is-loaded ictce/5.2.0] } { + module load ictce/5.2.0 +} + +prepend-path CPATH $root/include +prepend-path LD_LIBRARY_PATH $root/lib + +setenv EBROOTSZIP "$root" +setenv EBVERSIONSZIP "2.1" +setenv EBDEVELSZIP "$root/easybuild/Szip-2.1-ictce-5.2.0-easybuild-devel" + + +# built with EasyBuild version 1.3.0 diff --git a/rt/tabcompl/mf/tools/Szip/2.1-ictce-5.3.0 b/rt/tabcompl/mf/tools/Szip/2.1-ictce-5.3.0 deleted file mode 120000 index 2bca6bc1f..000000000 --- a/rt/tabcompl/mf/tools/Szip/2.1-ictce-5.3.0 +++ /dev/null @@ -1 +0,0 @@ -../../all/Szip/2.1-ictce-5.3.0 \ No newline at end of file diff --git a/rt/tabcompl/mf/tools/Szip/2.1-ictce-5.3.0 b/rt/tabcompl/mf/tools/Szip/2.1-ictce-5.3.0 new file mode 100644 index 000000000..d88b8465f --- /dev/null +++ b/rt/tabcompl/mf/tools/Szip/2.1-ictce-5.3.0 @@ -0,0 +1,26 @@ +#%Module + +proc ModulesHelp { } { + puts stderr { Szip compression software, providing lossless compression of scientific data - Homepage: http://www.hdfgroup.org/doc_resource/SZIP/ +} +} + +module-whatis {Szip compression software, providing lossless compression of scientific data - Homepage: http://www.hdfgroup.org/doc_resource/SZIP/} + +set root /net/gmi.oeaw.ac.at/software/mendel/29_04_2013/software/Szip/2.1-ictce-5.3.0 + +conflict Szip + +if { ![is-loaded ictce/5.3.0] } { + module load ictce/5.3.0 +} + +prepend-path CPATH $root/include +prepend-path LD_LIBRARY_PATH $root/lib + +setenv EBROOTSZIP "$root" +setenv EBVERSIONSZIP "2.1" +setenv EBDEVELSZIP "$root/easybuild/Szip-2.1-ictce-5.3.0-easybuild-devel" + + +# built with EasyBuild version 1.6.0dev diff --git a/rt/tabcompl/mf/tools/VTune/2013_update6 b/rt/tabcompl/mf/tools/VTune/2013_update6 deleted file mode 120000 index b616c7234..000000000 --- a/rt/tabcompl/mf/tools/VTune/2013_update6 +++ /dev/null @@ -1 +0,0 @@ -../../all/VTune/2013_update6 \ No newline at end of file diff --git a/rt/tabcompl/mf/tools/VTune/2013_update6 b/rt/tabcompl/mf/tools/VTune/2013_update6 new file mode 100644 index 000000000..2955a17c2 --- /dev/null +++ b/rt/tabcompl/mf/tools/VTune/2013_update6 @@ -0,0 +1,27 @@ +#%Module + +proc ModulesHelp { } { + puts stderr { Intel VTune Amplifier XE 2013 is the premier performance profiler for C, C++, C#, Fortran, Assembly and Jav. - Homepage: http://software.intel.com/en-us/intel-vtune-amplifier-xe +} +} + +module-whatis {Intel VTune Amplifier XE 2013 is the premier performance profiler for C, C++, C#, Fortran, Assembly and Jav. - Homepage: http://software.intel.com/en-us/intel-vtune-amplifier-xe} + +set root /net/gmi.oeaw.ac.at/software/mendel/29_04_2013/software/VTune/2013_update6 + +conflict VTune + +prepend-path CPATH $root/include +prepend-path FPATH $root/include +prepend-path LD_LIBRARY_PATH $root/lib64 +prepend-path LIBRARY_PATH $root/lib64 +prepend-path MANPATH $root/man +prepend-path PATH $root/bin64 + +setenv EBROOTVTUNE "$root" +setenv EBVERSIONVTUNE "2013_update6" +setenv EBDEVELVTUNE "$root/easybuild/VTune-2013_update6-easybuild-devel" + +prepend-path INTEL_LICENSE_FILE /net/gmi.oeaw.ac.at/software/mendel/easybuild-home/licenses/intel/license.lic + +# built with EasyBuild version 1.4.0 diff --git a/rt/tabcompl/mf/tools/XML/3.98-1.1-goolf-1.4.10-R-2.15.2 b/rt/tabcompl/mf/tools/XML/3.98-1.1-goolf-1.4.10-R-2.15.2 deleted file mode 120000 index cfc90260d..000000000 --- a/rt/tabcompl/mf/tools/XML/3.98-1.1-goolf-1.4.10-R-2.15.2 +++ /dev/null @@ -1 +0,0 @@ -../../all/XML/3.98-1.1-goolf-1.4.10-R-2.15.2 \ No newline at end of file diff --git a/rt/tabcompl/mf/tools/XML/3.98-1.1-goolf-1.4.10-R-2.15.2 b/rt/tabcompl/mf/tools/XML/3.98-1.1-goolf-1.4.10-R-2.15.2 new file mode 100644 index 000000000..3252d370d --- /dev/null +++ b/rt/tabcompl/mf/tools/XML/3.98-1.1-goolf-1.4.10-R-2.15.2 @@ -0,0 +1,39 @@ +#%Module + +proc ModulesHelp { } { + puts stderr { This package provides many approaches for both reading and creating XML (and HTML) documents +(including DTDs), both local and accessible via HTTP or FTP. It also offers access to an XPath interpreter. - Homepage: http://cran.r-project.org/web/packages/XML + } +} + +module-whatis {This package provides many approaches for both reading and creating XML (and HTML) documents +(including DTDs), both local and accessible via HTTP or FTP. It also offers access to an XPath interpreter. - Homepage: http://cran.r-project.org/web/packages/XML} + +set root /net/gmi.oeaw.ac.at/software/mendel/29_04_2013/software/XML/3.98-1.1-goolf-1.4.10-R-2.15.2 + +conflict XML + +if { ![is-loaded goolf/1.4.10] } { + module load goolf/1.4.10 +} + +if { ![is-loaded R/2.15.2-goolf-1.4.10] } { + module load R/2.15.2-goolf-1.4.10 +} + +if { ![is-loaded libxml2/2.9.0-goolf-1.4.10] } { + module load libxml2/2.9.0-goolf-1.4.10 +} + +if { ![is-loaded zlib/1.2.7-goolf-1.4.10] } { + module load zlib/1.2.7-goolf-1.4.10 +} + + +setenv EBROOTXML "$root" +setenv EBVERSIONXML "3.98-1.1" +setenv EBDEVELXML "$root/easybuild/XML-3.98-1.1-goolf-1.4.10-R-2.15.2-easybuild-devel" + +prepend-path R_LIBS $root/ + +# built with EasyBuild version 1.8.2 diff --git a/rt/tabcompl/mf/tools/aria2/1.15.1-goolf-1.4.10 b/rt/tabcompl/mf/tools/aria2/1.15.1-goolf-1.4.10 deleted file mode 120000 index efcaa3094..000000000 --- a/rt/tabcompl/mf/tools/aria2/1.15.1-goolf-1.4.10 +++ /dev/null @@ -1 +0,0 @@ -../../all/aria2/1.15.1-goolf-1.4.10 \ No newline at end of file diff --git a/rt/tabcompl/mf/tools/aria2/1.15.1-goolf-1.4.10 b/rt/tabcompl/mf/tools/aria2/1.15.1-goolf-1.4.10 new file mode 100644 index 000000000..f22b39e57 --- /dev/null +++ b/rt/tabcompl/mf/tools/aria2/1.15.1-goolf-1.4.10 @@ -0,0 +1,26 @@ +#%Module + +proc ModulesHelp { } { + puts stderr { aria2-1.15.1: Multi-threaded, multi-protocol, flexible download accelerator - Homepage: http://aria2.sourceforge.net/ +} +} + +module-whatis {aria2-1.15.1: Multi-threaded, multi-protocol, flexible download accelerator - Homepage: http://aria2.sourceforge.net/} + +set root /net/gmi.oeaw.ac.at/software/mendel/29_04_2013/software/aria2/1.15.1-goolf-1.4.10 + +conflict aria2 + +if { ![is-loaded goolf/1.4.10] } { + module load goolf/1.4.10 +} + +prepend-path MANPATH $root/share/man +prepend-path PATH $root/bin + +setenv EBROOTARIA2 "$root" +setenv EBVERSIONARIA2 "1.15.1" +setenv EBDEVELARIA2 "$root/easybuild/aria2-1.15.1-goolf-1.4.10-easybuild-devel" + + +# built with EasyBuild version 1.3.0 diff --git a/rt/tabcompl/mf/tools/bbFTP/3.2.0-goolf-1.4.10 b/rt/tabcompl/mf/tools/bbFTP/3.2.0-goolf-1.4.10 deleted file mode 120000 index d5154c703..000000000 --- a/rt/tabcompl/mf/tools/bbFTP/3.2.0-goolf-1.4.10 +++ /dev/null @@ -1 +0,0 @@ -../../all/bbFTP/3.2.0-goolf-1.4.10 \ No newline at end of file diff --git a/rt/tabcompl/mf/tools/bbFTP/3.2.0-goolf-1.4.10 b/rt/tabcompl/mf/tools/bbFTP/3.2.0-goolf-1.4.10 new file mode 100644 index 000000000..7dfc1428d --- /dev/null +++ b/rt/tabcompl/mf/tools/bbFTP/3.2.0-goolf-1.4.10 @@ -0,0 +1,37 @@ +#%Module + +proc ModulesHelp { } { + puts stderr { bbFTP is a file transfer software. It implements its own transfer protocol, + which is optimized for large files (larger than 2GB) and secure as it does not read the + password in a file and encrypts the connection information. bbFTP main features are: + * Encoded username and password at connection * SSH and Certificate authentication modules + * Multi-stream transfer * Big windows as defined in RFC1323 * On-the-fly data compression + * Automatic retry * Customizable time-outs * Transfer simulation + * AFS authentication integration * RFIO interface - Homepage: http://doc.in2p3.fr/bbftp/ +} +} + +module-whatis {bbFTP is a file transfer software. It implements its own transfer protocol, + which is optimized for large files (larger than 2GB) and secure as it does not read the + password in a file and encrypts the connection information. bbFTP main features are: + * Encoded username and password at connection * SSH and Certificate authentication modules + * Multi-stream transfer * Big windows as defined in RFC1323 * On-the-fly data compression + * Automatic retry * Customizable time-outs * Transfer simulation + * AFS authentication integration * RFIO interface - Homepage: http://doc.in2p3.fr/bbftp/} + +set root /net/gmi.oeaw.ac.at/software/mendel/29_04_2013/software/bbFTP/3.2.0-goolf-1.4.10 + +conflict bbFTP + +if { ![is-loaded goolf/1.4.10] } { + module load goolf/1.4.10 +} + +prepend-path PATH $root/bin + +setenv EBROOTBBFTP "$root" +setenv EBVERSIONBBFTP "3.2.0" +setenv EBDEVELBBFTP "$root/easybuild/bbFTP-3.2.0-goolf-1.4.10-easybuild-devel" + + +# built with EasyBuild version 1.3.0 diff --git a/rt/tabcompl/mf/tools/bbcp/12.01.30.00.0-goalf-1.1.0-no-OFEDamd64_linux26 b/rt/tabcompl/mf/tools/bbcp/12.01.30.00.0-goalf-1.1.0-no-OFEDamd64_linux26 deleted file mode 120000 index d9a42e78b..000000000 --- a/rt/tabcompl/mf/tools/bbcp/12.01.30.00.0-goalf-1.1.0-no-OFEDamd64_linux26 +++ /dev/null @@ -1 +0,0 @@ -../../all/bbcp/12.01.30.00.0-goalf-1.1.0-no-OFEDamd64_linux26 \ No newline at end of file diff --git a/rt/tabcompl/mf/tools/bbcp/12.01.30.00.0-goalf-1.1.0-no-OFEDamd64_linux26 b/rt/tabcompl/mf/tools/bbcp/12.01.30.00.0-goalf-1.1.0-no-OFEDamd64_linux26 new file mode 100644 index 000000000..42b3558e5 --- /dev/null +++ b/rt/tabcompl/mf/tools/bbcp/12.01.30.00.0-goalf-1.1.0-no-OFEDamd64_linux26 @@ -0,0 +1,33 @@ +#%Module + +proc ModulesHelp { } { + puts stderr { BBCP is an alternative to Gridftp when transferring large amounts of data, + capable of breaking up your transfer into multiple simultaneous transferring streams, + thereby transferring data much faster than single-streaming utilities such as SCP and SFTP. + See details at http://pcbunn.cithep.caltech.edu/bbcp/using_bbcp.htm + or http://www.nics.tennessee.edu/computing-resources/data-transfer/bbcp - Homepage: http://www.slac.stanford.edu/~abh/bbcp/ +} +} + +module-whatis {BBCP is an alternative to Gridftp when transferring large amounts of data, + capable of breaking up your transfer into multiple simultaneous transferring streams, + thereby transferring data much faster than single-streaming utilities such as SCP and SFTP. + See details at http://pcbunn.cithep.caltech.edu/bbcp/using_bbcp.htm + or http://www.nics.tennessee.edu/computing-resources/data-transfer/bbcp - Homepage: http://www.slac.stanford.edu/~abh/bbcp/} + +set root /net/gmi.oeaw.ac.at/software/mendel/29_04_2013/software/bbcp/12.01.30.00.0-goalf-1.1.0-no-OFEDamd64_linux26 + +conflict bbcp + +if { ![is-loaded goalf/1.1.0-no-OFED] } { + module load goalf/1.1.0-no-OFED +} + + +setenv EBROOTBBCP "$root" +setenv EBVERSIONBBCP "12.01.30.00.0" +setenv EBDEVELBBCP "$root/easybuild/bbcp-12.01.30.00.0-goalf-1.1.0-no-OFEDamd64_linux26-easybuild-devel" + +prepend-path PATH $root/ + +# built with EasyBuild version 1.3.0 diff --git a/rt/tabcompl/mf/tools/bbftpPRO/9.3.1-goolf-1.4.10 b/rt/tabcompl/mf/tools/bbftpPRO/9.3.1-goolf-1.4.10 deleted file mode 120000 index a9c29e201..000000000 --- a/rt/tabcompl/mf/tools/bbftpPRO/9.3.1-goolf-1.4.10 +++ /dev/null @@ -1 +0,0 @@ -../../all/bbftpPRO/9.3.1-goolf-1.4.10 \ No newline at end of file diff --git a/rt/tabcompl/mf/tools/bbftpPRO/9.3.1-goolf-1.4.10 b/rt/tabcompl/mf/tools/bbftpPRO/9.3.1-goolf-1.4.10 new file mode 100644 index 000000000..a3cd53e5d --- /dev/null +++ b/rt/tabcompl/mf/tools/bbftpPRO/9.3.1-goolf-1.4.10 @@ -0,0 +1,32 @@ +#%Module + +proc ModulesHelp { } { + puts stderr { bbftpPRO is a data transfer program - as opposed to ordinary file transfer programs, + capable of transferring arbitrary data over LAN/WANs at parallel speed. bbftpPRO has been started + at the Particle Physics Dept. of Weizmann Institute of Science as an enhancement of bbftp, + developed at IN2P3, ref: http://doc.in2p3.fr/bbftp/ - Homepage: http://bbftppro.myftp.org/ +} +} + +module-whatis {bbftpPRO is a data transfer program - as opposed to ordinary file transfer programs, + capable of transferring arbitrary data over LAN/WANs at parallel speed. bbftpPRO has been started + at the Particle Physics Dept. of Weizmann Institute of Science as an enhancement of bbftp, + developed at IN2P3, ref: http://doc.in2p3.fr/bbftp/ - Homepage: http://bbftppro.myftp.org/} + +set root /net/gmi.oeaw.ac.at/software/mendel/29_04_2013/software/bbftpPRO/9.3.1-goolf-1.4.10 + +conflict bbftpPRO + +if { ![is-loaded goolf/1.4.10] } { + module load goolf/1.4.10 +} + +prepend-path MANPATH $root/share/man +prepend-path PATH $root/bin + +setenv EBROOTBBFTPPRO "$root" +setenv EBVERSIONBBFTPPRO "9.3.1" +setenv EBDEVELBBFTPPRO "$root/easybuild/bbftpPRO-9.3.1-goolf-1.4.10-easybuild-devel" + + +# built with EasyBuild version 1.3.0 diff --git a/rt/tabcompl/mf/tools/bzip2/1.0.6-goalf-1.1.0-no-OFED b/rt/tabcompl/mf/tools/bzip2/1.0.6-goalf-1.1.0-no-OFED deleted file mode 120000 index a55de49e0..000000000 --- a/rt/tabcompl/mf/tools/bzip2/1.0.6-goalf-1.1.0-no-OFED +++ /dev/null @@ -1 +0,0 @@ -../../all/bzip2/1.0.6-goalf-1.1.0-no-OFED \ No newline at end of file diff --git a/rt/tabcompl/mf/tools/bzip2/1.0.6-goalf-1.1.0-no-OFED b/rt/tabcompl/mf/tools/bzip2/1.0.6-goalf-1.1.0-no-OFED new file mode 100644 index 000000000..1373920f8 --- /dev/null +++ b/rt/tabcompl/mf/tools/bzip2/1.0.6-goalf-1.1.0-no-OFED @@ -0,0 +1,32 @@ +#%Module + +proc ModulesHelp { } { + puts stderr { bzip2 is a freely available, patent free, high-quality data compressor. It typically + compresses files to within 10% to 15% of the best available techniques (the PPM family of statistical + compressors), whilst being around twice as fast at compression and six times faster at decompression. - Homepage: http://www.bzip.org/ +} +} + +module-whatis {bzip2 is a freely available, patent free, high-quality data compressor. It typically + compresses files to within 10% to 15% of the best available techniques (the PPM family of statistical + compressors), whilst being around twice as fast at compression and six times faster at decompression. - Homepage: http://www.bzip.org/} + +set root /net/gmi.oeaw.ac.at/software/mendel/29_04_2013/software/bzip2/1.0.6-goalf-1.1.0-no-OFED + +conflict bzip2 + +if { ![is-loaded goalf/1.1.0-no-OFED] } { + module load goalf/1.1.0-no-OFED +} + +prepend-path CPATH $root/include +prepend-path LD_LIBRARY_PATH $root/lib +prepend-path MANPATH $root/man +prepend-path PATH $root/bin + +setenv EBROOTBZIP2 "$root" +setenv EBVERSIONBZIP2 "1.0.6" +setenv EBDEVELBZIP2 "$root/easybuild/bzip2-1.0.6-goalf-1.1.0-no-OFED-easybuild-devel" + + +# built with EasyBuild version 1.3.0 diff --git a/rt/tabcompl/mf/tools/bzip2/1.0.6-goolf-1.4.10 b/rt/tabcompl/mf/tools/bzip2/1.0.6-goolf-1.4.10 deleted file mode 120000 index ef7f99f5b..000000000 --- a/rt/tabcompl/mf/tools/bzip2/1.0.6-goolf-1.4.10 +++ /dev/null @@ -1 +0,0 @@ -../../all/bzip2/1.0.6-goolf-1.4.10 \ No newline at end of file diff --git a/rt/tabcompl/mf/tools/bzip2/1.0.6-goolf-1.4.10 b/rt/tabcompl/mf/tools/bzip2/1.0.6-goolf-1.4.10 new file mode 100644 index 000000000..b56756f07 --- /dev/null +++ b/rt/tabcompl/mf/tools/bzip2/1.0.6-goolf-1.4.10 @@ -0,0 +1,32 @@ +#%Module + +proc ModulesHelp { } { + puts stderr { bzip2 is a freely available, patent free, high-quality data compressor. It typically +compresses files to within 10% to 15% of the best available techniques (the PPM family of statistical +compressors), whilst being around twice as fast at compression and six times faster at decompression. - Homepage: http://www.bzip.org/ +} +} + +module-whatis {bzip2 is a freely available, patent free, high-quality data compressor. It typically +compresses files to within 10% to 15% of the best available techniques (the PPM family of statistical +compressors), whilst being around twice as fast at compression and six times faster at decompression. - Homepage: http://www.bzip.org/} + +set root /net/gmi.oeaw.ac.at/software/mendel/29_04_2013/software/bzip2/1.0.6-goolf-1.4.10 + +conflict bzip2 + +if { ![is-loaded goolf/1.4.10] } { + module load goolf/1.4.10 +} + +prepend-path CPATH $root/include +prepend-path LD_LIBRARY_PATH $root/lib +prepend-path MANPATH $root/man +prepend-path PATH $root/bin + +setenv EBROOTBZIP2 "$root" +setenv EBVERSIONBZIP2 "1.0.6" +setenv EBDEVELBZIP2 "$root/easybuild/bzip2-1.0.6-goolf-1.4.10-easybuild-devel" + + +# built with EasyBuild version 1.3.0 diff --git a/rt/tabcompl/mf/tools/bzip2/1.0.6-ictce-5.2.0 b/rt/tabcompl/mf/tools/bzip2/1.0.6-ictce-5.2.0 deleted file mode 120000 index 29aebac5d..000000000 --- a/rt/tabcompl/mf/tools/bzip2/1.0.6-ictce-5.2.0 +++ /dev/null @@ -1 +0,0 @@ -../../all/bzip2/1.0.6-ictce-5.2.0 \ No newline at end of file diff --git a/rt/tabcompl/mf/tools/bzip2/1.0.6-ictce-5.2.0 b/rt/tabcompl/mf/tools/bzip2/1.0.6-ictce-5.2.0 new file mode 100644 index 000000000..9b2bb7f5a --- /dev/null +++ b/rt/tabcompl/mf/tools/bzip2/1.0.6-ictce-5.2.0 @@ -0,0 +1,32 @@ +#%Module + +proc ModulesHelp { } { + puts stderr { bzip2 is a freely available, patent free, high-quality data compressor. It typically + compresses files to within 10% to 15% of the best available techniques (the PPM family of statistical + compressors), whilst being around twice as fast at compression and six times faster at decompression. - Homepage: http://www.bzip.org/ +} +} + +module-whatis {bzip2 is a freely available, patent free, high-quality data compressor. It typically + compresses files to within 10% to 15% of the best available techniques (the PPM family of statistical + compressors), whilst being around twice as fast at compression and six times faster at decompression. - Homepage: http://www.bzip.org/} + +set root /net/gmi.oeaw.ac.at/software/mendel/29_04_2013/software/bzip2/1.0.6-ictce-5.2.0 + +conflict bzip2 + +if { ![is-loaded ictce/5.2.0] } { + module load ictce/5.2.0 +} + +prepend-path CPATH $root/include +prepend-path LD_LIBRARY_PATH $root/lib +prepend-path MANPATH $root/man +prepend-path PATH $root/bin + +setenv EBROOTBZIP2 "$root" +setenv EBVERSIONBZIP2 "1.0.6" +setenv EBDEVELBZIP2 "$root/easybuild/bzip2-1.0.6-ictce-5.2.0-easybuild-devel" + + +# built with EasyBuild version 1.3.0 diff --git a/rt/tabcompl/mf/tools/bzip2/1.0.6-ictce-5.3.0 b/rt/tabcompl/mf/tools/bzip2/1.0.6-ictce-5.3.0 deleted file mode 120000 index b992f9bfe..000000000 --- a/rt/tabcompl/mf/tools/bzip2/1.0.6-ictce-5.3.0 +++ /dev/null @@ -1 +0,0 @@ -../../all/bzip2/1.0.6-ictce-5.3.0 \ No newline at end of file diff --git a/rt/tabcompl/mf/tools/bzip2/1.0.6-ictce-5.3.0 b/rt/tabcompl/mf/tools/bzip2/1.0.6-ictce-5.3.0 new file mode 100644 index 000000000..07d77ed0a --- /dev/null +++ b/rt/tabcompl/mf/tools/bzip2/1.0.6-ictce-5.3.0 @@ -0,0 +1,32 @@ +#%Module + +proc ModulesHelp { } { + puts stderr { bzip2 is a freely available, patent free, high-quality data compressor. It typically + compresses files to within 10% to 15% of the best available techniques (the PPM family of statistical + compressors), whilst being around twice as fast at compression and six times faster at decompression. - Homepage: http://www.bzip.org/ +} +} + +module-whatis {bzip2 is a freely available, patent free, high-quality data compressor. It typically + compresses files to within 10% to 15% of the best available techniques (the PPM family of statistical + compressors), whilst being around twice as fast at compression and six times faster at decompression. - Homepage: http://www.bzip.org/} + +set root /net/gmi.oeaw.ac.at/software/mendel/29_04_2013/software/bzip2/1.0.6-ictce-5.3.0 + +conflict bzip2 + +if { ![is-loaded ictce/5.3.0] } { + module load ictce/5.3.0 +} + +prepend-path CPATH $root/include +prepend-path LD_LIBRARY_PATH $root/lib +prepend-path MANPATH $root/man +prepend-path PATH $root/bin + +setenv EBROOTBZIP2 "$root" +setenv EBVERSIONBZIP2 "1.0.6" +setenv EBDEVELBZIP2 "$root/easybuild/bzip2-1.0.6-ictce-5.3.0-easybuild-devel" + + +# built with EasyBuild version 1.4.0 diff --git a/rt/tabcompl/mf/tools/cURL/7.27.0-goolf-1.4.10 b/rt/tabcompl/mf/tools/cURL/7.27.0-goolf-1.4.10 deleted file mode 120000 index dba1a62b6..000000000 --- a/rt/tabcompl/mf/tools/cURL/7.27.0-goolf-1.4.10 +++ /dev/null @@ -1 +0,0 @@ -../../all/cURL/7.27.0-goolf-1.4.10 \ No newline at end of file diff --git a/rt/tabcompl/mf/tools/cURL/7.27.0-goolf-1.4.10 b/rt/tabcompl/mf/tools/cURL/7.27.0-goolf-1.4.10 new file mode 100644 index 000000000..73b2ab027 --- /dev/null +++ b/rt/tabcompl/mf/tools/cURL/7.27.0-goolf-1.4.10 @@ -0,0 +1,39 @@ +#%Module + +proc ModulesHelp { } { + puts stderr { libcurl is a free and easy-to-use client-side URL transfer library, +supporting DICT, FILE, FTP, FTPS, Gopher, HTTP, HTTPS, IMAP, IMAPS, LDAP, LDAPS, +POP3, POP3S, RTMP, RTSP, SCP, SFTP, SMTP, SMTPS, Telnet and TFTP. libcurl supports +SSL certificates, HTTP POST, HTTP PUT, FTP uploading, HTTP form based upload, +proxies, cookies, user+password authentication (Basic, Digest, NTLM, Negotiate, +Kerberos), file transfer resume, http proxy tunneling and more. - Homepage: http://curl.haxx.se +} +} + +module-whatis {libcurl is a free and easy-to-use client-side URL transfer library, +supporting DICT, FILE, FTP, FTPS, Gopher, HTTP, HTTPS, IMAP, IMAPS, LDAP, LDAPS, +POP3, POP3S, RTMP, RTSP, SCP, SFTP, SMTP, SMTPS, Telnet and TFTP. libcurl supports +SSL certificates, HTTP POST, HTTP PUT, FTP uploading, HTTP form based upload, +proxies, cookies, user+password authentication (Basic, Digest, NTLM, Negotiate, +Kerberos), file transfer resume, http proxy tunneling and more. - Homepage: http://curl.haxx.se} + +set root /net/gmi.oeaw.ac.at/software/mendel/29_04_2013/software/cURL/7.27.0-goolf-1.4.10 + +conflict cURL + +if { ![is-loaded goolf/1.4.10] } { + module load goolf/1.4.10 +} + +prepend-path CPATH $root/include +prepend-path LD_LIBRARY_PATH $root/lib +prepend-path MANPATH $root/share/man +prepend-path PATH $root/bin +prepend-path PKG_CONFIG_PATH $root/lib/pkgconfig + +setenv EBROOTCURL "$root" +setenv EBVERSIONCURL "7.27.0" +setenv EBDEVELCURL "$root/easybuild/cURL-7.27.0-goolf-1.4.10-easybuild-devel" + + +# built with EasyBuild version 1.3.0 diff --git a/rt/tabcompl/mf/tools/cURL/7.29.0-goolf-1.4.10 b/rt/tabcompl/mf/tools/cURL/7.29.0-goolf-1.4.10 deleted file mode 120000 index 98b4d5b89..000000000 --- a/rt/tabcompl/mf/tools/cURL/7.29.0-goolf-1.4.10 +++ /dev/null @@ -1 +0,0 @@ -../../all/cURL/7.29.0-goolf-1.4.10 \ No newline at end of file diff --git a/rt/tabcompl/mf/tools/cURL/7.29.0-goolf-1.4.10 b/rt/tabcompl/mf/tools/cURL/7.29.0-goolf-1.4.10 new file mode 100644 index 000000000..0df61827b --- /dev/null +++ b/rt/tabcompl/mf/tools/cURL/7.29.0-goolf-1.4.10 @@ -0,0 +1,39 @@ +#%Module + +proc ModulesHelp { } { + puts stderr { libcurl is a free and easy-to-use client-side URL transfer library, +supporting DICT, FILE, FTP, FTPS, Gopher, HTTP, HTTPS, IMAP, IMAPS, LDAP, LDAPS, +POP3, POP3S, RTMP, RTSP, SCP, SFTP, SMTP, SMTPS, Telnet and TFTP. libcurl supports +SSL certificates, HTTP POST, HTTP PUT, FTP uploading, HTTP form based upload, +proxies, cookies, user+password authentication (Basic, Digest, NTLM, Negotiate, +Kerberos), file transfer resume, http proxy tunneling and more. - Homepage: http://curl.haxx.se +} +} + +module-whatis {libcurl is a free and easy-to-use client-side URL transfer library, +supporting DICT, FILE, FTP, FTPS, Gopher, HTTP, HTTPS, IMAP, IMAPS, LDAP, LDAPS, +POP3, POP3S, RTMP, RTSP, SCP, SFTP, SMTP, SMTPS, Telnet and TFTP. libcurl supports +SSL certificates, HTTP POST, HTTP PUT, FTP uploading, HTTP form based upload, +proxies, cookies, user+password authentication (Basic, Digest, NTLM, Negotiate, +Kerberos), file transfer resume, http proxy tunneling and more. - Homepage: http://curl.haxx.se} + +set root /net/gmi.oeaw.ac.at/software/mendel/29_04_2013/software/cURL/7.29.0-goolf-1.4.10 + +conflict cURL + +if { ![is-loaded goolf/1.4.10] } { + module load goolf/1.4.10 +} + +prepend-path CPATH $root/include +prepend-path LD_LIBRARY_PATH $root/lib +prepend-path MANPATH $root/share/man +prepend-path PATH $root/bin +prepend-path PKG_CONFIG_PATH $root/lib/pkgconfig + +setenv EBROOTCURL "$root" +setenv EBVERSIONCURL "7.29.0" +setenv EBDEVELCURL "$root/easybuild/cURL-7.29.0-goolf-1.4.10-easybuild-devel" + + +# built with EasyBuild version 1.6.0dev diff --git a/rt/tabcompl/mf/tools/expat/2.1.0-goolf-1.4.10 b/rt/tabcompl/mf/tools/expat/2.1.0-goolf-1.4.10 deleted file mode 120000 index 18244a329..000000000 --- a/rt/tabcompl/mf/tools/expat/2.1.0-goolf-1.4.10 +++ /dev/null @@ -1 +0,0 @@ -../../all/expat/2.1.0-goolf-1.4.10 \ No newline at end of file diff --git a/rt/tabcompl/mf/tools/expat/2.1.0-goolf-1.4.10 b/rt/tabcompl/mf/tools/expat/2.1.0-goolf-1.4.10 new file mode 100644 index 000000000..f7d0e8a7d --- /dev/null +++ b/rt/tabcompl/mf/tools/expat/2.1.0-goolf-1.4.10 @@ -0,0 +1,31 @@ +#%Module + +proc ModulesHelp { } { + puts stderr { Expat is an XML parser library written in C. It is a stream-oriented parser in which an application +registers handlers for things the parser might find in the XML document (like start tags) - Homepage: http://expat.sourceforge.net/ +} +} + +module-whatis {Expat is an XML parser library written in C. It is a stream-oriented parser in which an application +registers handlers for things the parser might find in the XML document (like start tags) - Homepage: http://expat.sourceforge.net/} + +set root /net/gmi.oeaw.ac.at/software/mendel/29_04_2013/software/expat/2.1.0-goolf-1.4.10 + +conflict expat + +if { ![is-loaded goolf/1.4.10] } { + module load goolf/1.4.10 +} + +prepend-path CPATH $root/include +prepend-path LD_LIBRARY_PATH $root/lib +prepend-path MANPATH $root/share/man +prepend-path PATH $root/bin +prepend-path PKG_CONFIG_PATH $root/lib/pkgconfig + +setenv EBROOTEXPAT "$root" +setenv EBVERSIONEXPAT "2.1.0" +setenv EBDEVELEXPAT "$root/easybuild/expat-2.1.0-goolf-1.4.10-easybuild-devel" + + +# built with EasyBuild version 1.3.0 diff --git a/rt/tabcompl/mf/tools/expat/2.1.0-ictce-5.3.0 b/rt/tabcompl/mf/tools/expat/2.1.0-ictce-5.3.0 deleted file mode 120000 index 2f66e03f6..000000000 --- a/rt/tabcompl/mf/tools/expat/2.1.0-ictce-5.3.0 +++ /dev/null @@ -1 +0,0 @@ -../../all/expat/2.1.0-ictce-5.3.0 \ No newline at end of file diff --git a/rt/tabcompl/mf/tools/expat/2.1.0-ictce-5.3.0 b/rt/tabcompl/mf/tools/expat/2.1.0-ictce-5.3.0 new file mode 100644 index 000000000..a9bdcf489 --- /dev/null +++ b/rt/tabcompl/mf/tools/expat/2.1.0-ictce-5.3.0 @@ -0,0 +1,31 @@ +#%Module + +proc ModulesHelp { } { + puts stderr { Expat is an XML parser library written in C. It is a stream-oriented parser in which an application + registers handlers for things the parser might find in the XML document (like start tags) - Homepage: http://expat.sourceforge.net/ +} +} + +module-whatis {Expat is an XML parser library written in C. It is a stream-oriented parser in which an application + registers handlers for things the parser might find in the XML document (like start tags) - Homepage: http://expat.sourceforge.net/} + +set root /net/gmi.oeaw.ac.at/software/mendel/29_04_2013/software/expat/2.1.0-ictce-5.3.0 + +conflict expat + +if { ![is-loaded ictce/5.3.0] } { + module load ictce/5.3.0 +} + +prepend-path CPATH $root/include +prepend-path LD_LIBRARY_PATH $root/lib +prepend-path MANPATH $root/share/man +prepend-path PATH $root/bin +prepend-path PKG_CONFIG_PATH $root/lib/pkgconfig + +setenv EBROOTEXPAT "$root" +setenv EBVERSIONEXPAT "2.1.0" +setenv EBDEVELEXPAT "$root/easybuild/expat-2.1.0-ictce-5.3.0-easybuild-devel" + + +# built with EasyBuild version 1.4.0 diff --git a/rt/tabcompl/mf/tools/git/1.7.12-goolf-1.4.10 b/rt/tabcompl/mf/tools/git/1.7.12-goolf-1.4.10 deleted file mode 120000 index cc1607ea0..000000000 --- a/rt/tabcompl/mf/tools/git/1.7.12-goolf-1.4.10 +++ /dev/null @@ -1 +0,0 @@ -../../all/git/1.7.12-goolf-1.4.10 \ No newline at end of file diff --git a/rt/tabcompl/mf/tools/git/1.7.12-goolf-1.4.10 b/rt/tabcompl/mf/tools/git/1.7.12-goolf-1.4.10 new file mode 100644 index 000000000..ad32254e6 --- /dev/null +++ b/rt/tabcompl/mf/tools/git/1.7.12-goolf-1.4.10 @@ -0,0 +1,30 @@ +#%Module + +proc ModulesHelp { } { + puts stderr { Git is a free and open source distributed version control system designed +to handle everything from small to very large projects with speed and efficiency. - Homepage: http://git-scm.com/ +} +} + +module-whatis {Git is a free and open source distributed version control system designed +to handle everything from small to very large projects with speed and efficiency. - Homepage: http://git-scm.com/} + +set root /net/gmi.oeaw.ac.at/software/mendel/29_04_2013/software/git/1.7.12-goolf-1.4.10 + +conflict git + +if { ![is-loaded goolf/1.4.10] } { + module load goolf/1.4.10 +} + +prepend-path LD_LIBRARY_PATH $root/lib +prepend-path LD_LIBRARY_PATH $root/lib64 +prepend-path MANPATH $root/share/man +prepend-path PATH $root/bin + +setenv EBROOTGIT "$root" +setenv EBVERSIONGIT "1.7.12" +setenv EBDEVELGIT "$root/easybuild/git-1.7.12-goolf-1.4.10-easybuild-devel" + + +# built with EasyBuild version 1.3.0 diff --git a/rt/tabcompl/mf/tools/git/1.8.2-goolf-1.4.10 b/rt/tabcompl/mf/tools/git/1.8.2-goolf-1.4.10 deleted file mode 120000 index 5993369b5..000000000 --- a/rt/tabcompl/mf/tools/git/1.8.2-goolf-1.4.10 +++ /dev/null @@ -1 +0,0 @@ -../../all/git/1.8.2-goolf-1.4.10 \ No newline at end of file diff --git a/rt/tabcompl/mf/tools/git/1.8.2-goolf-1.4.10 b/rt/tabcompl/mf/tools/git/1.8.2-goolf-1.4.10 new file mode 100644 index 000000000..4609f6510 --- /dev/null +++ b/rt/tabcompl/mf/tools/git/1.8.2-goolf-1.4.10 @@ -0,0 +1,38 @@ +#%Module + +proc ModulesHelp { } { + puts stderr { Git is a free and open source distributed version control system designed +to handle everything from small to very large projects with speed and efficiency. - Homepage: http://git-scm.com/ +} +} + +module-whatis {Git is a free and open source distributed version control system designed +to handle everything from small to very large projects with speed and efficiency. - Homepage: http://git-scm.com/} + +set root /net/gmi.oeaw.ac.at/software/mendel/29_04_2013/software/git/1.8.2-goolf-1.4.10 + +conflict git + +if { ![is-loaded goolf/1.4.10] } { + module load goolf/1.4.10 +} + +if { ![is-loaded cURL/7.29.0-goolf-1.4.10] } { + module load cURL/7.29.0-goolf-1.4.10 +} + +if { ![is-loaded expat/2.1.0-goolf-1.4.10] } { + module load expat/2.1.0-goolf-1.4.10 +} + +prepend-path LD_LIBRARY_PATH $root/lib +prepend-path LD_LIBRARY_PATH $root/lib64 +prepend-path MANPATH $root/share/man +prepend-path PATH $root/bin + +setenv EBROOTGIT "$root" +setenv EBVERSIONGIT "1.8.2" +setenv EBDEVELGIT "$root/easybuild/git-1.8.2-goolf-1.4.10-easybuild-devel" + + +# built with EasyBuild version 1.6.0dev diff --git a/rt/tabcompl/mf/tools/ipython/0.13.2-goolf-1.4.10-Python-2.7.3 b/rt/tabcompl/mf/tools/ipython/0.13.2-goolf-1.4.10-Python-2.7.3 deleted file mode 120000 index f7d776e28..000000000 --- a/rt/tabcompl/mf/tools/ipython/0.13.2-goolf-1.4.10-Python-2.7.3 +++ /dev/null @@ -1 +0,0 @@ -../../all/ipython/0.13.2-goolf-1.4.10-Python-2.7.3 \ No newline at end of file diff --git a/rt/tabcompl/mf/tools/ipython/0.13.2-goolf-1.4.10-Python-2.7.3 b/rt/tabcompl/mf/tools/ipython/0.13.2-goolf-1.4.10-Python-2.7.3 new file mode 100644 index 000000000..851de9b6d --- /dev/null +++ b/rt/tabcompl/mf/tools/ipython/0.13.2-goolf-1.4.10-Python-2.7.3 @@ -0,0 +1,32 @@ +#%Module + +proc ModulesHelp { } { + puts stderr { The IPython project provides an enhanced interactive environment that includes, among other features, support for data visualization and facilities for distributed and parallel computation. - Homepage: http://ipython.org/index.html +} +} + +module-whatis {The IPython project provides an enhanced interactive environment that includes, among other features, support for data visualization and facilities for distributed and parallel computation. - Homepage: http://ipython.org/index.html} + +set root /net/gmi.oeaw.ac.at/software/mendel/29_04_2013/software/ipython/0.13.2-goolf-1.4.10-Python-2.7.3 + +conflict ipython + +if { ![is-loaded goolf/1.4.10] } { + module load goolf/1.4.10 +} + +if { ![is-loaded Python/2.7.3-goolf-1.4.10] } { + module load Python/2.7.3-goolf-1.4.10 +} + +prepend-path LD_LIBRARY_PATH $root/lib +prepend-path MANPATH $root/share/man +prepend-path PATH $root/bin + +setenv EBROOTIPYTHON "$root" +setenv EBVERSIONIPYTHON "0.13.2" +setenv EBDEVELIPYTHON "$root/easybuild/ipython-0.13.2-goolf-1.4.10-Python-2.7.3-easybuild-devel" + +prepend-path PYTHONPATH $root/lib/python2.7/site-packages + +# built with EasyBuild version 1.6.0dev diff --git a/rt/tabcompl/mf/tools/ipython/0.13.2-ictce-5.3.0-Python-2.7.3 b/rt/tabcompl/mf/tools/ipython/0.13.2-ictce-5.3.0-Python-2.7.3 deleted file mode 120000 index 73ec62292..000000000 --- a/rt/tabcompl/mf/tools/ipython/0.13.2-ictce-5.3.0-Python-2.7.3 +++ /dev/null @@ -1 +0,0 @@ -../../all/ipython/0.13.2-ictce-5.3.0-Python-2.7.3 \ No newline at end of file diff --git a/rt/tabcompl/mf/tools/ipython/0.13.2-ictce-5.3.0-Python-2.7.3 b/rt/tabcompl/mf/tools/ipython/0.13.2-ictce-5.3.0-Python-2.7.3 new file mode 100644 index 000000000..48c119e8c --- /dev/null +++ b/rt/tabcompl/mf/tools/ipython/0.13.2-ictce-5.3.0-Python-2.7.3 @@ -0,0 +1,32 @@ +#%Module + +proc ModulesHelp { } { + puts stderr { The IPython project provides an enhanced interactive environment that includes, among other features, support for data visualization and facilities for distributed and parallel computation. - Homepage: http://ipython.org/index.html +} +} + +module-whatis {The IPython project provides an enhanced interactive environment that includes, among other features, support for data visualization and facilities for distributed and parallel computation. - Homepage: http://ipython.org/index.html} + +set root /net/gmi.oeaw.ac.at/software/mendel/29_04_2013/software/ipython/0.13.2-ictce-5.3.0-Python-2.7.3 + +conflict ipython + +if { ![is-loaded ictce/5.3.0] } { + module load ictce/5.3.0 +} + +if { ![is-loaded Python/2.7.3-ictce-5.3.0] } { + module load Python/2.7.3-ictce-5.3.0 +} + +prepend-path LD_LIBRARY_PATH $root/lib +prepend-path MANPATH $root/share/man +prepend-path PATH $root/bin + +setenv EBROOTIPYTHON "$root" +setenv EBVERSIONIPYTHON "0.13.2" +setenv EBDEVELIPYTHON "$root/easybuild/ipython-0.13.2-ictce-5.3.0-Python-2.7.3-easybuild-devel" + +prepend-path PYTHONPATH $root/lib/python2.7/site-packages + +# built with EasyBuild version 1.6.0dev diff --git a/rt/tabcompl/mf/tools/nano/2.2.6-goolf-1.4.10 b/rt/tabcompl/mf/tools/nano/2.2.6-goolf-1.4.10 deleted file mode 120000 index daef14c44..000000000 --- a/rt/tabcompl/mf/tools/nano/2.2.6-goolf-1.4.10 +++ /dev/null @@ -1 +0,0 @@ -../../all/nano/2.2.6-goolf-1.4.10 \ No newline at end of file diff --git a/rt/tabcompl/mf/tools/nano/2.2.6-goolf-1.4.10 b/rt/tabcompl/mf/tools/nano/2.2.6-goolf-1.4.10 new file mode 100644 index 000000000..a91de80c1 --- /dev/null +++ b/rt/tabcompl/mf/tools/nano/2.2.6-goolf-1.4.10 @@ -0,0 +1,26 @@ +#%Module + +proc ModulesHelp { } { + puts stderr { nano-2.2.6: Small and friendly text editor a free replacement for Pico - Homepage: http://www.nano-editor.org/ +} +} + +module-whatis {nano-2.2.6: Small and friendly text editor a free replacement for Pico - Homepage: http://www.nano-editor.org/} + +set root /net/gmi.oeaw.ac.at/software/mendel/29_04_2013/software/nano/2.2.6-goolf-1.4.10 + +conflict nano + +if { ![is-loaded goolf/1.4.10] } { + module load goolf/1.4.10 +} + +prepend-path MANPATH $root/share/man +prepend-path PATH $root/bin + +setenv EBROOTNANO "$root" +setenv EBVERSIONNANO "2.2.6" +setenv EBDEVELNANO "$root/easybuild/nano-2.2.6-goolf-1.4.10-easybuild-devel" + + +# built with EasyBuild version 1.3.0 diff --git a/rt/tabcompl/mf/tools/parallel/20130122-goolf-1.4.10 b/rt/tabcompl/mf/tools/parallel/20130122-goolf-1.4.10 deleted file mode 120000 index 588c0fe0d..000000000 --- a/rt/tabcompl/mf/tools/parallel/20130122-goolf-1.4.10 +++ /dev/null @@ -1 +0,0 @@ -../../all/parallel/20130122-goolf-1.4.10 \ No newline at end of file diff --git a/rt/tabcompl/mf/tools/parallel/20130122-goolf-1.4.10 b/rt/tabcompl/mf/tools/parallel/20130122-goolf-1.4.10 new file mode 100644 index 000000000..17c200b3d --- /dev/null +++ b/rt/tabcompl/mf/tools/parallel/20130122-goolf-1.4.10 @@ -0,0 +1,26 @@ +#%Module + +proc ModulesHelp { } { + puts stderr { parallel: Build and execute shell commands in parallel - Homepage: http://savannah.gnu.org/projects/parallel/ +} +} + +module-whatis {parallel: Build and execute shell commands in parallel - Homepage: http://savannah.gnu.org/projects/parallel/} + +set root /net/gmi.oeaw.ac.at/software/mendel/29_04_2013/software/parallel/20130122-goolf-1.4.10 + +conflict parallel + +if { ![is-loaded goolf/1.4.10] } { + module load goolf/1.4.10 +} + +prepend-path MANPATH $root/share/man +prepend-path PATH $root/bin + +setenv EBROOTPARALLEL "$root" +setenv EBVERSIONPARALLEL "20130122" +setenv EBDEVELPARALLEL "$root/easybuild/parallel-20130122-goolf-1.4.10-easybuild-devel" + + +# built with EasyBuild version 1.3.0 diff --git a/rt/tabcompl/mf/tools/pbzip2/1.1.6-goolf-1.4.10 b/rt/tabcompl/mf/tools/pbzip2/1.1.6-goolf-1.4.10 deleted file mode 120000 index cfa0be779..000000000 --- a/rt/tabcompl/mf/tools/pbzip2/1.1.6-goolf-1.4.10 +++ /dev/null @@ -1 +0,0 @@ -../../all/pbzip2/1.1.6-goolf-1.4.10 \ No newline at end of file diff --git a/rt/tabcompl/mf/tools/pbzip2/1.1.6-goolf-1.4.10 b/rt/tabcompl/mf/tools/pbzip2/1.1.6-goolf-1.4.10 new file mode 100644 index 000000000..45bb79938 --- /dev/null +++ b/rt/tabcompl/mf/tools/pbzip2/1.1.6-goolf-1.4.10 @@ -0,0 +1,29 @@ +#%Module + +proc ModulesHelp { } { + puts stderr { PBZIP2 is a parallel implementation of the bzip2 block-sorting file compressor that uses pthreads and achieves near-linear speedup on SMP machines. The output of this version is fully compatible with bzip2 v1.0.2 or newer (ie: anything compressed with pbzip2 can be decompressed with bzip2). - Homepage: http://compression.ca/pbzip2/ +} +} + +module-whatis {PBZIP2 is a parallel implementation of the bzip2 block-sorting file compressor that uses pthreads and achieves near-linear speedup on SMP machines. The output of this version is fully compatible with bzip2 v1.0.2 or newer (ie: anything compressed with pbzip2 can be decompressed with bzip2). - Homepage: http://compression.ca/pbzip2/} + +set root /net/gmi.oeaw.ac.at/software/mendel/29_04_2013/software/pbzip2/1.1.6-goolf-1.4.10 + +conflict pbzip2 + +if { ![is-loaded goolf/1.4.10] } { + module load goolf/1.4.10 +} + +if { ![is-loaded bzip2/1.0.6-goolf-1.4.10] } { + module load bzip2/1.0.6-goolf-1.4.10 +} + +prepend-path PATH $root/bin + +setenv EBROOTPBZIP2 "$root" +setenv EBVERSIONPBZIP2 "1.1.6" +setenv EBDEVELPBZIP2 "$root/easybuild/pbzip2-1.1.6-goolf-1.4.10-easybuild-devel" + + +# built with EasyBuild version 1.6.0 diff --git a/rt/tabcompl/mf/tools/pigz/2.3.1-goolf-1.4.10 b/rt/tabcompl/mf/tools/pigz/2.3.1-goolf-1.4.10 deleted file mode 120000 index 19cc27873..000000000 --- a/rt/tabcompl/mf/tools/pigz/2.3.1-goolf-1.4.10 +++ /dev/null @@ -1 +0,0 @@ -../../all/pigz/2.3.1-goolf-1.4.10 \ No newline at end of file diff --git a/rt/tabcompl/mf/tools/pigz/2.3.1-goolf-1.4.10 b/rt/tabcompl/mf/tools/pigz/2.3.1-goolf-1.4.10 new file mode 100644 index 000000000..4015c5b1b --- /dev/null +++ b/rt/tabcompl/mf/tools/pigz/2.3.1-goolf-1.4.10 @@ -0,0 +1,29 @@ +#%Module + +proc ModulesHelp { } { + puts stderr { pigz, which stands for parallel implementation of gzip, is a fully functional replacement for gzip that exploits multiple processors and multiple cores to the hilt when compressing data. pigz was written by Mark Adler, and uses the zlib and pthread libraries. To compile and use pigz, please read the README file in the source code distribution. - Homepage: http://zlib.net/pigz +} +} + +module-whatis {pigz, which stands for parallel implementation of gzip, is a fully functional replacement for gzip that exploits multiple processors and multiple cores to the hilt when compressing data. pigz was written by Mark Adler, and uses the zlib and pthread libraries. To compile and use pigz, please read the README file in the source code distribution. - Homepage: http://zlib.net/pigz} + +set root /net/gmi.oeaw.ac.at/software/mendel/29_04_2013/software/pigz/2.3.1-goolf-1.4.10 + +conflict pigz + +if { ![is-loaded goolf/1.4.10] } { + module load goolf/1.4.10 +} + +if { ![is-loaded zlib/1.2.8-goolf-1.4.10] } { + module load zlib/1.2.8-goolf-1.4.10 +} + +prepend-path PATH $root/bin + +setenv EBROOTPIGZ "$root" +setenv EBVERSIONPIGZ "2.3.1" +setenv EBDEVELPIGZ "$root/easybuild/pigz-2.3.1-goolf-1.4.10-easybuild-devel" + + +# built with EasyBuild version 1.6.0 diff --git a/rt/tabcompl/mf/tools/util-linux/2.22.2-goolf-1.4.10 b/rt/tabcompl/mf/tools/util-linux/2.22.2-goolf-1.4.10 deleted file mode 120000 index ad3a79918..000000000 --- a/rt/tabcompl/mf/tools/util-linux/2.22.2-goolf-1.4.10 +++ /dev/null @@ -1 +0,0 @@ -../../all/util-linux/2.22.2-goolf-1.4.10 \ No newline at end of file diff --git a/rt/tabcompl/mf/tools/util-linux/2.22.2-goolf-1.4.10 b/rt/tabcompl/mf/tools/util-linux/2.22.2-goolf-1.4.10 new file mode 100644 index 000000000..1c745bd41 --- /dev/null +++ b/rt/tabcompl/mf/tools/util-linux/2.22.2-goolf-1.4.10 @@ -0,0 +1,34 @@ +#%Module + +proc ModulesHelp { } { + puts stderr { Set of Linux utilities - Homepage: http://www.kernel.org/pub/linux/utils/util-linux +} +} + +module-whatis {Set of Linux utilities - Homepage: http://www.kernel.org/pub/linux/utils/util-linux} + +set root /net/gmi.oeaw.ac.at/software/mendel/29_04_2013/software/util-linux/2.22.2-goolf-1.4.10 + +conflict util-linux + +if { ![is-loaded goolf/1.4.10] } { + module load goolf/1.4.10 +} + +if { ![is-loaded ncurses/5.9-goolf-1.4.10] } { + module load ncurses/5.9-goolf-1.4.10 +} + +prepend-path CPATH $root/include +prepend-path LD_LIBRARY_PATH $root/lib +prepend-path MANPATH $root/share/man +prepend-path PATH $root/bin +prepend-path PATH $root/sbin +prepend-path PKG_CONFIG_PATH $root/lib/pkgconfig + +setenv EBROOTUTILMINLINUX "$root" +setenv EBVERSIONUTILMINLINUX "2.22.2" +setenv EBDEVELUTILMINLINUX "$root/easybuild/util-linux-2.22.2-goolf-1.4.10-easybuild-devel" + + +# built with EasyBuild version 1.3.0 diff --git a/rt/tabcompl/mf/tools/zsync/0.6.2-goolf-1.4.10 b/rt/tabcompl/mf/tools/zsync/0.6.2-goolf-1.4.10 deleted file mode 120000 index 15f3896b8..000000000 --- a/rt/tabcompl/mf/tools/zsync/0.6.2-goolf-1.4.10 +++ /dev/null @@ -1 +0,0 @@ -../../all/zsync/0.6.2-goolf-1.4.10 \ No newline at end of file diff --git a/rt/tabcompl/mf/tools/zsync/0.6.2-goolf-1.4.10 b/rt/tabcompl/mf/tools/zsync/0.6.2-goolf-1.4.10 new file mode 100644 index 000000000..d2dff91ba --- /dev/null +++ b/rt/tabcompl/mf/tools/zsync/0.6.2-goolf-1.4.10 @@ -0,0 +1,26 @@ +#%Module + +proc ModulesHelp { } { + puts stderr { zsync-0.6.2: Optimising file distribution program, a 1-to-many rsync - Homepage: http://zsync.moria.org.uk/ +} +} + +module-whatis {zsync-0.6.2: Optimising file distribution program, a 1-to-many rsync - Homepage: http://zsync.moria.org.uk/} + +set root /net/gmi.oeaw.ac.at/software/mendel/29_04_2013/software/zsync/0.6.2-goolf-1.4.10 + +conflict zsync + +if { ![is-loaded goolf/1.4.10] } { + module load goolf/1.4.10 +} + +prepend-path MANPATH $root/share/man +prepend-path PATH $root/bin + +setenv EBROOTZSYNC "$root" +setenv EBVERSIONZSYNC "0.6.2" +setenv EBDEVELZSYNC "$root/easybuild/zsync-0.6.2-goolf-1.4.10-easybuild-devel" + + +# built with EasyBuild version 1.3.0 diff --git a/rt/tabcompl/mf/vis/mupdf/1.3-goolf-1.4.10 b/rt/tabcompl/mf/vis/mupdf/1.3-goolf-1.4.10 deleted file mode 120000 index 31aef2feb..000000000 --- a/rt/tabcompl/mf/vis/mupdf/1.3-goolf-1.4.10 +++ /dev/null @@ -1 +0,0 @@ -../../all/mupdf/1.3-goolf-1.4.10 \ No newline at end of file diff --git a/rt/tabcompl/mf/vis/mupdf/1.3-goolf-1.4.10 b/rt/tabcompl/mf/vis/mupdf/1.3-goolf-1.4.10 new file mode 100644 index 000000000..59b3a5149 --- /dev/null +++ b/rt/tabcompl/mf/vis/mupdf/1.3-goolf-1.4.10 @@ -0,0 +1,27 @@ +#%Module + +proc ModulesHelp { } { + puts stderr { The renderer in MuPDF is tailored for high quality anti-aliased graphics. It renders text with metrics and spacing accurate to within fractions of a pixel for the highest fidelity in reproducing the look of a printed page on screen. +MuPDF is also small, fast, and yet complete. It supports PDF 1.7 with transparency, encryption, hyperlinks, annotations, searching and more. It also reads XPS and OpenXPS documents. MuPDF is written modularly, so features can be added on by integrators if they so desire.Since the 1.2 release of MuPDF, we optionally support interactive features such as form form filling, javascript and transitions. - Homepage: http://code.google.com/p/mupdf/ + } +} + +module-whatis {The renderer in MuPDF is tailored for high quality anti-aliased graphics. It renders text with metrics and spacing accurate to within fractions of a pixel for the highest fidelity in reproducing the look of a printed page on screen. +MuPDF is also small, fast, and yet complete. It supports PDF 1.7 with transparency, encryption, hyperlinks, annotations, searching and more. It also reads XPS and OpenXPS documents. MuPDF is written modularly, so features can be added on by integrators if they so desire.Since the 1.2 release of MuPDF, we optionally support interactive features such as form form filling, javascript and transitions. - Homepage: http://code.google.com/p/mupdf/} + +set root /net/gmi.oeaw.ac.at/software/mendel/29_04_2013/software/mupdf/1.3-goolf-1.4.10 + +conflict mupdf + +if { ![is-loaded goolf/1.4.10] } { + module load goolf/1.4.10 +} + +prepend-path PATH $root/bin + +setenv EBROOTMUPDF "$root" +setenv EBVERSIONMUPDF "1.3" +setenv EBDEVELMUPDF "$root/easybuild/mupdf-1.3-goolf-1.4.10-easybuild-devel" + + +# built with EasyBuild version 1.8.2 diff --git a/rt/ugent_startup/mf/Core/cluster/default b/rt/ugent_startup/mf/Core/cluster/default deleted file mode 120000 index 3347be4a0..000000000 --- a/rt/ugent_startup/mf/Core/cluster/default +++ /dev/null @@ -1 +0,0 @@ -.defaultcluster.lua \ No newline at end of file diff --git a/rt/ugent_startup/mf/Core/cluster/default b/rt/ugent_startup/mf/Core/cluster/default new file mode 100644 index 000000000..623e6b3e4 --- /dev/null +++ b/rt/ugent_startup/mf/Core/cluster/default @@ -0,0 +1,9 @@ +-- -*- lua -*- + +local defaultcluster = os.getenv("VSC_DEFAULT_CLUSTER_MODULE") or "" + +if defaultcluster ~= "" then + load("cluster/" .. defaultcluster) +else + LmodError([[No default cluster can be loaded. You need to choose one: 'ml spider cluster' gives an overview]]) +end diff --git a/rt/uitSitePkg/mf/Core/python/default b/rt/uitSitePkg/mf/Core/python/default deleted file mode 120000 index 3671cb90a..000000000 --- a/rt/uitSitePkg/mf/Core/python/default +++ /dev/null @@ -1 +0,0 @@ -2.7.3.lua \ No newline at end of file diff --git a/rt/uitSitePkg/mf/Core/python/default b/rt/uitSitePkg/mf/Core/python/default new file mode 100644 index 000000000..ba3bf6292 --- /dev/null +++ b/rt/uitSitePkg/mf/Core/python/default @@ -0,0 +1,16 @@ +-- -*- lua -*- +-- vim:ft=lua:et:ts=4 +-- +local pkg = loadPkgDefaults() +setPkgInfo(pkg) + + + +checkRestrictedGroup(pkg, nil) + +prepend_path("PATH", pathJoin(pkg.prefix, "bin")) +prepend_path("MANPATH", pathJoin(pkg.prefix, "man")) +prepend_path("LD_LIBRARY_PATH", pathJoin(pkg.prefix, "lib")) + +logUsage(pkg) + diff --git a/rt/unload/mf/Compiler/gcc/4.7/mpich2/1.5.2.lua b/rt/unload/mf/Compiler/gcc/4.7/mpich2/1.5.2.lua deleted file mode 120000 index 66fbed5fe..000000000 --- a/rt/unload/mf/Compiler/gcc/4.7/mpich2/1.5.2.lua +++ /dev/null @@ -1 +0,0 @@ -../../../.base/mpich2/1.5.2.lua \ No newline at end of file diff --git a/rt/unload/mf/Compiler/gcc/4.7/mpich2/1.5.2.lua b/rt/unload/mf/Compiler/gcc/4.7/mpich2/1.5.2.lua new file mode 100644 index 000000000..98a5daa17 --- /dev/null +++ b/rt/unload/mf/Compiler/gcc/4.7/mpich2/1.5.2.lua @@ -0,0 +1,17 @@ +-- -*- lua -*- +local pkgName = "mpich2" +local fn = myFileName():gsub("%.lua$","") +local fullVersion = barefilename(fn) +local pkgVersion = fullVersion:match("([0-9]+%.[0-9]+)%.?") +local pkgNameFullV = pathJoin(pkgName,fullVersion) +local pkgNameVer = pathJoin(pkgName,pkgVersion) +local hierA = hierarchyA(pkgNameFullV,1) +local compiler_dir = hierA[1] +local pkgRoot = "/unknown/apps" +local mdir = pathJoin(os.getenv('MODULEPATH_ROOT'), "MPI",compiler_dir,pkgNameVer) +compiler_dir = compiler_dir:gsub("/","-"):gsub("%.","_") +local mpihome = pathJoin(pkgRoot, compiler_dir, pkgNameFullV) + +family("MPI") +prepend_path('MODULEPATH', mdir) + diff --git a/rt/unload/mf/Compiler/intel/13.0/mpich2/1.5.2.lua b/rt/unload/mf/Compiler/intel/13.0/mpich2/1.5.2.lua deleted file mode 120000 index 66fbed5fe..000000000 --- a/rt/unload/mf/Compiler/intel/13.0/mpich2/1.5.2.lua +++ /dev/null @@ -1 +0,0 @@ -../../../.base/mpich2/1.5.2.lua \ No newline at end of file diff --git a/rt/unload/mf/Compiler/intel/13.0/mpich2/1.5.2.lua b/rt/unload/mf/Compiler/intel/13.0/mpich2/1.5.2.lua new file mode 100644 index 000000000..98a5daa17 --- /dev/null +++ b/rt/unload/mf/Compiler/intel/13.0/mpich2/1.5.2.lua @@ -0,0 +1,17 @@ +-- -*- lua -*- +local pkgName = "mpich2" +local fn = myFileName():gsub("%.lua$","") +local fullVersion = barefilename(fn) +local pkgVersion = fullVersion:match("([0-9]+%.[0-9]+)%.?") +local pkgNameFullV = pathJoin(pkgName,fullVersion) +local pkgNameVer = pathJoin(pkgName,pkgVersion) +local hierA = hierarchyA(pkgNameFullV,1) +local compiler_dir = hierA[1] +local pkgRoot = "/unknown/apps" +local mdir = pathJoin(os.getenv('MODULEPATH_ROOT'), "MPI",compiler_dir,pkgNameVer) +compiler_dir = compiler_dir:gsub("/","-"):gsub("%.","_") +local mpihome = pathJoin(pkgRoot, compiler_dir, pkgNameFullV) + +family("MPI") +prepend_path('MODULEPATH', mdir) + diff --git a/rt/unload/mf/Core/C/1.0.lua b/rt/unload/mf/Core/C/1.0.lua index a2c1f766c..e4bd149df 100644 --- a/rt/unload/mf/Core/C/1.0.lua +++ b/rt/unload/mf/Core/C/1.0.lua @@ -1,3 +1,7 @@ setenv{"A", "A", mode={"load"}} setenv{"A", "B", mode={"unload"}} setenv{"AA", "X", mode={"load", "unload"}} +prepend_path{"FOO", "BAR", mode={"unload", "load"}} +append_path{"X", "Y", mode={"unload"}} +load{"D", mode={"unload"}} +try_load{"J", mode={"unload"}} diff --git a/rt/unload/mf/Core/D/1.0.lua b/rt/unload/mf/Core/D/1.0.lua new file mode 100644 index 000000000..a7da7b661 --- /dev/null +++ b/rt/unload/mf/Core/D/1.0.lua @@ -0,0 +1,2 @@ +setenv("Z", "X") +setenv{"J", "K", mode={"load"}} diff --git a/rt/unload/mf/MPI/gcc/4.7/mpich2/1.5/petsc/3.2.lua b/rt/unload/mf/MPI/gcc/4.7/mpich2/1.5/petsc/3.2.lua deleted file mode 120000 index d3f3c976e..000000000 --- a/rt/unload/mf/MPI/gcc/4.7/mpich2/1.5/petsc/3.2.lua +++ /dev/null @@ -1 +0,0 @@ -../../../../../.base/petsc/3.2.lua \ No newline at end of file diff --git a/rt/unload/mf/MPI/gcc/4.7/mpich2/1.5/petsc/3.2.lua b/rt/unload/mf/MPI/gcc/4.7/mpich2/1.5/petsc/3.2.lua new file mode 100644 index 000000000..b79f3bb4c --- /dev/null +++ b/rt/unload/mf/MPI/gcc/4.7/mpich2/1.5/petsc/3.2.lua @@ -0,0 +1 @@ +setenv("PETSC_VERSION","3.2") diff --git a/rt/unload/mf/MPI/intel/13.0/mpich2/1.5/petsc/3.2.lua b/rt/unload/mf/MPI/intel/13.0/mpich2/1.5/petsc/3.2.lua deleted file mode 120000 index d3f3c976e..000000000 --- a/rt/unload/mf/MPI/intel/13.0/mpich2/1.5/petsc/3.2.lua +++ /dev/null @@ -1 +0,0 @@ -../../../../../.base/petsc/3.2.lua \ No newline at end of file diff --git a/rt/unload/mf/MPI/intel/13.0/mpich2/1.5/petsc/3.2.lua b/rt/unload/mf/MPI/intel/13.0/mpich2/1.5/petsc/3.2.lua new file mode 100644 index 000000000..b79f3bb4c --- /dev/null +++ b/rt/unload/mf/MPI/intel/13.0/mpich2/1.5/petsc/3.2.lua @@ -0,0 +1 @@ +setenv("PETSC_VERSION","3.2") diff --git a/rt/user_inherit/mf/Compiler/gcc/9/boost/1.8.lua b/rt/user_inherit/mf/Compiler/gcc/9/boost/1.8.lua deleted file mode 120000 index 3083d4cf3..000000000 --- a/rt/user_inherit/mf/Compiler/gcc/9/boost/1.8.lua +++ /dev/null @@ -1 +0,0 @@ -../../../.base/boost/1.8.lua \ No newline at end of file diff --git a/rt/user_inherit/mf/Compiler/gcc/9/boost/1.8.lua b/rt/user_inherit/mf/Compiler/gcc/9/boost/1.8.lua new file mode 100644 index 000000000..23a20c960 --- /dev/null +++ b/rt/user_inherit/mf/Compiler/gcc/9/boost/1.8.lua @@ -0,0 +1 @@ +setenv("MY_VERSION", myModuleVersion()) diff --git a/rt/user_inherit/mf/Compiler/gcc/9/mpich/3.4.lua b/rt/user_inherit/mf/Compiler/gcc/9/mpich/3.4.lua deleted file mode 120000 index 94081f3b4..000000000 --- a/rt/user_inherit/mf/Compiler/gcc/9/mpich/3.4.lua +++ /dev/null @@ -1 +0,0 @@ -../../../.base/mpich/3.4.lua \ No newline at end of file diff --git a/rt/user_inherit/mf/Compiler/gcc/9/mpich/3.4.lua b/rt/user_inherit/mf/Compiler/gcc/9/mpich/3.4.lua new file mode 100644 index 000000000..d1ecb0a97 --- /dev/null +++ b/rt/user_inherit/mf/Compiler/gcc/9/mpich/3.4.lua @@ -0,0 +1,13 @@ +local fullVersion = myModuleVersion() +local version = fullVersion:gsub("%..*","") +local pkgName = myModuleName() +local hierA = hierarchyA(pathJoin(pkgName,fullVersion),1) +local compilerV = hierA[1] +local compilerD = compilerV:gsub("/","-"):gsub("%.","_") +local base = pathJoin("/opt/apps",compilerD,pkgName,fullVersion) + +prepend_path("PATH", pathJoin(base,"bin")) +prepend_path("MODULEPATH", pathJoin(os.getenv("MY_MODULEPATH_ROOT"),"Compiler",compilerV,pkgName,version)) + +family("compiler") +whatis("Version: ".. fullVersion) diff --git a/rt/user_inherit/mf/Compiler/intel/13/boost/1.8.lua b/rt/user_inherit/mf/Compiler/intel/13/boost/1.8.lua deleted file mode 120000 index 3083d4cf3..000000000 --- a/rt/user_inherit/mf/Compiler/intel/13/boost/1.8.lua +++ /dev/null @@ -1 +0,0 @@ -../../../.base/boost/1.8.lua \ No newline at end of file diff --git a/rt/user_inherit/mf/Compiler/intel/13/boost/1.8.lua b/rt/user_inherit/mf/Compiler/intel/13/boost/1.8.lua new file mode 100644 index 000000000..23a20c960 --- /dev/null +++ b/rt/user_inherit/mf/Compiler/intel/13/boost/1.8.lua @@ -0,0 +1 @@ +setenv("MY_VERSION", myModuleVersion()) diff --git a/rt/user_inherit/mf/Compiler/intel/13/mpich/3.4.lua b/rt/user_inherit/mf/Compiler/intel/13/mpich/3.4.lua deleted file mode 120000 index 94081f3b4..000000000 --- a/rt/user_inherit/mf/Compiler/intel/13/mpich/3.4.lua +++ /dev/null @@ -1 +0,0 @@ -../../../.base/mpich/3.4.lua \ No newline at end of file diff --git a/rt/user_inherit/mf/Compiler/intel/13/mpich/3.4.lua b/rt/user_inherit/mf/Compiler/intel/13/mpich/3.4.lua new file mode 100644 index 000000000..d1ecb0a97 --- /dev/null +++ b/rt/user_inherit/mf/Compiler/intel/13/mpich/3.4.lua @@ -0,0 +1,13 @@ +local fullVersion = myModuleVersion() +local version = fullVersion:gsub("%..*","") +local pkgName = myModuleName() +local hierA = hierarchyA(pathJoin(pkgName,fullVersion),1) +local compilerV = hierA[1] +local compilerD = compilerV:gsub("/","-"):gsub("%.","_") +local base = pathJoin("/opt/apps",compilerD,pkgName,fullVersion) + +prepend_path("PATH", pathJoin(base,"bin")) +prepend_path("MODULEPATH", pathJoin(os.getenv("MY_MODULEPATH_ROOT"),"Compiler",compilerV,pkgName,version)) + +family("compiler") +whatis("Version: ".. fullVersion) diff --git a/rt/user_inherit/mf/Core/intel/.version b/rt/user_inherit/mf/Core/intel/.version deleted file mode 120000 index aa1e08445..000000000 --- a/rt/user_inherit/mf/Core/intel/.version +++ /dev/null @@ -1 +0,0 @@ -.version-13.1 \ No newline at end of file diff --git a/rt/user_inherit/mf/Core/intel/.version b/rt/user_inherit/mf/Core/intel/.version new file mode 100644 index 000000000..93959f636 --- /dev/null +++ b/rt/user_inherit/mf/Core/intel/.version @@ -0,0 +1,4 @@ +#%Module1.0################################################# +## +## +set ModulesVersion "13.1" diff --git a/rt/user_inherit/user_mf/Compiler/gcc/9/boost/1.9.lua b/rt/user_inherit/user_mf/Compiler/gcc/9/boost/1.9.lua deleted file mode 120000 index 2104c4ef0..000000000 --- a/rt/user_inherit/user_mf/Compiler/gcc/9/boost/1.9.lua +++ /dev/null @@ -1 +0,0 @@ -../../../.base/boost/1.9.lua \ No newline at end of file diff --git a/rt/user_inherit/user_mf/Compiler/gcc/9/boost/1.9.lua b/rt/user_inherit/user_mf/Compiler/gcc/9/boost/1.9.lua new file mode 100644 index 000000000..23a20c960 --- /dev/null +++ b/rt/user_inherit/user_mf/Compiler/gcc/9/boost/1.9.lua @@ -0,0 +1 @@ +setenv("MY_VERSION", myModuleVersion()) diff --git a/rt/user_inherit/user_mf/Compiler/gcc/9/mpich/3.4.lua b/rt/user_inherit/user_mf/Compiler/gcc/9/mpich/3.4.lua deleted file mode 120000 index 94081f3b4..000000000 --- a/rt/user_inherit/user_mf/Compiler/gcc/9/mpich/3.4.lua +++ /dev/null @@ -1 +0,0 @@ -../../../.base/mpich/3.4.lua \ No newline at end of file diff --git a/rt/user_inherit/user_mf/Compiler/gcc/9/mpich/3.4.lua b/rt/user_inherit/user_mf/Compiler/gcc/9/mpich/3.4.lua new file mode 100644 index 000000000..8baee5e39 --- /dev/null +++ b/rt/user_inherit/user_mf/Compiler/gcc/9/mpich/3.4.lua @@ -0,0 +1,12 @@ +inherit() +local pkgName = myModuleName() +local MP_ROOT = os.getenv("MY_MODULEPATH_ROOT") +local fullVersion = myModuleVersion() +local pkgV = fullVersion:match('(%d+%.%d+)%.?') +local hierA = hierarchyA(pathJoin(pkgName,fullVersion),1) +local compilerV = hierA[1] +local mpath = pathJoin(MP_ROOT, "MPI", compilerV, pkgName, pkgV) + +prepend_path("MODULEPATH", mpath) + + diff --git a/rt/user_inherit/user_mf/Compiler/gcc/9/mpich/default b/rt/user_inherit/user_mf/Compiler/gcc/9/mpich/default deleted file mode 120000 index e6d9c7b11..000000000 --- a/rt/user_inherit/user_mf/Compiler/gcc/9/mpich/default +++ /dev/null @@ -1 +0,0 @@ -3.4.lua \ No newline at end of file diff --git a/rt/user_inherit/user_mf/Compiler/gcc/9/mpich/default b/rt/user_inherit/user_mf/Compiler/gcc/9/mpich/default new file mode 100644 index 000000000..8baee5e39 --- /dev/null +++ b/rt/user_inherit/user_mf/Compiler/gcc/9/mpich/default @@ -0,0 +1,12 @@ +inherit() +local pkgName = myModuleName() +local MP_ROOT = os.getenv("MY_MODULEPATH_ROOT") +local fullVersion = myModuleVersion() +local pkgV = fullVersion:match('(%d+%.%d+)%.?') +local hierA = hierarchyA(pathJoin(pkgName,fullVersion),1) +local compilerV = hierA[1] +local mpath = pathJoin(MP_ROOT, "MPI", compilerV, pkgName, pkgV) + +prepend_path("MODULEPATH", mpath) + + diff --git a/rt/user_inherit/user_mf/Compiler/intel/13/boost/1.9.lua b/rt/user_inherit/user_mf/Compiler/intel/13/boost/1.9.lua deleted file mode 120000 index 2104c4ef0..000000000 --- a/rt/user_inherit/user_mf/Compiler/intel/13/boost/1.9.lua +++ /dev/null @@ -1 +0,0 @@ -../../../.base/boost/1.9.lua \ No newline at end of file diff --git a/rt/user_inherit/user_mf/Compiler/intel/13/boost/1.9.lua b/rt/user_inherit/user_mf/Compiler/intel/13/boost/1.9.lua new file mode 100644 index 000000000..23a20c960 --- /dev/null +++ b/rt/user_inherit/user_mf/Compiler/intel/13/boost/1.9.lua @@ -0,0 +1 @@ +setenv("MY_VERSION", myModuleVersion()) diff --git a/rt/user_inherit/user_mf/Compiler/intel/13/mpich/3.4.lua b/rt/user_inherit/user_mf/Compiler/intel/13/mpich/3.4.lua deleted file mode 120000 index 94081f3b4..000000000 --- a/rt/user_inherit/user_mf/Compiler/intel/13/mpich/3.4.lua +++ /dev/null @@ -1 +0,0 @@ -../../../.base/mpich/3.4.lua \ No newline at end of file diff --git a/rt/user_inherit/user_mf/Compiler/intel/13/mpich/3.4.lua b/rt/user_inherit/user_mf/Compiler/intel/13/mpich/3.4.lua new file mode 100644 index 000000000..8baee5e39 --- /dev/null +++ b/rt/user_inherit/user_mf/Compiler/intel/13/mpich/3.4.lua @@ -0,0 +1,12 @@ +inherit() +local pkgName = myModuleName() +local MP_ROOT = os.getenv("MY_MODULEPATH_ROOT") +local fullVersion = myModuleVersion() +local pkgV = fullVersion:match('(%d+%.%d+)%.?') +local hierA = hierarchyA(pathJoin(pkgName,fullVersion),1) +local compilerV = hierA[1] +local mpath = pathJoin(MP_ROOT, "MPI", compilerV, pkgName, pkgV) + +prepend_path("MODULEPATH", mpath) + + diff --git a/rt/user_inherit/user_mf/Compiler/intel/13/mpich/default b/rt/user_inherit/user_mf/Compiler/intel/13/mpich/default deleted file mode 120000 index e6d9c7b11..000000000 --- a/rt/user_inherit/user_mf/Compiler/intel/13/mpich/default +++ /dev/null @@ -1 +0,0 @@ -3.4.lua \ No newline at end of file diff --git a/rt/user_inherit/user_mf/Compiler/intel/13/mpich/default b/rt/user_inherit/user_mf/Compiler/intel/13/mpich/default new file mode 100644 index 000000000..8baee5e39 --- /dev/null +++ b/rt/user_inherit/user_mf/Compiler/intel/13/mpich/default @@ -0,0 +1,12 @@ +inherit() +local pkgName = myModuleName() +local MP_ROOT = os.getenv("MY_MODULEPATH_ROOT") +local fullVersion = myModuleVersion() +local pkgV = fullVersion:match('(%d+%.%d+)%.?') +local hierA = hierarchyA(pathJoin(pkgName,fullVersion),1) +local compilerV = hierA[1] +local mpath = pathJoin(MP_ROOT, "MPI", compilerV, pkgName, pkgV) + +prepend_path("MODULEPATH", mpath) + + diff --git a/rt/user_inherit/user_mf/Core/gcc/default b/rt/user_inherit/user_mf/Core/gcc/default deleted file mode 120000 index 65c0d795f..000000000 --- a/rt/user_inherit/user_mf/Core/gcc/default +++ /dev/null @@ -1 +0,0 @@ -9.1.lua \ No newline at end of file diff --git a/rt/user_inherit/user_mf/Core/gcc/default b/rt/user_inherit/user_mf/Core/gcc/default new file mode 100644 index 000000000..29f37a874 --- /dev/null +++ b/rt/user_inherit/user_mf/Core/gcc/default @@ -0,0 +1,6 @@ +inherit() +local compiler = myModuleName() +local MP_ROOT = os.getenv("MY_MODULEPATH_ROOT") +local version = myModuleVersion():gsub("%..*","") -- extract first number 9.1 -> 9 + +prepend_path("MODULEPATH", pathJoin(MP_ROOT, "Compiler",compiler,version)) diff --git a/rt/user_inherit/user_mf/Core/intel/default b/rt/user_inherit/user_mf/Core/intel/default deleted file mode 120000 index 13705d0bc..000000000 --- a/rt/user_inherit/user_mf/Core/intel/default +++ /dev/null @@ -1 +0,0 @@ -13.1.lua \ No newline at end of file diff --git a/rt/user_inherit/user_mf/Core/intel/default b/rt/user_inherit/user_mf/Core/intel/default new file mode 100644 index 000000000..29f37a874 --- /dev/null +++ b/rt/user_inherit/user_mf/Core/intel/default @@ -0,0 +1,6 @@ +inherit() +local compiler = myModuleName() +local MP_ROOT = os.getenv("MY_MODULEPATH_ROOT") +local version = myModuleVersion():gsub("%..*","") -- extract first number 9.1 -> 9 + +prepend_path("MODULEPATH", pathJoin(MP_ROOT, "Compiler",compiler,version)) diff --git a/rt/user_inherit/user_mf/MPI/gcc/9/mpich/3.4/acme/1.3.lua b/rt/user_inherit/user_mf/MPI/gcc/9/mpich/3.4/acme/1.3.lua deleted file mode 120000 index 2182f0711..000000000 --- a/rt/user_inherit/user_mf/MPI/gcc/9/mpich/3.4/acme/1.3.lua +++ /dev/null @@ -1 +0,0 @@ -../../../../../.base/acme/1.3.lua \ No newline at end of file diff --git a/rt/user_inherit/user_mf/MPI/gcc/9/mpich/3.4/acme/1.3.lua b/rt/user_inherit/user_mf/MPI/gcc/9/mpich/3.4/acme/1.3.lua new file mode 100644 index 000000000..09b4c2c51 --- /dev/null +++ b/rt/user_inherit/user_mf/MPI/gcc/9/mpich/3.4/acme/1.3.lua @@ -0,0 +1 @@ +setenv("MY_VERSION",myModuleVersion()) diff --git a/rt/user_inherit/user_mf/MPI/intel/13/mpich/3.4/acme/1.3.lua b/rt/user_inherit/user_mf/MPI/intel/13/mpich/3.4/acme/1.3.lua deleted file mode 120000 index 2182f0711..000000000 --- a/rt/user_inherit/user_mf/MPI/intel/13/mpich/3.4/acme/1.3.lua +++ /dev/null @@ -1 +0,0 @@ -../../../../../.base/acme/1.3.lua \ No newline at end of file diff --git a/rt/user_inherit/user_mf/MPI/intel/13/mpich/3.4/acme/1.3.lua b/rt/user_inherit/user_mf/MPI/intel/13/mpich/3.4/acme/1.3.lua new file mode 100644 index 000000000..09b4c2c51 --- /dev/null +++ b/rt/user_inherit/user_mf/MPI/intel/13/mpich/3.4/acme/1.3.lua @@ -0,0 +1 @@ +setenv("MY_VERSION",myModuleVersion()) diff --git a/spec/DirTree/mf/bio/bowtie/default b/spec/DirTree/mf/bio/bowtie/default deleted file mode 120000 index 4b6f9c39e..000000000 --- a/spec/DirTree/mf/bio/bowtie/default +++ /dev/null @@ -1 +0,0 @@ -64 \ No newline at end of file diff --git a/spec/DirTree/mf/bio/bowtie/default/.modulerc b/spec/DirTree/mf/bio/bowtie/default/.modulerc new file mode 100644 index 000000000..7891385f7 --- /dev/null +++ b/spec/DirTree/mf/bio/bowtie/default/.modulerc @@ -0,0 +1,2 @@ +#%Module +module-version bio/bowtie/64/2.0 default diff --git a/spec/DirTree/mf/bio/bowtie/default/2.0.lua b/spec/DirTree/mf/bio/bowtie/default/2.0.lua new file mode 100644 index 000000000..e69de29bb diff --git a/spec/DirTree/mf/boost b/spec/DirTree/mf/boost deleted file mode 120000 index 3b732ee21..000000000 --- a/spec/DirTree/mf/boost +++ /dev/null @@ -1 +0,0 @@ -../boost \ No newline at end of file diff --git a/spec/DirTree/mf/boost/.version.1.46.0 b/spec/DirTree/mf/boost/.version.1.46.0 new file mode 100644 index 000000000..abd52f4e1 --- /dev/null +++ b/spec/DirTree/mf/boost/.version.1.46.0 @@ -0,0 +1,2 @@ +#%Module +set ModulesVersion "1.46.0" diff --git a/spec/DirTree/mf/boost/1.46.0.lua b/spec/DirTree/mf/boost/1.46.0.lua new file mode 100644 index 000000000..ce968cd68 --- /dev/null +++ b/spec/DirTree/mf/boost/1.46.0.lua @@ -0,0 +1,7 @@ +local name = "boost" +local fn = myFileName():gsub(".lua","") +local version = barefilename(fn) +local pkgName = pathJoin(name,version) +local pkgRoot = "/unknown/apps" +local base = pathJoin(pkgRoot, pkgName) +setenv( "TACC_BOOST_DIR", base) diff --git a/spec/ModuleA/mf/boost b/spec/ModuleA/mf/boost deleted file mode 120000 index 3b732ee21..000000000 --- a/spec/ModuleA/mf/boost +++ /dev/null @@ -1 +0,0 @@ -../boost \ No newline at end of file diff --git a/spec/ModuleA/mf/boost/.version.1.46.0 b/spec/ModuleA/mf/boost/.version.1.46.0 new file mode 100644 index 000000000..d885e925c --- /dev/null +++ b/spec/ModuleA/mf/boost/.version.1.46.0 @@ -0,0 +1,2 @@ +#%Module +set ModulesVersion "1.46.0" diff --git a/spec/ModuleA/mf/boost/1.46.0.lua b/spec/ModuleA/mf/boost/1.46.0.lua new file mode 100644 index 000000000..ce968cd68 --- /dev/null +++ b/spec/ModuleA/mf/boost/1.46.0.lua @@ -0,0 +1,7 @@ +local name = "boost" +local fn = myFileName():gsub(".lua","") +local version = barefilename(fn) +local pkgName = pathJoin(name,version) +local pkgRoot = "/unknown/apps" +local base = pathJoin(pkgRoot, pkgName) +setenv( "TACC_BOOST_DIR", base) diff --git a/spec/Spider/h/mf/Compiler/gcc/5.9/mpich/17.200.3.lua b/spec/Spider/h/mf/Compiler/gcc/5.9/mpich/17.200.3.lua deleted file mode 120000 index faa0e4157..000000000 --- a/spec/Spider/h/mf/Compiler/gcc/5.9/mpich/17.200.3.lua +++ /dev/null @@ -1 +0,0 @@ -../../../.base/mpich/17.200.3.lua \ No newline at end of file diff --git a/spec/Spider/h/mf/Compiler/gcc/5.9/mpich/17.200.3.lua b/spec/Spider/h/mf/Compiler/gcc/5.9/mpich/17.200.3.lua new file mode 100644 index 000000000..5f191bbe2 --- /dev/null +++ b/spec/Spider/h/mf/Compiler/gcc/5.9/mpich/17.200.3.lua @@ -0,0 +1,10 @@ +local name = myModuleName() +local fullVersion = myModuleVersion() +local pkgName = pathJoin(name, fullVersion) +local hierA = hierarchyA(pkgName,1) +local compiler_dir = hierA[1] +local pkgVersion = fullVersion:match('(%d+%.%d+)%.?') + +local mroot = os.getenv("MODULEPATH_ROOT") + +prepend_path("MODULEPATH", pathJoin(mroot, "MPI", compiler_dir, name, pkgVersion)) diff --git a/spec/Spider/h/mf/Compiler/gcc/5.9/python/2.7.9.lua b/spec/Spider/h/mf/Compiler/gcc/5.9/python/2.7.9.lua deleted file mode 120000 index c54c0b856..000000000 --- a/spec/Spider/h/mf/Compiler/gcc/5.9/python/2.7.9.lua +++ /dev/null @@ -1 +0,0 @@ -../../../.base/python/2.7.9.lua \ No newline at end of file diff --git a/spec/Spider/h/mf/Compiler/gcc/5.9/python/2.7.9.lua b/spec/Spider/h/mf/Compiler/gcc/5.9/python/2.7.9.lua new file mode 100644 index 000000000..fce380917 --- /dev/null +++ b/spec/Spider/h/mf/Compiler/gcc/5.9/python/2.7.9.lua @@ -0,0 +1,2 @@ +setenv("PYTHON_VERSION", myModuleVersion()) +setenv("LEVEL","Compiler") diff --git a/spec/Spider/h/mf/MPI/gcc/5.9/mpich/17.200/parmetis/4.0.3.lua b/spec/Spider/h/mf/MPI/gcc/5.9/mpich/17.200/parmetis/4.0.3.lua deleted file mode 120000 index 9ac0cc0b0..000000000 --- a/spec/Spider/h/mf/MPI/gcc/5.9/mpich/17.200/parmetis/4.0.3.lua +++ /dev/null @@ -1 +0,0 @@ -../../../../../.base/parmetis/4.0.3.lua \ No newline at end of file diff --git a/spec/Spider/h/mf/MPI/gcc/5.9/mpich/17.200/parmetis/4.0.3.lua b/spec/Spider/h/mf/MPI/gcc/5.9/mpich/17.200/parmetis/4.0.3.lua new file mode 100644 index 000000000..8f7e0f02b --- /dev/null +++ b/spec/Spider/h/mf/MPI/gcc/5.9/mpich/17.200/parmetis/4.0.3.lua @@ -0,0 +1 @@ +setenv(myModuleName(),myModuleVersion()) diff --git a/spec/Spider/h/mf/MPI/gcc/5.9/mpich/17.200/python/2.7.9.lua b/spec/Spider/h/mf/MPI/gcc/5.9/mpich/17.200/python/2.7.9.lua deleted file mode 120000 index 4badecd29..000000000 --- a/spec/Spider/h/mf/MPI/gcc/5.9/mpich/17.200/python/2.7.9.lua +++ /dev/null @@ -1 +0,0 @@ -../../../../../.base/python/2.7.9.lua \ No newline at end of file diff --git a/spec/Spider/h/mf/MPI/gcc/5.9/mpich/17.200/python/2.7.9.lua b/spec/Spider/h/mf/MPI/gcc/5.9/mpich/17.200/python/2.7.9.lua new file mode 100644 index 000000000..cc30a6fda --- /dev/null +++ b/spec/Spider/h/mf/MPI/gcc/5.9/mpich/17.200/python/2.7.9.lua @@ -0,0 +1,2 @@ +setenv("PYTHON_VERSION", myModuleVersion()) +setenv("LEVEL","MPI") diff --git a/src/modfuncs.lua b/src/modfuncs.lua index 02ea4ffeb..40c7b1c18 100644 --- a/src/modfuncs.lua +++ b/src/modfuncs.lua @@ -110,20 +110,20 @@ end -------------------------------------------------------------------------- -- Validate a function with only string table. -- @param cmdName The command which is getting its arguments validated. -local function l_validateStringTable(n, cmdName, t) - n = max(n,#t) +local function l_validateStringTable(n, cmdName, table) + n = max(n,#table) for i = 1, n do - local v = t[i] + local v = table[i] if (type(v) ~= "string") then mcp:report{msg="e_Args_Not_Strings", fn = myFileName(), cmdName = cmdName} return false end end - if (t.priority ~= nil) then + if (table.priority ~= nil) then local valid = false - if (t.priority == 0) then + if (table.priority == 0) then valid = true - elseif (t.priority >= 10) then + elseif (table.priority >= 10) then valid = true end @@ -162,6 +162,8 @@ end -- Validate a function with only string module names table. -- @param cmdName The command which is getting its arguments validated. local function l_validateModules(cmdName, ...) + + dbg.print{"validateModules input BLAH: ", l_concatTbl({...},", "),")"} local argA = pack(...) --dbg.print{"l_validateModules: cmd: ",cmdName, " argA.n: ",argA.n,"\n"} local allGood = true @@ -189,10 +191,19 @@ end -- "load('name'); load('name/1.2'); load(atleast('name','3.2'))", function load_module(...) dbg.start{"load_module(",l_concatTbl({...},", "),")"} - if (not l_validateModules("load",...)) then return {} end + + local table + local mcp_old = mcp + mcp, table = list_2_Tbl(MCP, mcp, ...) + if ( not mcp ) then + mcp = mcp_old + return + end + + if (not l_validateModules("load", table)) then return {} end dbg.print{"mcp:name(): ",mcp:name(),"\n"} - local b = mcp:load_usr(MName:buildA(mcp:MNameType(), ...)) + local b = mcp:load_usr(MName:buildA(mcp:MNameType(), table)) dbg.fini("load_module") return b end @@ -208,9 +219,18 @@ end function load_any(...) dbg.start{"load_any(",l_concatTbl({...},", "),")"} - if (not l_validateModules("load_any",...)) then return {} end - local b = mcp:load_any(MName:buildA(mcp:MNameType(), ...)) + local table + local mcp_old = mcp + mcp, table = list_2_Tbl(MCP, mcp, ...) + if ( not mcp ) then + mcp = mcp_old + return + end + + if (not l_validateModules("load_any", table)) then return {} end + + local b = mcp:load_any(MName:buildA(mcp:MNameType(), table)) dbg.fini("load_any") return b end @@ -254,34 +274,55 @@ end -------------------------------------------------------------------------- -- Prepend a value to a path like variable. function prepend_path(...) - local t = l_convert2table(...) - dbg.start{"prepend_path(",l_concatTbl(t,", "),")"} - if (not l_validateStringTable(2, "prepend_path",t)) then return end - - l_cleanupPathArgs(t) - if (t[2]) then mcp:prepend_path(t) end + local table + local mcp_old = mcp + mcp, table = list_2_Tbl(MCP, mcp, ...) + dbg.start{"prepend_path(",l_concatTbl(table,", "),")"} + if ( not mcp ) then + mcp = mcp_old + return + end + + if (not l_validateStringTable(2, "prepend_path", table)) then return end + l_cleanupPathArgs(table) + if (table[2]) then mcp:prepend_path(table) end + mcp = mcp_old dbg.fini("prepend_path") end -------------------------------------------------------------------------- -- Append a value to a path like variable. function append_path(...) - local t = l_convert2table(...) - dbg.start{"append_path(",l_concatTbl(t,", "),")"} - if (not l_validateStringTable(2, "append_path",t)) then return end - l_cleanupPathArgs(t) - if (t[2]) then mcp:append_path(t) end + local table + local mcp_old = mcp + mcp, table = list_2_Tbl(MCP, mcp, ...) + dbg.start{"append_path(",l_concatTbl(table,", "),")"} + if ( not mcp ) then + mcp = mcp_old + return + end + + if (not l_validateStringTable(2, "append_path",table)) then return end + l_cleanupPathArgs(table) + if (table[2]) then mcp:append_path(table) end dbg.fini("append_path") end -------------------------------------------------------------------------- -- Remove a value from a path like variable. function remove_path(...) - local t = l_convert2table(...) - dbg.start{"remove_path(",l_concatTbl(t,", "),")"} - if (not l_validateStringTable(2, "remove_path",t)) then return end - l_cleanupPathArgs(t) - if (t[2]) then mcp:remove_path(t) end + local table + local mcp_old = mcp + mcp, table = list_2_Tbl(MCP, mcp, ...) + dbg.start{"remove_path(",l_concatTbl(table,", "),")"} + if ( not mcp ) then + mcp = mcp_old + return + end + + if (not l_validateStringTable(2, "remove_path", table)) then return end + l_cleanupPathArgs(table) + if (table[2]) then mcp:remove_path(table) end dbg.fini("remove_path") end @@ -848,9 +889,18 @@ end -- will not produce a warning if the specified modulefile(s) do not exist. function try_load(...) dbg.start{"try_load(",l_concatTbl({...},", "),")"} - if (not l_validateModules("try_load",...)) then return {} end - local b = mcp:try_load(MName:buildA(mcp:MNameType(), ...)) + local table + local mcp_old = mcp + mcp, table = list_2_Tbl(MCP, mcp, ...) + if ( not mcp ) then + mcp = mcp_old + return + end + + if (not l_validateModules("try_load", table)) then return {} end + + local b = mcp:try_load(MName:buildA(mcp:MNameType(), table)) dbg.fini("try_load") return b end @@ -889,8 +939,16 @@ end -- not loaded. The reverse of an unload is a no-op. function unload(...) dbg.start{"unload(",l_concatTbl({...},", "),")"} - if (not l_validateModules("unload",...)) then return {} end - local b = unload_internal(MName:buildA("mt",...)) + local table + local mcp_old = mcp + mcp, table = list_2_Tbl(MCP, mcp, ...) + if ( not mcp ) then + mcp = mcp_old + return + end + + if (not l_validateModules("unload", table)) then return {} end + local b = unload_internal(MName:buildA("mt", table)) dbg.fini("unload") return b end