<?php
$args = array(
	'posts_per_page' => 999,
	'offset'=> 1,
	'category' => 1,
	'numberposts'     => 0, 
	'orderby'         => 'title',
	'order'           => 'ASC',
	'post_type'       => 'post',
	'post_status'     => 'publish'
	);

$myposts = get_posts( $args );
foreach ( $myposts as $post ) : setup_postdata( $post ); ?>
	<p>
		<a href="<?php the_permalink(); ?>"><?php the_title(); ?></a>
	</p>
<?php endforeach; 
wp_reset_postdata();
?>