Compare commits
7 commits
dev/texroo
...
template
Author | SHA1 | Date | |
---|---|---|---|
a43beedcb2 | |||
1205d3dc49 | |||
13eb6c6ee3 | |||
453a80cf93 | |||
3dd8b749de | |||
dc65b04ddc | |||
7ccf50a73b |
10 changed files with 168 additions and 38 deletions
2
.gitignore
vendored
2
.gitignore
vendored
|
@ -15,3 +15,5 @@
|
||||||
*.vrb
|
*.vrb
|
||||||
*local
|
*local
|
||||||
*.lof
|
*.lof
|
||||||
|
*.bcf
|
||||||
|
*.run.xml
|
||||||
|
|
43
bibfile.bib
Normal file
43
bibfile.bib
Normal file
|
@ -0,0 +1,43 @@
|
||||||
|
@book{mond05,
|
||||||
|
author = {Enzo Mondello},
|
||||||
|
year= 2015,
|
||||||
|
title = {Portfolimanagement -- Theorie und Anwendungsbeispiele},
|
||||||
|
publisher = {Springer Gabler},
|
||||||
|
edition = {2},
|
||||||
|
address = {Wiesbaden}
|
||||||
|
}
|
||||||
|
@online{chatgpt,
|
||||||
|
author = {ChatGPT},
|
||||||
|
url = {https://chat.openai.com/chat},
|
||||||
|
date = {2023-02-23},
|
||||||
|
year = 2023,
|
||||||
|
title = {Prompt: 'Was ist Mathematik?'}
|
||||||
|
}
|
||||||
|
@online{masterdocument,
|
||||||
|
author = {Pascal Brachet},
|
||||||
|
title = {Texmaker (free cross-platform latex editor).},
|
||||||
|
url = {https://www.xm1math.net/texmaker/doc.html#SECTION31},
|
||||||
|
date = {2023-05-26},
|
||||||
|
year = 2023
|
||||||
|
}
|
||||||
|
@online{apaciteCtan,
|
||||||
|
author = {Erik Meijer},
|
||||||
|
title = {CTAN: Paket apacite},
|
||||||
|
url = {https://www.ctan.org/pkg/apacite},
|
||||||
|
_url = {http://mirrors.ctan.org/biblio/bibtex/contrib/apacite/apacite.pdf},
|
||||||
|
year = {2013},
|
||||||
|
lastchecked = {2023-10-10}
|
||||||
|
}
|
||||||
|
@manual{UsingBibTeX,
|
||||||
|
author = {{Unofficial LaTeX2e reference manual}},
|
||||||
|
year = {2023},
|
||||||
|
url = {https://latexref.xyz/Using-BibTeX.html},
|
||||||
|
title = {Using BibTeX},
|
||||||
|
lastchecked = {2023-10-10}
|
||||||
|
}
|
||||||
|
@online{biblatex-apa,
|
||||||
|
url = {https://www.ctan.org/pkg/biblatex-apa},
|
||||||
|
title = {biblatex-apa – BibLaTeX citation and reference style for APA},
|
||||||
|
author = {Philip Kime},
|
||||||
|
date = {2023-03-20}
|
||||||
|
}
|
|
@ -13,10 +13,10 @@ Die Repositories beinhalten das texlive und sie können es einfach über den Ter
|
||||||
%sudo apt install texlive-full
|
%sudo apt install texlive-full
|
||||||
\begin{verbatim}
|
\begin{verbatim}
|
||||||
# Debian based
|
# Debian based
|
||||||
sudo apt install texlive-latex-extra texlive-lang-german
|
sudo apt install texlive-latex-extra texlive-lang-german biber
|
||||||
|
|
||||||
# Arch based
|
# Arch based
|
||||||
sudo pacman -S texlive-most
|
sudo pacman -S texlive texlive-langgerman texlive-bin biber
|
||||||
|
|
||||||
# RedHat based (Fedora)
|
# RedHat based (Fedora)
|
||||||
sudo dnf install texlive-scheme-full
|
sudo dnf install texlive-scheme-full
|
||||||
|
@ -35,16 +35,30 @@ Grundsätzlich kann man auch auf einem einfachen Texteditor das Dokument verfass
|
||||||
|
|
||||||
\begin{itemize}
|
\begin{itemize}
|
||||||
\item
|
\item
|
||||||
Beat Jäckle benützt Texmaker (für Windows, macOS und GNU+Linux)
|
Lluís Usó und Beat Jäckle benützen TeXstudio (für Windows, GNU+Linux und macOS)
|
||||||
|
|
||||||
|
\href{https://texstudio.org/}{https://texstudio.org/}
|
||||||
|
|
||||||
|
TeXstudio bassiert auf Texmaker, wird aber von einer Community betrieben. Es werden viele Features eingebaut, während die Entwicklung von Texmaker nur von einer Person betrieben wird. Deswegen wechselte Herr Jäckle auch von Texmaker zu TeXstudio.
|
||||||
|
|
||||||
|
\item Es gibt Texmaker (für Windows, macOS und GNU+Linux)
|
||||||
|
|
||||||
\href{https://xm1math.net/texmaker/}{https://xm1math.net/texmaker/}
|
\href{https://xm1math.net/texmaker/}{https://xm1math.net/texmaker/}
|
||||||
|
|
||||||
|
Ein wichtiger Hinweis aus dem Handbuch. %\parcite[Kapitel 4.2]{masterdocument}
|
||||||
|
\begin{quote}
|
||||||
|
Texmaker allows you to work onto documents separated in several files.
|
||||||
|
To include a TeX file into your document, just use the \verb`\include{file}` command in the \textit{LaTeX} menu. The file will appear in the \textit{Structure View}. With a click on his name, Texmaker will open it.
|
||||||
|
|
||||||
|
Then, you can define your \textit{master document} with the \textit{Options} menu. All the commands of the \textit{Tools} menu will apply only to this document even when working on the \textit{children} documents (you can even close the \textit{master} document).
|
||||||
|
You can easily switch toggle between the master document and the current document via the corresponding button (just above the \textit{Bold} button).
|
||||||
|
Note : you can leave the \textit{master} mode with the \textit{Options} menu.
|
||||||
|
\end{quote}
|
||||||
|
|
||||||
\item Michael Bürgisser benützt TeXnicCenter (nur für Windows, seit 2013 nicht mehr unterhalten)
|
\item Michael Bürgisser benützt TeXnicCenter (nur für Windows, seit 2013 nicht mehr unterhalten)
|
||||||
|
|
||||||
\href{https://www.texniccenter.org/}{https://texniccenter.org/}
|
\href{https://www.texniccenter.org/}{https://texniccenter.org/}
|
||||||
|
|
||||||
\item Lluís Usó benützt TeXstudio (für Windows, GNU+Linux und macOS)
|
|
||||||
|
|
||||||
\href{https://texstudio.org/}{https://texstudio.org/}
|
|
||||||
|
|
||||||
\end{itemize}
|
\end{itemize}
|
||||||
|
|
|
@ -13,15 +13,15 @@ Eine erste Formel:
|
||||||
|
|
||||||
$e^x-27y=3x$
|
$e^x-27y=3x$
|
||||||
|
|
||||||
Und jezt mit zwei Dollarzeichen:
|
Und jetzt mit zwei Dollarzeichen:
|
||||||
|
|
||||||
$$e^x-27y=3x$$
|
$$e^x-27y=3x$$
|
||||||
|
|
||||||
Ebenfalls ein gemitte Formel:
|
Ebenfalls ein gemittelte Formel:
|
||||||
\begin{eqnarray}
|
\begin{align}
|
||||||
\label{eq:name}
|
\label{eq:name}
|
||||||
\ln(5x+1) =\sin(x-2\pi)
|
\ln(5x+1) =\sin(x-2\pi)
|
||||||
\end{eqnarray}
|
\end{align}
|
||||||
|
|
||||||
|
|
||||||
Wie in Formel \ref{eq:name} gezeigt wird
|
Wie in Formel \ref{eq:name} gezeigt wird
|
||||||
|
@ -29,5 +29,5 @@ Wie in Formel \ref{eq:name} gezeigt wird
|
||||||
|
|
||||||
\begin{figure}
|
\begin{figure}
|
||||||
\includegraphics[width=8cm]{src/vorl_Logo_KZO_2.pdf}
|
\includegraphics[width=8cm]{src/vorl_Logo_KZO_2.pdf}
|
||||||
\caption[Quelle]{Abbildungsbeschriftung}
|
\caption[Logo der KZO -- Text für das Abbildungsverzeichnis]{Abbildungsbeschriftung -- Text unter dem Bild} % Der Titel erscheint im Abbildungsverzeichnis
|
||||||
\end{figure}
|
\end{figure}
|
||||||
|
|
62
kapitel/300_cite.tex
Normal file
62
kapitel/300_cite.tex
Normal file
|
@ -0,0 +1,62 @@
|
||||||
|
\section{Wie Zitiere ich in LaTeX?}
|
||||||
|
Es gibt viele Varianten wie man mit LaTeX Zitieren kann. Ich kann \ref{bib:empfehlung} \nameref{bib:empfehlung} empfehlen.
|
||||||
|
\subsection{Die Basis -- von Hand}
|
||||||
|
Auf der Webseite \url{https://latexref.xyz/thebibliography.html} wird erklärt, wie man ohne Bib-Datei Zitieren kann. Ich rate davon ab, da es viel Handarbeit ist.
|
||||||
|
\begin{verbatim}
|
||||||
|
\begin{thebibliography}{widest-label}
|
||||||
|
\bibitem[label]{cite_key}
|
||||||
|
...
|
||||||
|
\end{thebibliography}
|
||||||
|
\end{verbatim}
|
||||||
|
\subsection{BibTeX}
|
||||||
|
BibTeX ist ein Programm, welches die Bibliografie/Literaturverzeichnis zu automatisieren.
|
||||||
|
|
||||||
|
Ein Handbuch ist \cite{UsingBibTeX}.
|
||||||
|
\begin{verbatim}
|
||||||
|
\bibliographystyle{bibstyle}
|
||||||
|
\bibliography{bibfile1, bibfile2, ...}
|
||||||
|
\end{verbatim}
|
||||||
|
|
||||||
|
Die Typen können hier nachgeschaut werden: \url{https://www.overleaf.com/learn/latex/Bibliography_management_with_bibtex}
|
||||||
|
|
||||||
|
Eine Auswahl von Styles gibt es hier:
|
||||||
|
\url{https://www.overleaf.com/learn/latex/Bibtex_bibliography_styles}
|
||||||
|
|
||||||
|
\subsection{apalike}
|
||||||
|
Mit \texttt{apalike} kann man ähnlich zu APA zitieren. Doch nach Tests von Herr Jäckle gibt es Probleme mit URL. Er empfiehlt den Einsatz vom Paket \texttt{apacite} im Kapitel \ref{sec:apacite}.
|
||||||
|
|
||||||
|
|
||||||
|
%\subsection{Biber}
|
||||||
|
%Man kann auch mit \emph{Biber} arbeiten. Doch das einrichten kann umständlicher sein.
|
||||||
|
%\begin{verbatim}
|
||||||
|
% \usepackage[
|
||||||
|
% backend=biber,
|
||||||
|
% style=alphabetic,
|
||||||
|
% sorting=ynt
|
||||||
|
% ]{biblatex}
|
||||||
|
%
|
||||||
|
% \addbibresource{references.bib} %Import the bibliography file
|
||||||
|
%
|
||||||
|
% \printbibliography
|
||||||
|
%\end{verbatim}
|
||||||
|
%
|
||||||
|
\subsection{APAcite}\label{sec:apacite}
|
||||||
|
\texttt{apacite} ist ein Paket, welches das nach APA6 zitiert. Die Richtlinien der KZO basiert auf APA.
|
||||||
|
\parencite{apaciteCtan}
|
||||||
|
|
||||||
|
\subsection{biblatex-apa}\label{sec:biblatex-apa}\label{bib:empfehlung}
|
||||||
|
biblatex-apa\footnote{\parencite{biblatex-apa}} ist ein Paket, welches das nach APA7 zitiert. Die Richtlinien der KZO basiert auf APA.
|
||||||
|
Man benötigt \texttt{Biber}. \texttt{@online} Typen werden unterstützt.
|
||||||
|
Man muss beim Kompilieren bei TeXstudio F8 drücken, damit die Bibliothek \glqq aktualisiert\grqq{} wird.
|
||||||
|
|
||||||
|
Die Bib Datei wird vor dem \verb`\begin{document}` eingefügt. Mit dem Befehl \verb`\addbibresource{bibfile.bib}`.
|
||||||
|
|
||||||
|
An der Stell, an der das Literaturverzeichnis hinkommen soll, ruft man es mit dem Befehl \verb`\printbibliography` auf.
|
||||||
|
|
||||||
|
Folgende Pakete werden benötigt:
|
||||||
|
\begin{verbatim}
|
||||||
|
\usepackage{csquotes}
|
||||||
|
\usepackage[style=apa,backend=biber]{biblatex}
|
||||||
|
\end{verbatim}
|
||||||
|
|
||||||
|
Mit \verb`\parencite ` werden Klammern um den eingefügte Referenz eingefügt. Mit \verb`cite` wird ohne Klammer die Referenz eingefügt.
|
|
@ -2,6 +2,10 @@
|
||||||
\begin{thebibliography}{99}
|
\begin{thebibliography}{99}
|
||||||
%Name, Vorname des Autors. Erscheinungsjahr. Titel. Auflage. Verlag. Erscheinungsort.
|
%Name, Vorname des Autors. Erscheinungsjahr. Titel. Auflage. Verlag. Erscheinungsort.
|
||||||
\bibitem{mond05} Mondello, Enzo. 2015. Portfolimanagement $-$ Theorie und Anwendungsbeispiele. 2. Aufl. Springer Gabler. Wiesbaden.
|
\bibitem{mond05} Mondello, Enzo. 2015. Portfolimanagement $-$ Theorie und Anwendungsbeispiele. 2. Aufl. Springer Gabler. Wiesbaden.
|
||||||
\bibitem{chatgpt} ChatGPT. Auf: https://chat.openai.com/chat (abgerufen am 23.02.2023), Prompt: "`Was ist Mathematik?"', Antwort im Anhang einsehbar.
|
\bibitem{chatgpt} ChatGPT. Auf: \url{https://chat.openai.com/chat} (abgerufen am 23.02.2023), Prompt: "`Was ist Mathematik?"', Antwort im Anhang einsehbar.
|
||||||
|
\bibitem{masterdocument}
|
||||||
\end{thebibliography}
|
Brachet, Pascal:
|
||||||
|
Texmaker (free cross-platform latex editor).
|
||||||
|
Auf:
|
||||||
|
\url{https://www.xm1math.net/texmaker/doc.html#SECTION31} (abgerufen am 26. Mai 2023).
|
||||||
|
\end{thebibliography}
|
|
@ -1,18 +1,17 @@
|
||||||
%\ProvidesPackage{kzo-thesis}
|
\RequirePackage{src/titlepage}
|
||||||
\usepackage{src/titlepage}
|
\RequirePackage{parskip}
|
||||||
%\usepackage[parfill]{parskip}
|
\RequirePackage[utf8]{inputenc}
|
||||||
\usepackage{parskip}
|
\RequirePackage{amsmath}
|
||||||
\usepackage[utf8]{inputenc}
|
\RequirePackage{amsthm}
|
||||||
\usepackage{amsmath}
|
\RequirePackage{amsfonts}
|
||||||
\usepackage{amsthm}
|
\RequirePackage{amssymb}
|
||||||
\usepackage{amsfonts}
|
\RequirePackage{amscd}
|
||||||
\usepackage{amssymb}
|
\RequirePackage{graphicx}
|
||||||
\usepackage{amscd}
|
\RequirePackage[pdfusetitle]{hyperref}
|
||||||
\usepackage{graphicx}
|
\RequirePackage[ngerman]{babel}
|
||||||
\usepackage[pdfusetitle]{hyperref}
|
\RequirePackage{ngerman}
|
||||||
\usepackage{ngerman}
|
\RequirePackage{csquotes}
|
||||||
\newenvironment{abstract}{}{}
|
\RequirePackage[style=apa,backend=biber]{biblatex}
|
||||||
\usepackage{abstract}
|
|
||||||
|
|
||||||
\pagestyle{empty}
|
\pagestyle{empty}
|
||||||
\makeatletter\@addtoreset{section}{part}\makeatother%
|
\makeatletter\@addtoreset{section}{part}\makeatother%
|
||||||
|
@ -21,4 +20,4 @@
|
||||||
\author{TODO AUTHOR}
|
\author{TODO AUTHOR}
|
||||||
\date{\today}
|
\date{\today}
|
||||||
|
|
||||||
\usepackage[left=2cm,right=2cm,top=2cm,bottom=2cm]{geometry}
|
\RequirePackage[left=2cm,right=2cm,top=2cm,bottom=2cm]{geometry}
|
||||||
|
|
|
@ -7,7 +7,7 @@
|
||||||
\newcommand*{\form}[1]{\gdef\@form{#1}}
|
\newcommand*{\form}[1]{\gdef\@form{#1}}
|
||||||
\newcommand*{\@form}{\texttt{TODO: Set \string\form\string{...\string}}}
|
\newcommand*{\@form}{\texttt{TODO: Set \string\form\string{...\string}}}
|
||||||
|
|
||||||
\renewcommand{\maketitle}{%
|
\renewcommand{\maketitle}{\hypersetup{pageanchor=false} %
|
||||||
{
|
{
|
||||||
%\setlength{\marginparwidth}{10cm}
|
%\setlength{\marginparwidth}{10cm}
|
||||||
%\setlength{\marginparsep}{10cm}
|
%\setlength{\marginparsep}{10cm}
|
||||||
|
@ -30,6 +30,6 @@
|
||||||
\@supervisor
|
\@supervisor
|
||||||
|
|
||||||
\textbf{Datum}\\
|
\textbf{Datum}\\
|
||||||
\thedate
|
\thedate \hypersetup{pageanchor=true}%
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
BIN
template.pdf
BIN
template.pdf
Binary file not shown.
20
template.tex
20
template.tex
|
@ -1,28 +1,34 @@
|
||||||
\documentclass[10pt,a4paper]{book}
|
% !TEX programm=latexmk
|
||||||
|
% !BIB program = biber
|
||||||
|
\documentclass[10pt,a4paper]{report}
|
||||||
|
\usepackage[ngerman]{babel}
|
||||||
\usepackage{src/kzo-thesis}
|
\usepackage{src/kzo-thesis}
|
||||||
|
|
||||||
\title{KZO LaTeX Vorlage}
|
|
||||||
|
\title{KZO \LaTeX~Vorlage}
|
||||||
\author{Beat Jäckle (Jb)}
|
\author{Beat Jäckle (Jb)}
|
||||||
\date{\today}
|
\date{\today}
|
||||||
\supervisor{Michael Bürgisser}
|
\supervisor{Michael Bürgisser}
|
||||||
\project{Maturitätsarbeit}
|
\project{Maturitätsarbeit}
|
||||||
|
\addbibresource{bibfile.bib}
|
||||||
|
|
||||||
\begin{document}
|
\begin{document}
|
||||||
|
\hypersetup{pageanchor=false}
|
||||||
\begin{titlepage}
|
\begin{titlepage}
|
||||||
\maketitle
|
\maketitle
|
||||||
\end{titlepage}
|
\end{titlepage}
|
||||||
\include{kapitel/030_abstract}
|
\include{kapitel/030_abstract}
|
||||||
|
|
||||||
\tableofcontents
|
\tableofcontents
|
||||||
|
\hypersetup{pageanchor=true}
|
||||||
|
|
||||||
\include{kapitel/100_installation}
|
\include{kapitel/100_installation}
|
||||||
\include{kapitel/200_mb.tex}
|
\include{kapitel/200_mb}
|
||||||
% include
|
\include{kapitel/300_cite}
|
||||||
% Much more tipps: https://github.com/oetiker/lshort
|
|
||||||
|
|
||||||
% Literautrverzeichnis
|
|
||||||
\include{kapitel/bibl.tex}
|
|
||||||
|
|
||||||
|
\nocite{chatgpt}
|
||||||
|
\printbibliography
|
||||||
% Abbildungsverzechnis, eventuell weglassen
|
% Abbildungsverzechnis, eventuell weglassen
|
||||||
\listoffigures
|
\listoffigures
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue