Is there any possible way to count by the number of a symbol ? For instant, if I want to print 4 versions of a letter, I assigned \arabic{#1} numbers which shows:
1 2 3 4
What I want is to show like this:
* ** *** ****
Or; different symbols instead of for each number.
for example:
* for 1
# for 2
and etc.
I'm preparing different versions of exam and I want to show version number by symbol instead of number. Thanks in advance.
UPDATE: Even though I've got good responses from experts, However, I'm still unable to do what I exactly need. I guess I couldn't elaborate my question well, that's why I've decided to provide a minimal code. This is my code:
\documentclass[twoside]{article}
\usepackage[english]{babel}
\usepackage{comment}
% set fonts
\usepackage[utf8]{inputenc}
\usepackage[T1]{fontenc}
\usepackage{mathpazo}
\usepackage{microtype}
\usepackage{etoolbox}
\newcommand{\comm}[1]{}
\ifdef{\myoutput}{}{\def\myoutput{exam}}
\ifdef{\myversion}{}{\def\myversion{2}}
% mcexams options.
\usepackage[output=\myoutput
,numberofversions=5
,version=\myversion
,seed=1
,randomizequestions=true
,randomizeanswers=true
,writeRfile=true
]{mcexam}
\usepackage[margin=0.95in]{geometry}
% Packages used for special things
\usepackage{framed,booktabs}
% Set headers and footers
\usepackage{fancyhdr,lastpage}
\pagestyle{fancy}
\fancyhf{}
\renewcommand{\headrulewidth}{0pt}
\renewcommand{\footrulewidth}{1pt}
\lhead{Name:\hrulefill{}\quad Student ID:\hrulefill{}}
\lfoot{\mctheversion}
\rfoot{Page \thepage\ of \pageref{LastPage}}
\begin{document}
% Exam preamble stuff - this will be printed on every version
\begin{center}
\bfseries\Huge exam title \\
\LARGE
\end{center}
% Show which version is being printed (Concept, Answers, etc.)
\begin{center}\bfseries\Huge\MakeUppercase{\mctheversion}\end{center}
% This only shows on the "Exam" form that students see. So put instructions, etc. here.
\mcifoutput{exam}{
\large\bigskip
\noindent Name: \hrulefill{}\hrulefill{}\hrulefill{}\quad{}Student ID\#: \hrulefill\hrulefill{} \\[.75\baselineskip]
On your scantron, use either a pencil or pen:
} % end if exam
\end{document}
I'll be so grateful if anyone can give me the exact solution to solve this specific issue. I tried to define newcounter or chnaging \mctheversion value but still I get numbers instead of symbols in version. Please look at image below:




\lettersymbolsmacro. – Dec 26 '18 at 13:43