From cab8e541aed285c40e3653332f7cd866c401cec5 Mon Sep 17 00:00:00 2001 From: Marcel Dzubba Date: Tue, 3 Oct 2023 15:43:33 +0200 Subject: [PATCH 1/3] file created --- tikz_in_ppt.tex | 28 ++++++++++++++++++++++++++++ 1 file changed, 28 insertions(+) create mode 100644 tikz_in_ppt.tex diff --git a/tikz_in_ppt.tex b/tikz_in_ppt.tex new file mode 100644 index 0000000..41a079b --- /dev/null +++ b/tikz_in_ppt.tex @@ -0,0 +1,28 @@ +%Template für matalb2tikz Vektorgrafik für Prsäentation in Aral Wichtig: Compiler: LuaLaTex %Troubleshoot: MikTex als Admin installieren + +% This might be helpful, if u want to include tikzpictures in powerpoint. +% Step one: Install IguanaTeX https://www.jonathanleroux.org/software/iguanatex/ +% Installation guide https://www.jonathanleroux.org/software/iguanatex/download.html "Installation" +% +% Ppt: macro "IguanaTeX" appears after successful installation +% You might need to change the settings (under "main settings") +% "Insert vector grafics file" lets you insert your tikz picture +% use this as a template. Insert the generated PDF via the IguanaTeX macro + +% Troubleshoot: +% Install MikTeX as admin +% Use LuaLaTeX (as u should ;)) +% Ask Marcel Dzubba, better: ChatGPT:) + + + +\documentclass{standalone} + +\input{settings} % https://github.com/iswunistuttgart/latex_template_students + % Add settings.tex and iswthesis.sty to current path +\usepackage{fontspec} %https://tex.stackexchange.com/questions/23957/how-to-set-font-to-arial-throughout-the-entire-document +\setmainfont{Arial} + +\begin{document} +\input{example_figures/BlockDiagram.tex} +\end{document} From 6e53f2f84f5672ea7b389a13974ef55dd6a31e62 Mon Sep 17 00:00:00 2001 From: dzubbs <45297231+dzubbs@users.noreply.github.com> Date: Tue, 3 Oct 2023 15:47:24 +0200 Subject: [PATCH 2/3] Update README.md reference on iguanatex --- README.md | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index 261f03b..f7d9199 100644 --- a/README.md +++ b/README.md @@ -67,4 +67,5 @@ Below is a list of the packages we need to load anyhow. | `biblatex` | bibliography | | `graphicx` | loading logo image for the titlepage | - +### Use tikzpictures in MS Powerpoint +You may find this useful. There is a guide to installing and using IguanaTex in `tikz_in_ppt.tex` From 9df6c2d834c88ed092f8be73fbed35b0448c8e06 Mon Sep 17 00:00:00 2001 From: dzubbs <45297231+dzubbs@users.noreply.github.com> Date: Tue, 3 Oct 2023 15:49:39 +0200 Subject: [PATCH 3/3] reference to matlab2tikz --- tikz_in_ppt.tex | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tikz_in_ppt.tex b/tikz_in_ppt.tex index 41a079b..6e2107c 100644 --- a/tikz_in_ppt.tex +++ b/tikz_in_ppt.tex @@ -14,7 +14,7 @@ % Use LuaLaTeX (as u should ;)) % Ask Marcel Dzubba, better: ChatGPT:) - +% Be sure to check this out: https://github.com/matlab2tikz/matlab2tikz \documentclass{standalone}