Assignment Question
Letter to the Editor Assignment Write a letter to the editor of your local newspaper of between 500 – 750 words using the same topic you have been researching all quarter. Identify your target audience by beginning your letter with the heading “Written toward [insert name of news publication here– Knoxville News Sentinel]:”
Write in the style, tone, level of formality, etc. that is typical for that publication. Learn this by reviewing and reading articles from the local publication with particular attention to the letter to the editor sections.
Analyze the target audience for the publication and consider how their needs dictate the writing choices you will make. Think of ways you can make connections with them in your writing.
Include a call to action in your conclusion. Use APA format. While it is likely that the publication you choose will not use APA format, since learning APA is a key component of this class, we will continue to use it here. If you do submit for publication, consult publication guidelines, and use the reference style specified.
Last Completed Projects
topic title | academic level | Writer | delivered |
---|
jQuery(document).ready(function($) { var currentPage = 1; // Initialize current page
function reloadLatestPosts() { // Perform AJAX request $.ajax({ url: lpr_ajax.ajax_url, type: 'post', data: { action: 'lpr_get_latest_posts', paged: currentPage // Send current page number to server }, success: function(response) { // Clear existing content of the container $('#lpr-posts-container').empty();
// Append new posts and fade in $('#lpr-posts-container').append(response).hide().fadeIn('slow');
// Increment current page for next pagination currentPage++; }, error: function(xhr, status, error) { console.error('AJAX request error:', error); } }); }
// Initially load latest posts reloadLatestPosts();
// Example of subsequent reloads setInterval(function() { reloadLatestPosts(); }, 7000); // Reload every 7 seconds });