Document Classes ⇒ \qformat in exam documentclass
\qformat in exam documentclass
NEW: TikZ book now 40% off at Amazon.com for a short time.
And: Currently, Packt sells ebooks for $4.99 each if you buy 5 of their over 1000 ebooks. If you choose only a single one, $9.99. How about combining 3 LaTeX books with Python, gnuplot, mathplotlib, Matlab, ChatGPT or other AI books? Epub and PDF. Bundle (3 books, add more for higher discount): https://packt.link/MDH5p
- Stefan Kottwitz
- Site Admin
- Posts: 10329
- Joined: Mon Mar 10, 2008 9:44 pm
\qformat in exam documentclass
if you like, perhaps post a short compilable example that shows the undesired behavior, so we can help to improve or patch it.
Stefan
\qformat in exam documentclass
Code: Select all
\documentclass[a4paper,12pt,addpoints]{exam}\qformat{\textbf{\underline{\textbf{Zadanie }\thequestion}}\quad\thepoints}\usepackage{polski}\begin{document}\pagestyle{head}\firstpageheader{}{}{}\begin{questions}\question some question\end{questions}\end{document}
\qformat in exam documentclass
\questionlabel
instead of using \qformat
:
Code: Select all
\documentclass[a4paper,12pt,addpoints]{exam}\renewcommand*\questionlabel{\underline{\textbf{Zadanie }\thequestion}}\usepackage{polski}\begin{document}\pagestyle{head}\firstpageheader{}{}{}\begin{questions}\question some question\end{questions}\end{document}
Rainer