If it is a archlinux bootable iso, you don't have to do anything special. Just
dd if=somefile.iso of=/dev/sdx
where sdx is the block device like /dev/sda and not a partition like /dev/sda1.
This is possible as the iso already contains all that is needed. If you set some partition table, it will simply has no effect, as it will be overriden by dd, as anything else on the target device.
Edit: You sure have to unmout any partition on that device, as they will be overriden as described before.
Edit2: The same applies to the manjaro image, according to their wiki.