Last active
October 5, 2016 00:40
-
-
Save mathuin/d8cf479025ace003bc6d05e237ff2582 to your computer and use it in GitHub Desktop.
Updated version: code now works, added some whitespace to make some things more obvious.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
\documentclass{minimal} | |
\usepackage{filecontents} | |
\begin{filecontents}{thesis.tex} | |
\documentclass{book} | |
\input{preamble} | |
\begin{document} | |
\chapter{Lit Review} | |
\input{litreview}% | |
\end{document} | |
\end{filecontents} | |
\begin{filecontents}{preamble.tex} | |
\usepackage[english]{babel} % just for the MWE | |
\usepackage{blindtext} % just for the MWE | |
\usepackage{standalone} | |
\usepackage{tikz} | |
\usetikzlibrary{mindmap} | |
\end{filecontents} | |
\begin{filecontents}{litreview.tex} | |
\documentclass[preview]{standalone} | |
\input{preamble} | |
\begin{document} | |
\blindtext | |
\begin{figure} | |
\input{varieties}% | |
\caption{Caption} | |
\end{figure} | |
\blindtext | |
\end{document} | |
\end{filecontents} | |
\begin{filecontents}{varieties.tex} | |
\documentclass[tikz]{standalone} | |
\input{preamble} | |
\begin{document} | |
\tikz[mindmap,concept color=red,text=black,grow cyclic] | |
\node[concept] {Traditional}; % [clockwise from=0] | |
\end{document} | |
\end{filecontents} | |
\begin{document} | |
Placeholder content. | |
\end{document} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment