Please install the rvest package first.

library(rvest)
## Warning: package 'rvest' was built under R version 4.1.2

Get the HTML source file from the webpage:

url = "https://pubsonline.informs.org/toc/mksc/40/1"
webpage = read_html(url, encoding = "UTF-8")

Find and print the text information:

nodes <- html_nodes(webpage,xpath = '//h5[@class="issue-item__title"]/a')
for (node in nodes)
  print(html_text(node))
## [1] "Frontiers: Algorithmic Collusion: Supra-competitive Prices via Independent Algorithms"
## [1] "Frontiers: Moment Marketing: Measuring Dynamics in Cross-Channel Ad Effectiveness"
## [1] "The Effect of Home-Sharing on House Prices and Rents: Evidence from Airbnb"
## [1] "The Impact of Coupons on the Visit-to-Purchase Funnel"
## [1] "Preference Learning and Demand Forecast"
## [1] "The End of the Express Road for Hybrid Vehicles: Can Governments’ Green Product Incentives Backfire?"
## [1] "When Franchisee Service Affects Demand: An Application to the Car Radiator Market and Resale Price Maintenance"
## [1] "Price Fairness and Strategic Obfuscation"
## [1] "A Model of Brand Architecture Choice: A House of Brands vs. A Branded House"
## [1] "When Consumers Learn, Money Burns: Signaling Quality via Advertising with Observational Learning and Word of Mouth"
## [1] "Focus On Authors"
## [1] "Editorial Board"