Document Classes ⇒ \qformat in exam documentclass
\qformat in exam documentclass
Learn LaTeX easily with newest books:
The LaTeX Beginner's Guide: 2nd edition and perfect for students writing a thesis
The LaTeX Cookbook: 2nd edition full of practical examples for mathematics, physics, chemistry, and more
LaTeX Graphics with TikZ: the first book about TikZ for perfect drawings in your LaTeX thesis
- Stefan Kottwitz
- Site Admin
- Posts: 10358
- 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