Speak now
Please Wait Image Converting Into Text...
Embark on a journey of knowledge! Take the quiz and earn valuable credits.
Challenge yourself and boost your learning! Start the quiz now to earn credits.
Unlock your potential! Begin the quiz, answer questions, and accumulate credits along the way.
Course Queries Syllabus Queries 2 years ago
Posted on 16 Aug 2022, this text provides information on Syllabus Queries related to Course Queries. Please note that while accuracy is prioritized, the data presented might not be entirely correct or up-to-date. This information is offered for general knowledge and informational purposes only, and should not be considered as a substitute for professional advice.
Turn Your Knowledge into Earnings.
I'm writing my lessons on a big LaTeX document so, I've each chapter on a dedicated LaTeX file (which are imported by import command)
import
However, for some lessons, I want to set a "cotation table" (or other stuff for teacher and not for students) who can't be visible for my students. I don't want to comment and uncomment this table on each .tex files so I prefer a dedicated section on the main LaTeX file I'll comment if I want to see this section or not and ideally, I don't want to change the page order of my document. (so I'm able to point the same page for me or my students).
.tex
Taking this into account, is it possible to put in braces the part of a code in the corresponding .texchapter to make it appear on a dedicated section at the end of my syllabus ? So if the dedicated section is comment in the main files, the part of code on each .tex files will be ignored and if this section is uncomment, these stuffs will be printed at the end.
A MWE will be something like that :
\documentclass[11pt,a4paper]{report} \usepackage[latin1]{inputenc} \usepackage{amsmath} \usepackage{amsfonts} \usepackage{amssymb} \usepackage{graphicx} \usepackage{lipsum} \begin{document} \chapter{1st chapter} \section{My lesson} \lipsum[1-2] %{start of the teacher part} \subsection{Stuff for teacher} \label{TeacherStuff} \lipsum[1] %{end of the teacher part} \subsection{My lesson for students continues} \lipsum[1] \chapter{2nd chapter} \lipsum[1] \chapter{dedicated chapter for teacher's stuff} Where the subsection \ref{TeacherStuff} has to appear. \end{document}
Thanks for your help !
It's easy with \AtEndDocument{...} from etoolbox package.
\AtEndDocument{...}
etoolbox
To have a teacher/students versions, I've created a boolean \newbool{studentversion}: if you set it to false \setbool{studentversion}{false}, you got the teacher version and vice versa; and two commands: \mypart{...} two write the teacher's parts and \myend{...} to hide the final chapter title in case of student version.
\newbool{studentversion}
\setbool{studentversion}{false}
\mypart{...}
\myend{...}
\documentclass[11pt,a4paper]{report} \usepackage[latin1]{inputenc} \usepackage{amsmath} \usepackage{amsfonts} \usepackage{amssymb} \usepackage{graphicx} \usepackage{lipsum} \usepackage{etoolbox} \newbool{studentversion} \setbool{studentversion}{false}%true for studtents' version \newcommand{\mypart}[1]{\ifbool{studentversion}{}{\AtEndDocument{#1}}} \newcommand{\myend}[1]{\ifbool{studentversion}{}{#1}} \begin{document} \chapter{1st chapter} \section{My lesson} \lipsum[1-2] %{start of the teacher part} \mypart{% \subsection{Stuff for teacher} \label{TeacherStuff} \lipsum[1] %{end of the teacher part} } \subsection{My lesson for students continues} \lipsum[1] \mypart{% \subsection{Some other stuff for teacher} \label{otherTeacherStuff} \lipsum[1] %{end of the teacher part} } \chapter{2nd chapter} \lipsum[1] \mypart{% \subsection{Some other stuff for teacher again} \label{otherTeacherStuffagain} \lipsum[1] %{end of the teacher part} } \myend{% \chapter{dedicated chapter for teacher's stuff} Where the subsection \ref{TeacherStuff} has to appear. } \end{document}
No matter what stage you're at in your education or career, TuteeHub will help you reach the next level that you're aiming for. Simply,Choose a subject/topic and get started in self-paced practice sessions to improve your knowledge and scores.
Course Queries 4 Answers
Course Queries 5 Answers
Course Queries 1 Answers
Course Queries 3 Answers
Ready to take your education and career to the next level? Register today and join our growing community of learners and professionals.