Skip to content

Instantly share code, notes, and snippets.

@asalt
Created January 21, 2016 21:15
Show Gist options
  • Star 2 You must be signed in to star a gist
  • Fork 1 You must be signed in to fork a gist
  • Save asalt/c6ef6af36a379c187e08 to your computer and use it in GitHub Desktop.
Save asalt/c6ef6af36a379c187e08 to your computer and use it in GitHub Desktop.
How to hide whole sections in a latex document.
%http://tex.stackexchange.com/questions/77920/comment-package-excludecomment-gives-error
\documentclass[12pt]{article}
\usepackage{todonotes} % \missingfigure
\usepackage{comment} % to exclude whole sections when I want to
\newif\ifshow % toggle true or false based on if want to hide section
%\showtrue % show the sections
\showfalse % hide the sections
\ifshow
\includecomment{wrap}
\else
\excludecomment{wrap} % anything wrapped in a {wrap} environment will be excluded
\fi
\begin{document}
Text text text text text text text text
\begin{wrap}
\begin{figure}
\centering
\missingfigure[figwidth=8cm]{my_figure}
\caption{This is a pretty figure.}
\label{fig:pretty}
\end{figure}
\end{wrap}
\end{document}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment