You are viewing an old version of this page. View the current version.

Compare with Current View Page History

« Previous Version 2 Next »

There are several methods for importing code to your project. We will here provide you with some of our different methods and styles, hopefully enabeling you to find or create the one you enjoy the most. As always, keep in mind that there are many other good tutorials online, covering both the methods we explain here, but also other methods. To improve the most, we highly recommend you to locate these!


The example code used on this page is written in C++, but the difference is negligible for other languages.

Page content

Minted

Minted is a package that allows formatting and highlighting source code in LaTeX. We will only use the option of including code through external files, but you may also include code directly. An example is shown below.


// Method 1 - Assumed that the code included in 'isPrime.cpp' is the same as in Method 2
\inputminted[breaklines]{C++}{isPrime.cpp}

// Method 2
\begin{minted}[breaklines]{C++}
bool isPrime() {
	int number;
	std::string question = "Please enter a number: ";

	std::cout << question << std::endl;
	std::cin >> number;

	for (int i = 2; i < number; i++) {
		if (number % i == 0)	// If prime number
			return false;
	}
	return true;
}
\end{minted}



There are several methods for importing code to your project. We will here provide you with some of our different methods and styles, hopefully enabeling you to find or create the one you enjoy the most. As always, keep in mind that there are many other good tutorials online, covering both the methods we explain here, but also other methods. To improve the most, we highly recommend you to locate these!


The example code used on this page is written in C++, but the difference is negligible for other languages.

Page content

Minted

Minted is a package that allows formatting and highlighting source code in LaTeX. We will only use the option of including code through external files, but you may also include code directly. An example is shown below.

\inputminted[breaklines]{C++}{isPrime.cpp}

\begin{minted}[breaklines]{C++}
bool isPrime() {
int number;
std::string question = "Please enter a number: ";

std::cout << question << std::endl;
std::cin >> number;

for (int i = 2; i < number; i++) {
if (number % i == 0) // If prime number
return false;
}
return true;
}
\end{minted}



  • No labels