Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

use the vector graphics version of the logo #9

Open
wants to merge 1 commit into
base: main
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 3 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -20,4 +20,6 @@
*.nls
*.out
*.tdo
*.toc
*.toc
.vscode/*
svg-inkscape/*
16 changes: 10 additions & 6 deletions Makefile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
.DEFAULT_GOAL := recompile_latex
.DEFAULT_GOAL := default

# Windows cmd clean commands
ifeq ($(OS),Windows_NT)
Expand All @@ -14,14 +14,18 @@ else
endif

all:
@-pdflatex Arbeit && makeglossaries Arbeit && \
@-pdflatex --shell-escape Arbeit && makeglossaries Arbeit && \
makeindex Arbeit.nlo -s nomencl.ist -o Arbeit.nls && \
pdflatex Arbeit && bibtex Arbeit & \
pdflatex Arbeit && pdflatex Arbeit
pdflatex --shell-escape Arbeit && bibtex Arbeit & \
pdflatex --shell-escape Arbeit && pdflatex --shell-escape Arbeit
@$(CLEAN_AUX)

recompile_latex:
@pdflatex Arbeit && pdflatex Arbeit
recompile_latex_dual: compile_latex compile_latex

compile_latex:
@pdflatex --shell-escape Arbeit

default: recompile_latex_dual clean

.PHONY: clean
clean:
Expand Down
2 changes: 2 additions & 0 deletions framework/Header.tex
Original file line number Diff line number Diff line change
@@ -1,4 +1,6 @@
\selectlanguage{ngerman}
\centering
% \includesvg[inkscapelatex=false,width=.8\textwidth]{framework/Logo_HS_Coburg.svg}
\includegraphics[width=.8\textwidth]{framework/Logo_HS_Coburg}

\begin{Large}
Expand Down
2 changes: 2 additions & 0 deletions framework/Header_Practice_Report.tex
Original file line number Diff line number Diff line change
@@ -1,4 +1,6 @@
\selectlanguage{ngerman}
\centering
% \includesvg[inkscapelatex=false,width=.8\textwidth]{framework/Logo_HS_Coburg.svg}
\includegraphics[width=.8\textwidth]{framework/Logo_HS_Coburg}

\begin{Large}
Expand Down
Binary file added framework/Logo_HS_Coburg.pdf
Binary file not shown.
Binary file modified framework/Logo_HS_Coburg.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
1 change: 1 addition & 0 deletions framework/Logo_HS_Coburg.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
1 change: 1 addition & 0 deletions framework/Packages.tex
Original file line number Diff line number Diff line change
Expand Up @@ -33,6 +33,7 @@
\usepackage{caption} % Provide greater customization around captions
\usepackage{subcaption} % Caption support for subfigures
\usepackage{pdfpages} % Include existing PDFs into the work
\usepackage{svg} % support SVG files

\usepackage[onehalfspacing]{setspace} % Set line spacing to be 1.5x the default
\usepackage{listings} % Code block support for LaTeX
Expand Down