Conventions used
There are a number of text conventions used throughout this book.
Code in text
: Indicates code words in text, database table names, folder names, filenames, file extensions, pathnames, dummy URLs, user input, and Twitter handles. Here is an example: “A simple search for 3d video rendering
returns two reference architectures.”
A block of code is set as follows:
for ($i = 1; $i -le 10; $i++){ Write-Host "Creating ubuntu-vm-$i" New-AzVm ` -ResourceGroupName $resourceGroup` -Name "ubuntu-vm-$($i)" ` -Location 'East US' ` -Image UbuntuLTS ` -size Standard_B2s ` -GenerateSshKey ` -SshKeyName vmsshkey }
Bold: Indicates a new term, an important word, or words that you see onscreen. For instance, words in menus or dialog boxes appear in bold. Here is an example: “Once you click on Start Assessment, you will be asked to sign in.”
Tips or important notes
Appear like this.